diff --git a/addons/account/__openerp__.py b/addons/account/__openerp__.py index 17c0a77c30f..343512dc271 100644 --- a/addons/account/__openerp__.py +++ b/addons/account/__openerp__.py @@ -135,7 +135,8 @@ for a particular financial year and for preparation of vouchers there is a modul ], 'css':[ 'static/src/css/account_move_reconciliation.css', - 'static/src/css/account_move_line_quickadd.css' + 'static/src/css/account_move_line_quickadd.css', + 'static/src/css/account_bank_and_cash.css', ], 'demo': [ 'demo/account_demo.xml', diff --git a/addons/account/account.py b/addons/account/account.py index 9b728ff36e0..01a4d851de8 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -1023,7 +1023,10 @@ class account_period(osv.osv): 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) + model, action_id = self.pool['ir.model.data'].get_object_reference(cr, uid, 'account', 'action_account_fiscalyear') + msg = _('There is no period defined for this date: %s.\nPlease, go to Configuration/Periods and configure a fiscal year.') % dt + raise openerp.exceptions.RedirectWarning(msg, action_id, _('Go to the configuration panel')) + return result def action_draft(self, cr, uid, ids, *args): diff --git a/addons/account/account_bank_statement.py b/addons/account/account_bank_statement.py index 8a15321b9c6..d437074023a 100644 --- a/addons/account/account_bank_statement.py +++ b/addons/account/account_bank_statement.py @@ -106,13 +106,13 @@ class account_bank_statement(osv.osv): 'balance_start': fields.float('Starting Balance', digits_compute=dp.get_precision('Account'), states={'confirm':[('readonly',True)]}), 'balance_end_real': fields.float('Ending Balance', digits_compute=dp.get_precision('Account'), - states={'confirm': [('readonly', True)]}), + states={'confirm': [('readonly', True)]}, help="Computed using the cash control lines"), 'balance_end': fields.function(_end_balance, store = { 'account.bank.statement': (lambda self, cr, uid, ids, c={}: ids, ['line_ids','move_line_ids','balance_start'], 10), 'account.bank.statement.line': (_get_statement, ['amount'], 10), }, - string="Computed Balance", help='Balance as calculated based on Starting Balance and transaction lines'), + string="Computed Balance", help='Balance as calculated based on Opening Balance and transaction lines'), 'company_id': fields.related('journal_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, readonly=True), 'line_ids': fields.one2many('account.bank.statement.line', 'statement_id', 'Statement lines', @@ -128,6 +128,7 @@ class account_bank_statement(osv.osv): 'currency': fields.function(_currency, string='Currency', type='many2one', relation='res.currency'), 'account_id': fields.related('journal_id', 'default_debit_account_id', type='many2one', relation='account.account', string='Account used in this journal', readonly=True, help='used in statement reconciliation domain, but shouldn\'t be used elswhere.'), + 'cash_control': fields.related('journal_id', 'cash_control' , type='boolean', relation='account.journal',string='Cash control'), } _defaults = { @@ -450,22 +451,25 @@ class account_bank_statement(osv.osv): def _compute_balance_end_real(self, cr, uid, journal_id, context=None): res = False if journal_id: - cr.execute('SELECT balance_end_real \ - FROM account_bank_statement \ - WHERE journal_id = %s AND NOT state = %s \ - ORDER BY date DESC,id DESC LIMIT 1', (journal_id, 'draft')) - res = cr.fetchone() + journal = self.pool.get('account.journal').browse(cr, uid, journal_id, context=context) + if journal.with_last_closing_balance: + cr.execute('SELECT balance_end_real \ + FROM account_bank_statement \ + WHERE journal_id = %s AND NOT state = %s \ + ORDER BY date DESC,id DESC LIMIT 1', (journal_id, 'draft')) + res = cr.fetchone() return res and res[0] or 0.0 def onchange_journal_id(self, cr, uid, statement_id, journal_id, context=None): if not journal_id: return {} balance_start = self._compute_balance_end_real(cr, uid, journal_id, context=context) - - journal_data = self.pool.get('account.journal').read(cr, uid, journal_id, ['company_id', 'currency'], context=context) - company_id = journal_data['company_id'] - currency_id = journal_data['currency'] or self.pool.get('res.company').browse(cr, uid, company_id[0], context=context).currency_id.id - return {'value': {'balance_start': balance_start, 'company_id': company_id, 'currency': currency_id}} + journal = self.pool.get('account.journal').browse(cr, uid, journal_id, context=context) + currency = journal.currency or journal.company_id.currency_id + res = {'balance_start': balance_start, 'company_id': journal.company_id.id, 'currency': currency.id} + if journal.type == 'cash': + res['cash_control'] = journal.cash_control + return {'value': res} def unlink(self, cr, uid, ids, context=None): stat = self.read(cr, uid, ids, ['state'], context=context) @@ -546,7 +550,7 @@ class account_bank_statement_line(osv.osv): _name = "account.bank.statement.line" _description = "Bank Statement Line" _columns = { - 'name': fields.char('OBI', required=True, help="Originator to Beneficiary Information"), + 'name': fields.char('Description', required=True), '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_cash_statement.py b/addons/account/account_cash_statement.py index 8e3e250d41c..c1c5265d8c2 100644 --- a/addons/account/account_cash_statement.py +++ b/addons/account/account_cash_statement.py @@ -159,6 +159,10 @@ class account_cash_statement(osv.osv): context=context ) + opening_details_ids = self._get_cash_open_box_lines(cr, uid, journal_id, context) + if opening_details_ids: + result['value']['opening_details_ids'] = opening_details_ids + if not statement_ids: return result @@ -172,13 +176,14 @@ class account_cash_statement(osv.osv): store = { 'account.bank.statement': (lambda self, cr, uid, ids, context=None: ids, ['line_ids','move_line_ids'], 10), 'account.bank.statement.line': (_get_statement_from_line, ['amount'], 10), - }), + }, + help="Total of cash transaction lines."), 'closing_date': fields.datetime("Closed On"), 'details_ids' : fields.one2many('account.cashbox.line', 'bank_statement_id', string='CashBox Lines'), 'opening_details_ids' : fields.one2many('account.cashbox.line', 'bank_statement_id', string='Opening Cashbox Lines'), 'closing_details_ids' : fields.one2many('account.cashbox.line', 'bank_statement_id', string='Closing Cashbox Lines'), 'user_id': fields.many2one('res.users', 'Responsible', required=False), - 'difference' : fields.function(_compute_difference, method=True, string="Difference", type="float"), + 'difference' : fields.function(_compute_difference, method=True, string="Difference", type="float", help="Difference between the theoretical closing balance and the real closing balance."), 'last_closing_balance' : fields.function(_compute_last_closing_balance, method=True, string='Last Closing Balance', type='float'), } _defaults = { @@ -187,13 +192,12 @@ class account_cash_statement(osv.osv): 'user_id': lambda self, cr, uid, context=None: uid, } - def create(self, cr, uid, vals, context=None): - journal = False - if vals.get('journal_id'): - journal = self.pool.get('account.journal').browse(cr, uid, vals['journal_id'], context=context) - if journal and (journal.type == 'cash') and not vals.get('details_ids'): - vals['details_ids'] = [] - + def _get_cash_open_box_lines(self, cr, uid, journal_id, context): + details_ids = [] + if not journal_id: + return details_ids + journal = self.pool.get('account.journal').browse(cr, uid, journal_id, context=context) + if journal and (journal.type == 'cash'): last_pieces = None if journal.with_last_closing_balance == True: @@ -206,16 +210,19 @@ class account_cash_statement(osv.osv): last_pieces = dict( (line.pieces, line.number_closing) for line in last_bank_statement.details_ids ) - for value in journal.cashbox_line_ids: nested_values = { 'number_closing' : 0, 'number_opening' : last_pieces.get(value.pieces, 0) if isinstance(last_pieces, dict) else 0, 'pieces' : value.pieces } + details_ids.append([0, False, nested_values]) + return details_ids - vals['details_ids'].append([0, False, nested_values]) - + def create(self, cr, uid, vals, context=None): + journal_id = vals.get('journal_id') + if journal_id and not vals.get('opening_details_ids'): + vals['opening_details_ids'] = vals.get('opening_details_ids') or self._get_cash_open_box_lines(cr, uid, journal_id, context) res_id = super(account_cash_statement, self).create(cr, uid, vals, context=context) self._update_balances(cr, uid, [res_id], context) return res_id @@ -233,7 +240,10 @@ class account_cash_statement(osv.osv): @return: True on success, False otherwise """ - + if vals.get('journal_id', False): + cashbox_line_obj = self.pool.get('account.cashbox.line') + cashbox_ids = cashbox_line_obj.search(cr, uid, [('bank_statement_id', 'in', ids)], context=context) + cashbox_line_obj.unlink(cr, uid, cashbox_ids, context) res = super(account_cash_statement, self).write(cr, uid, ids, vals, context=context) self._update_balances(cr, uid, ids, context) return res diff --git a/addons/account/account_move_line.py b/addons/account/account_move_line.py index cb242942656..b48e842caf5 100644 --- a/addons/account/account_move_line.py +++ b/addons/account/account_move_line.py @@ -849,18 +849,17 @@ class account_move_line(osv.osv): (tuple(ids), )) r = cr.fetchall() #TODO: move this check to a constraint in the account_move_reconcile object + if len(r) != 1: + raise osv.except_osv(_('Error'), _('Entries are not of the same account or already reconciled ! ')) if not unrec_lines: raise osv.except_osv(_('Error!'), _('Entry is already reconciled.')) account = account_obj.browse(cr, uid, account_id, context=context) + if not account.reconcile: + raise osv.except_osv(_('Error'), _('The account is not defined to be reconciled !')) if r[0][1] != None: raise osv.except_osv(_('Error!'), _('Some entries are already reconciled.')) - if context.get('fy_closing'): - # We don't want to generate any write-off when being called from the - # wizard used to close a fiscal year (and it doesn't give us any - # writeoff_acc_id). - pass - elif (not currency_obj.is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \ + if (not currency_obj.is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \ (account.currency_id and (not currency_obj.is_zero(cr, uid, account.currency_id, currency))): if not writeoff_acc_id: raise osv.except_osv(_('Warning!'), _('You have to provide an account for the write off/exchange difference entry.')) @@ -1199,7 +1198,7 @@ class account_move_line(osv.osv): break # Automatically convert in the account's secondary currency if there is one and # the provided values were not already multi-currency - if account.currency_id and (vals.get('amount_currency', False) is False) and account.currency_id.id != account.company_id.currency_id.id: + if account.currency_id and 'amount_currency' not in vals and account.currency_id.id != account.company_id.currency_id.id: vals['currency_id'] = account.currency_id.id ctx = {} if 'date' in vals: diff --git a/addons/account/account_view.xml b/addons/account/account_view.xml index ed2d88b7386..60821c2b454 100644 --- a/addons/account/account_view.xml +++ b/addons/account/account_view.xml @@ -2264,7 +2264,6 @@ - @@ -2272,6 +2271,7 @@ + @@ -2305,41 +2305,64 @@ - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + + + +
+ + + + + + +
diff --git a/addons/account/demo/account_demo.xml b/addons/account/demo/account_demo.xml index 8a450c0b6aa..5ee0385f858 100644 --- a/addons/account/demo/account_demo.xml +++ b/addons/account/demo/account_demo.xml @@ -18,10 +18,18 @@ Fiscal Periods --> + + + + + + + + + - @@ -30,7 +38,6 @@ - @@ -40,7 +47,6 @@ - @@ -49,7 +55,6 @@ - @@ -58,7 +63,6 @@ - @@ -68,7 +72,6 @@ - @@ -76,7 +79,6 @@ - @@ -85,7 +87,6 @@ - @@ -94,7 +95,6 @@ - @@ -103,7 +103,6 @@ - @@ -112,7 +111,6 @@ - @@ -121,7 +119,6 @@ - diff --git a/addons/account/i18n/am.po b/addons/account/i18n/am.po index 4544b53b1df..3085e9962ea 100644 --- a/addons/account/i18n/am.po +++ b/addons/account/i18n/am.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-28 05:31+0000\n" -"X-Generator: Launchpad (build 16847)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ar.po b/addons/account/i18n/ar.po index 51754929335..ba0d99b0b88 100644 --- a/addons/account/i18n/ar.po +++ b/addons/account/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po index c8d0575e689..237f6221471 100644 --- a/addons/account/i18n/bg.po +++ b/addons/account/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/br.po b/addons/account/i18n/br.po index dc3268c441c..853a538097b 100644 --- a/addons/account/i18n/br.po +++ b/addons/account/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po index bef9bdef9a1..c5b971b45c8 100644 --- a/addons/account/i18n/bs.po +++ b/addons/account/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -26,6 +26,7 @@ msgstr "Sistem plaćanja" msgid "" "An account fiscal position could be defined only once time on same accounts." msgstr "" +"Fiskalna pozicija konta može biti definisana samo jednom za neka konta." #. module: account #: help:account.tax.code,sequence:0 @@ -39,7 +40,7 @@ msgstr "" #. module: account #: view:account.move.reconcile:0 msgid "Journal Entry Reconcile" -msgstr "" +msgstr "Zatvaranje stavki dnevnika" #. module: account #: view:account.account:0 @@ -341,7 +342,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "" +msgstr "Poništavajne zatvaranja konta" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -456,18 +457,25 @@ msgid "" "this box, you will be able to do invoicing & payments,\n" " but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Ovo vam omogućuje upravljanje imovinom u vlasništvu kompanije ili osobe.\n" +" Prati amortizaciju na tim sredstvima, i stvara " +"kretanja konta za knjiženje amortizacije.\n" +" Ovo instalira modul account_asset. Ako ne " +"označite ovo polje, moći ćete raditi fakture\n" +" i plaćanja ali ne i računovodstvo (dnevnici " +"knjiženja, kontni plan...)" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Informacije o pokretaču i korisniku" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Period :" #. module: account #: field:account.account.template,chart_template_id:0 @@ -480,7 +488,7 @@ msgstr "Predložak plana" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "" +msgstr "Uredi: napravi povrat, zatvori ili kreiraj novu fakturu u pripremi" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -494,6 +502,15 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"Ukoliko odavberete 'Zaokruži po liniji' : za svaki porez, iznos poreza će " +"prvo biti izračunat i zaokružen po svakoj stavci, i nakon toga svi iznosi će " +"biti zbrojeni do ukupnog iznosa poreza. \r\n" +"Ukoliko odaberete 'Zaokruži globalno' : za svaki porez, iznos poreza će biti " +"izračunat po svakoj stavci, ti iznosi će biti zbrojeni, i eventualno ukupni " +"iznos poreza će biti zaokružen. \r\n" +"Ako vršite prodaju sa uključenim porezom trebali bi odabrati 'Zaokruži po " +"liniji' jer svakako želite da suma uključenih poreza po stavkama odgovara " +"ukupnom iznosu poreza uračunatom u cijenu." #. module: account #: model:ir.model,name:account.model_wizard_multi_charts_accounts @@ -508,12 +525,12 @@ msgstr "Iznos izražen u alternativnoj drugoj valuti." #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "" +msgstr "Raspoložive monete" #. module: account #: field:accounting.report,enable_filter:0 msgid "Enable Comparison" -msgstr "" +msgstr "Omogući uspoređivanje" #. module: account #: view:account.analytic.line:0 @@ -551,22 +568,22 @@ msgstr "Dnevnik" #. module: account #: model:ir.model,name:account.model_account_invoice_confirm msgid "Confirm the selected invoices" -msgstr "" +msgstr "Potvrdi odabrane fakture" #. module: account #: field:account.addtmpl.wizard,cparent_id:0 msgid "Parent target" -msgstr "" +msgstr "Nadređeni cilj" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "" +msgstr "Daje sekvencu ove linije kada se prikazuje faktura" #. module: account #: field:account.bank.statement,account_id:0 msgid "Account used in this journal" -msgstr "" +msgstr "Konto koji se koristi u ovom dnevniku" #. module: account #: help:account.aged.trial.balance,chart_account_id:0 @@ -584,12 +601,12 @@ msgstr "" #: help:account.vat.declaration,chart_account_id:0 #: help:accounting.report,chart_account_id:0 msgid "Select Charts of Accounts" -msgstr "" +msgstr "Odabir kontnog plana" #. module: account #: model:ir.model,name:account.model_account_invoice_refund msgid "Invoice Refund" -msgstr "" +msgstr "Povrat fakture" #. module: account #: report:account.overdue:0 @@ -605,7 +622,7 @@ msgstr "Neusklađene transakcije" #: report:account.general.ledger:0 #: report:account.general.ledger_landscape:0 msgid "Counterpart" -msgstr "" +msgstr "Protustavka" #. module: account #: view:account.fiscal.position:0 @@ -623,7 +640,7 @@ msgstr "Zatvori fiskalnu godinu" #. module: account #: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 msgid "The accountant confirms the statement." -msgstr "" +msgstr "Knjigovođa potvrđuje izvod." #. module: account #. openerp-web @@ -635,13 +652,13 @@ msgstr "" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Decimalna preciznost na stavkama dnevnika" #. module: account #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "3 Monthly" -msgstr "" +msgstr "Tromjesečno" #. module: account #: field:ir.sequence,fiscal_ids:0 @@ -652,7 +669,7 @@ msgstr "Redoslijedi" #: field:account.financial.report,account_report_id:0 #: selection:account.financial.report,type:0 msgid "Report Value" -msgstr "" +msgstr "Vrijednost izvještaja" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:39 @@ -660,7 +677,7 @@ msgstr "" msgid "" "Specified journal does not have any account move entries in draft state for " "this period." -msgstr "" +msgstr "Odabrani dnevnik nema kretanja konta u pripremi za ovaj period." #. module: account #: view:account.fiscal.position:0 @@ -671,35 +688,37 @@ msgstr "Mapiranje poreza" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "" +msgstr "Centralizovani dnevnik" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 msgid "Main Sequence must be different from current !" -msgstr "" +msgstr "Glavna sekvenca mora biti različita od trenutne !" #. module: account #: code:addons/account/wizard/account_change_currency.py:64 #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "Trenutna valuta nije ispravno postavljena" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Konto dobiti" #. module: account #: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" +"Nije nađen period za zadani datum ili je nađeno nekoliko perioda za zadani " +"datum" #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "" +msgstr "Izvještaj o prodaji po tipu konta" #. module: account #: code:addons/account/account.py:3201 @@ -711,7 +730,7 @@ msgstr "" #: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." -msgstr "" +msgstr "Nemože se kreirati kretanje sa valutom različitom od ..." #. module: account #: model:email.template,report_name:account.email_template_edi_invoice @@ -729,7 +748,7 @@ msgstr "Zatvori razdoblje" #. module: account #: model:ir.model,name:account.model_account_common_partner_report msgid "Account Common Partner Report" -msgstr "" +msgstr "Partnerski izvještaj zajedničkih konta" #. module: account #: field:account.fiscalyear.close,period_id:0 @@ -739,13 +758,14 @@ msgstr "Razdoblje stavki otvaranja" #. module: account #: model:ir.model,name:account.model_account_journal_period msgid "Journal Period" -msgstr "" +msgstr "Period dnevnika" #. module: account #: constraint:account.move:0 msgid "" "You cannot create more than one move per period on a centralized journal." msgstr "" +"Ne možete raditi više od jedne stavke po periodu na centraliziranom dnevniku." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -754,6 +774,9 @@ msgid "" "lines for refunds. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Postavite analitički konto koji će biti korišten kao zadani na stavkama " +"poreza faktura za povrat. Ostavite prazno ako ne želite zadano koristiti " +"analitički konto za poreze." #. module: account #: view:account.account:0 @@ -771,12 +794,12 @@ msgstr "Potražni računi" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Podesite bankovne račune vaše kompanije" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Kreiraj povrat" #. module: account #: constraint:account.move.line:0 @@ -784,11 +807,13 @@ msgid "" "The date of your Journal Entry is not in the defined period! You should " "change the date or remove this constraint from the journal." msgstr "" +"Datum vašeg unosa u dnevnik nije u definisanom periodu! Trebali bi " +"promijeniti datum ili ukloniti to ograničenje iz dnevnika." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger msgid "General Ledger Report" -msgstr "" +msgstr "Izvještaj glavne knjige" #. module: account #: view:account.invoice:0 @@ -804,12 +829,12 @@ msgstr "Jeste sigurni da želite stvortiti stavke?" #: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "" +msgstr "Račun djelomično plaćen : %s%s od %s%s (%s%s preostaje)" #. module: account #: view:account.invoice:0 msgid "Print Invoice" -msgstr "" +msgstr "Ispiši fakturu" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:111 @@ -818,11 +843,13 @@ msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." msgstr "" +"Nije moguće %s fakturu koja je već zatvorena, račun bi prvo trebao biti " +"ponovo otvoren. Jedino možete napraviti povrat po ovoj fakturi." #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children with hierarchy" -msgstr "" +msgstr "Hijerahijski prikaz podređenih" #. module: account #: selection:account.payment.term.line,value:0 @@ -840,17 +867,17 @@ msgstr "Planovi" #: model:ir.model,name:account.model_project_account_analytic_line #, python-format msgid "Analytic Entries by line" -msgstr "" +msgstr "Analitički zapisi po stavkama" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "" +msgstr "Način povrata" #. module: account #: model:ir.ui.menu,name:account.menu_account_report msgid "Financial Report" -msgstr "" +msgstr "Financijski izvještaj" #. module: account #: view:account.analytic.account:0 @@ -876,6 +903,8 @@ msgid "" "Taxes are missing!\n" "Click on compute button." msgstr "" +"Nedostaju porezi!\n" +"Kliknite na dugme Izračunaj" #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -890,13 +919,13 @@ msgstr "Veza partnera ove fakture." #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "" +msgstr "Fakture dobavljača i povrati" #. module: account #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "Unos je već zatvoren." #. module: account #: view:account.move.line.unreconcile.select:0 @@ -908,12 +937,12 @@ msgstr "Poništavanje usklađivanja" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "" +msgstr "Analitički dnevnik konta" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Pošalji e-mailom" #. module: account #: help:account.central.journal,amount_currency:0 @@ -924,16 +953,18 @@ msgid "" "Print Report with the currency column if the currency differs from the " "company currency." msgstr "" +"Ispiši izvještaj sa kolonom valute, ako je valuta različita od valute " +"kompanije." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "J.C./Move name" -msgstr "" +msgstr "Naziv kretanja dnevničkog zapisa" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Šifra i naziv konta" #. module: account #: selection:account.entries.report,month:0 @@ -942,7 +973,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "September" -msgstr "" +msgstr "Septembar" #. module: account #: selection:account.subscription,period_type:0 @@ -953,7 +984,7 @@ msgstr "Dani" #: help:account.account.template,nocreate:0 msgid "" "If checked, the new chart of accounts will not contain this by default." -msgstr "" +msgstr "Ako je označeno, novi kontni plan zadano neće sadržavati." #. module: account #: model:ir.actions.act_window,help:account.action_account_manual_reconcile @@ -963,6 +994,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nisu nađene stavke dnevnika.\n" +"

\n" +" " #. module: account #: code:addons/account/account.py:1677 @@ -972,6 +1007,8 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" +"Nije moguće ponovo otvoriti stavke ako su one generisane u procesu " +"otvaranja/zatvaranja poslovne godine." #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -987,7 +1024,7 @@ msgstr "Izračun" #. module: account #: field:account.journal.cashbox.line,pieces:0 msgid "Values" -msgstr "" +msgstr "Vrijednosti" #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_chart @@ -1009,18 +1046,18 @@ msgstr "Krajnji rok" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "Dnevnici nabavke" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Faktura plaćena" #. module: account #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Approve" -msgstr "" +msgstr "Odobri" #. module: account #: view:account.invoice:0 @@ -1032,7 +1069,7 @@ msgstr "Ukupan iznos" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "Referenca ove fakture dobijena je od dobavljača" #. module: account #: selection:account.account,type:0 @@ -1052,27 +1089,27 @@ msgstr "Obveza" #: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." -msgstr "" +msgstr "Molimo definišite sekvencu dnevnika povezanog sa ovom fakturom." #. module: account #: view:account.entries.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Napredni filteri..." #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "" +msgstr "Centralizirani dnevnik" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "" +msgstr "Povrat prodaje" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 msgid "Bank statement" -msgstr "" +msgstr "Izvod banke" #. module: account #: field:account.analytic.line,move_id:0 @@ -1085,12 +1122,12 @@ msgid "" "If the Tax account is a tax code account, this field will contain the taxed " "amount.If the tax account is base tax code, this field will contain the " "basic amount(without tax)." -msgstr "" +msgstr "Porez ili osnovica poreza ovisno o poreznoj grupi." #. module: account #: view:account.analytic.line:0 msgid "Purchases" -msgstr "" +msgstr "Nabavke" #. module: account #: field:account.model,lines_id:0 @@ -1117,7 +1154,7 @@ msgstr "Šifra" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Mogućnosti" #. module: account #: code:addons/account/account.py:2346 @@ -1127,7 +1164,7 @@ msgstr "" #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "" +msgstr "Nema analitičkog dnevnika !" #. module: account #: report:account.partner.balance:0 @@ -1153,16 +1190,32 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za " +"dodavanje konta\n" +"

\n" +" Kada se koriste " +"transakcije sa više valuta, možete dobiti ili izgubiti\n" +" određeni iznos " +"zbog kursnih razlika. Ovaj meni pruža Vam\n" +" predviđanje " +"dobiti i gubitka ostvarenog ukoliko bi se te\n" +" transakcije " +"završile danas. Samo za konta koji imaju postavljenu \n" +" sekundarnu " +"valutu.\n" +"

\n" +" " #. module: account #: field:account.bank.accounts.wizard,acc_name:0 msgid "Account Name." -msgstr "" +msgstr "Naziv konta" #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "Otvaranje sa saldom zadnjeg zatvaranja" #. module: account #: help:account.tax.code,notprintable:0 @@ -1170,6 +1223,8 @@ msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" msgstr "" +"Označite ovdje ukoliko ne želite da se porezi povezani sa ovom šifrom poreza " +"pojavljuju na fakturama." #. module: account #: field:report.account.receivable,name:0 @@ -1184,7 +1239,7 @@ msgstr "Landscape mod" #. module: account #: help:account.fiscalyear.close,fy_id:0 msgid "Select a Fiscal year to close" -msgstr "" +msgstr "Odaberite poslovnu godinu koju treba zatvoriti" #. module: account #: help:account.account.template,user_type:0 @@ -1192,22 +1247,24 @@ msgid "" "These types are defined according to your country. The type contains more " "information about the account and its specificities." msgstr "" +"Ovi su tipovi definirani prema vašoj zemlji. Tip sadržava više informacija o " +"kontu i njegovim specifičnostima." #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Povrat " #. module: account #: code:addons/account/account_analytic_line.py:90 #, python-format msgid "There is no expense account defined for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Nije definiran konto troška za ovaj proizvod : \"%s\" (id:%d)" #. module: account #: view:account.tax:0 msgid "Applicability Options" -msgstr "" +msgstr "Opcije primjenjivosti" #. module: account #: report:account.partner.balance:0 @@ -1219,12 +1276,12 @@ msgstr "U neslaganju" #: model:ir.actions.act_window,name:account.action_view_bank_statement_tree #: model:ir.ui.menu,name:account.journal_cash_move_lines msgid "Cash Registers" -msgstr "" +msgstr "Kase" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Dnevnik povrata u prodaji" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1243,6 +1300,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog unosa u blagajnu.\n" +"

\n" +" Pomoću blagajne moguće je na jednostavan način upravljati " +"dnevnicima\n" +" blagajne. Na jednostavan način možete pratiti uplate " +"gotovine\n" +" na dnevnoj bazi. Moguće je evidentirati novac u blagajni, a " +"zatim\n" +" pratiti sve ulaze i izlaze novca iz nje.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_bank @@ -1250,7 +1319,7 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Bank" -msgstr "" +msgstr "Banka" #. module: account #: field:account.period,date_start:0 @@ -1260,12 +1329,12 @@ msgstr "Početak Perioda" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Povrati" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "" +msgstr "Potvrdi izvod" #. module: account #: view:account.tax:0 @@ -1278,6 +1347,8 @@ msgid "" "Total amount (in Secondary currency) for transactions held in secondary " "currency for this account." msgstr "" +"Ukupni iznos (u drugoj valuti) za transakcije koje se vode u sekundarnoj " +"valuti za ovaj konto." #. module: account #: field:account.fiscal.position.tax,tax_dest_id:0 @@ -1306,17 +1377,17 @@ msgstr "" #. module: account #: view:account.invoice.cancel:0 msgid "Cancel Invoices" -msgstr "" +msgstr "Otkaži fakture" #. module: account #: help:account.journal,code:0 msgid "The code will be displayed on reports." -msgstr "" +msgstr "Šifra će biti prikazana na izvještajima." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "" +msgstr "Porezi koji se koriste u nabavkama" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1336,7 +1407,7 @@ msgstr "Izlazna tečajna lista" #: view:account.analytic.account:0 #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Predložak" #. module: account #: selection:account.analytic.journal,type:0 @@ -1376,7 +1447,7 @@ msgstr "Ostali" #. module: account #: view:account.subscription:0 msgid "Draft Subscription" -msgstr "" +msgstr "Pretplate u pripremi" #. module: account #: view:account.account:0 @@ -1409,26 +1480,26 @@ msgstr "Konto" #. module: account #: field:account.tax,include_base_amount:0 msgid "Included in base amount" -msgstr "" +msgstr "Uključeno u iznos osnovice" #. module: account #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.action_account_entries_report_all #: model:ir.ui.menu,name:account.menu_action_account_entries_report_all msgid "Entries Analysis" -msgstr "" +msgstr "Analiza unosa" #. module: account #: field:account.account,level:0 #: field:account.financial.report,level:0 msgid "Level" -msgstr "" +msgstr "Nivo" #. module: account #: code:addons/account/wizard/account_change_currency.py:38 #, python-format msgid "You can only change currency for Draft Invoice." -msgstr "" +msgstr "Valutu možete mijenjati jedino u fakturama u pripremi." #. module: account #: report:account.invoice:0 @@ -1448,13 +1519,13 @@ msgstr "Porezi" #: code:addons/account/wizard/account_financial_report.py:70 #, python-format msgid "Select a starting and an ending period" -msgstr "" +msgstr "Odaberite početni i završni period" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitandloss0 #: model:ir.actions.act_window,name:account.action_account_report_pl msgid "Profit and Loss" -msgstr "" +msgstr "Dobit i Gubitak" #. module: account #: model:ir.model,name:account.model_account_account_template @@ -1464,7 +1535,7 @@ msgstr "Predlošci računa" #. module: account #: view:account.tax.code.template:0 msgid "Search tax template" -msgstr "" +msgstr "Traži predložak poreza" #. module: account #: view:account.move.reconcile:0 @@ -1483,12 +1554,12 @@ msgstr "Dospijela plaćanja" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Initial Balance" -msgstr "" +msgstr "Početni saldo" #. module: account #: view:account.invoice:0 msgid "Reset to Draft" -msgstr "" +msgstr "Vrati u pripremu" #. module: account #: view:account.aged.trial.balance:0 @@ -1499,22 +1570,22 @@ msgstr "Postavke izvješća" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Zatvaranje poslovne godine" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "" +msgstr "Sekvence faktura" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "" +msgstr "Analiza stavki dnevnika" #. module: account #: model:ir.ui.menu,name:account.next_id_22 msgid "Partners" -msgstr "" +msgstr "Partneri" #. module: account #: help:account.bank.statement,state:0 @@ -1523,11 +1594,13 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"Kada je novi izvod kreiran status je 'U pripremi'.\n" +"Nakon dobivanja potvrde od banke biti će u 'Potvrđeno' statusu." #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Status fakture" #. module: account #: view:account.bank.statement:0 @@ -1549,7 +1622,7 @@ msgstr "Potražni konto" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: account #: report:account.account.balance:0 @@ -1568,11 +1641,13 @@ msgid "" "There is no default debit account defined \n" "on journal \"%s\"." msgstr "" +"Nije definisan zadani dugovni konto \n" +"za dnevnik \"%s\"." #. module: account #: view:account.tax:0 msgid "Search Taxes" -msgstr "" +msgstr "Pretraži poreze" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger @@ -1587,7 +1662,7 @@ msgstr "Stvori stavke" #. module: account #: field:account.entries.report,nbr:0 msgid "# of Items" -msgstr "" +msgstr "# stavki" #. module: account #: field:account.automatic.reconcile,max_amount:0 @@ -1602,6 +1677,9 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" +"Nema stavaka za zatvaranje. Sve fakture i plaćanja \n" +" su već zatvoreni, saldo vašeg partnera " +"je uredan." #. module: account #: field:account.chart.template,code_digits:0 @@ -1613,14 +1691,14 @@ msgstr "Broj znamenki" #. module: account #: field:account.journal,entry_posted:0 msgid "Skip 'Draft' State for Manual Entries" -msgstr "" +msgstr "Preskoči stanje 'U pripremi' za ručni upis" #. module: account #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Nije implementirano." #. module: account #: view:account.invoice.refund:0 @@ -1630,17 +1708,17 @@ msgstr "Knjižno odobrenje" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "eFakture i Plaćanja" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 msgid "Cost Ledger for Period" -msgstr "" +msgstr "Knjiga troškova za period" #. module: account #: view:account.entries.report:0 msgid "# of Entries " -msgstr "" +msgstr "# stavaka " #. module: account #: help:account.fiscal.position,active:0 @@ -1648,11 +1726,13 @@ msgid "" "By unchecking the active field, you may hide a fiscal position without " "deleting it." msgstr "" +"Isključivanjem polja aktivno, možete sakriti fiskalnu poziciju bez da je " +"brišete." #. module: account #: model:ir.model,name:account.model_temp_range msgid "A Temporary table used for Dashboard view" -msgstr "" +msgstr "Privremena tablica za kontrolnu ploču" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree4 @@ -1669,7 +1749,7 @@ msgstr "Šifra pretinca" #. module: account #: field:account.config.settings,company_footer:0 msgid "Bank accounts footer preview" -msgstr "" +msgstr "Pregled podnožja sa podacima od banke" #. module: account #: selection:account.account,type:0 @@ -1685,7 +1765,7 @@ msgstr "Zatvoreno" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "" +msgstr "Ponavljajuće stavke" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template @@ -1695,7 +1775,7 @@ msgstr "Predložak za fiskalnu poziciju" #. module: account #: view:account.subscription:0 msgid "Recurring" -msgstr "" +msgstr "Ponavljanje" #. module: account #: field:account.journal,groups_id:0 @@ -1710,17 +1790,17 @@ msgstr "Neoporezivo" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Napredna podešavanja" #. module: account #: view:account.bank.statement:0 msgid "Search Bank Statements" -msgstr "" +msgstr "Traži izvode banke" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "" +msgstr "Nepotvrđene stavke knjiženja" #. module: account #: view:account.chart.template:0 @@ -1737,7 +1817,7 @@ msgstr "Konto za povrat poreza" #. module: account #: model:ir.model,name:account.model_ir_sequence msgid "ir.sequence" -msgstr "" +msgstr "ir.sequence" #. module: account #: view:account.bank.statement:0 @@ -1748,7 +1828,7 @@ msgstr "Retci izvoda" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "Date/Code" -msgstr "" +msgstr "Datum/Šifra" #. module: account #: field:account.analytic.line,general_account_id:0 @@ -1795,23 +1875,23 @@ msgstr "Faktura" #. module: account #: field:account.move,balance:0 msgid "balance" -msgstr "" +msgstr "saldo" #. module: account #: model:process.node,note:account.process_node_analytic0 #: model:process.node,note:account.process_node_analyticcost0 msgid "Analytic costs to invoice" -msgstr "" +msgstr "Analitički troškovi za fakturisanje" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequence" -msgstr "" +msgstr "Sekvenca poslovne godine" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analitičko računovodstvo" #. module: account #: report:account.overdue:0 @@ -1830,29 +1910,37 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"Ako izaberete \"zaokruživanje po stavci\": za svaki porez, iznos poreza će " +"prvo biti izračunat i zaokružen po svakoj stavci narudžbe/fakture, a tada će " +"ti iznosi biti zbrajani do ukupnog iznosa poreza. Ukoliko odaberete " +"\"Zaokurži globalno\" : za svaki porez iznos poreza će biti izračunat za " +"svaku stavku narudžbe/fakture, tada će iznosi biti zbrojeni i eventualno taj " +"zbroj će biti zaokružen. Ukoliko vršite prodaju sa uključenim porezima, " +"trebali bi odabrati \"Zaokruži po stavci\" jer svakako želite da suma iznosa " +"sa uključenim porezom bude ista kao i suma ukupnog iznosa sa porezom." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all #: view:report.account_type.sales:0 msgid "Sales by Account Type" -msgstr "" +msgstr "Prodaja po tipu konta" #. module: account #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 dana" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing msgid "Invoicing" -msgstr "" +msgstr "Fakturisanje" #. module: account #: code:addons/account/report/account_partner_balance.py:115 #, python-format msgid "Unknown Partner" -msgstr "" +msgstr "Nepoznat partner" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:103 @@ -1861,12 +1949,14 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" +"Dnevnik mora imati jedinstvenu protustavku bez označene opcije preskoči U " +"pripremi." #. module: account #: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." -msgstr "" +msgstr "Neke stavke su već zatvorene." #. module: account #: field:account.tax.code,sum:0 @@ -1876,7 +1966,7 @@ msgstr "Godišnja suma" #. module: account #: view:account.change.currency:0 msgid "This wizard will change the currency of the invoice" -msgstr "" +msgstr "Ovaj čarobnjak će promjeniti valute fakture" #. module: account #: view:account.installer:0 @@ -1884,11 +1974,14 @@ msgid "" "Select a configuration package to setup automatically your\n" " taxes and chart of accounts." msgstr "" +"Odaberite paket postavki za automatsko postavljanje vaših\n" +" poreza i " +"kontnog plana." #. module: account #: view:account.analytic.account:0 msgid "Pending Accounts" -msgstr "" +msgstr "Konta na čekanju" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -1907,11 +2000,12 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" +"Period dnevnika možete sakriti umjesto brisanja ako isključite polje aktivan." #. module: account #: field:account.report.general.ledger,sortby:0 msgid "Sort by" -msgstr "" +msgstr "Sortiraj po" #. module: account #: model:ir.actions.act_window,name:account.act_account_partner_account_move_all @@ -1921,28 +2015,28 @@ msgstr "Potraživanja i dugovanja" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "Upravljanje nalozima za plaćanje" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Trajanje" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "Zadnji saldo zatvaranja" #. module: account #: model:ir.model,name:account.model_account_common_journal_report msgid "Account Common Journal Report" -msgstr "" +msgstr "Izvještaj zajedničkog dnevnika konta" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "" +msgstr "Svi partneri" #. module: account #: view:account.analytic.chart:0 @@ -1964,7 +2058,7 @@ msgstr "Referenca kupca" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "Koristi ovu šifru za poreski izvještaj." #. module: account #: help:account.period,special:0 @@ -1979,12 +2073,12 @@ msgstr "Izvod u pripremi" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Faktura odobrena" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Platite dobavljačima čekom" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -1995,7 +2089,7 @@ msgstr "Iznos potraživanja" #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Poruke" #. module: account #: view:account.vat.declaration:0 @@ -2007,6 +2101,11 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" +"Ovaj meni prikazuje poreskii izvještaj baziran na ulaznim i izlaznim " +"fakturama i plaćanjima. Odaberite jedan ili više perioda fiskalne godine. " +"Potrebni podaci za poresku prijavu automatski se generiraju u OpenERP-u iz " +"faktura. Podaci se osvježavaju u realnom vremenu. Ovo je veoma korisno jer " +"Vam omogućava pregled stanja poreskog duga u trenutku pregleda." #. module: account #: code:addons/account/account.py:409 @@ -2062,7 +2161,7 @@ msgstr "" #: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" -msgstr "" +msgstr "Greška!" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree2 @@ -2077,28 +2176,37 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za unos nove fakture dobavljača .\n" +"

\n" +" Možete kontrolisati fakturu vašeg dobavljača prema tome\n" +" šta ste kupili ili primili. OpenERP može također generisati\n" +" fakture u pripremi automatski iz narudžbi nabavke ili " +"prijema.\n" +"

\n" +" " #. module: account #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "" +msgstr "Pogrešna dugovna ili potražna vrijednost upisane stavke!" #. module: account #: view:account.invoice.report:0 #: model:ir.actions.act_window,name:account.action_account_invoice_report_all #: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all msgid "Invoices Analysis" -msgstr "" +msgstr "Analiza faktura" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Čarobnjak sastavljanja email-a" #. module: account #: model:ir.model,name:account.model_account_period_close msgid "period close" -msgstr "" +msgstr "zatvori period" #. module: account #: code:addons/account/account.py:1058 @@ -2107,16 +2215,18 @@ msgid "" "This journal already contains items for this period, therefore you cannot " "modify its company field." msgstr "" +"Ovaj dnevnik već sadrži stavke za ovaj period, stoga ne možete mijenjati " +"njegovo polje kompanije." #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form msgid "Entries By Line" -msgstr "" +msgstr "Unosi po stavkama" #. module: account #: field:account.vat.declaration,based_on:0 msgid "Based on" -msgstr "" +msgstr "Bazirano na" #. module: account #: model:ir.actions.act_window,help:account.action_bank_statement_tree @@ -2135,23 +2245,35 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog bankovnog izvoda.\n" +"

\n" +" Bankovni izvod sadrži pregled svih financijskih transakcija\n" +" koje su nastale u danom razdoblju po bankovnom računu. " +"Bankovne \n" +" izvode šalje banka periodično.\n" +"

\n" +" OpenERP dozvoljava direktno zatvaranje stavaka sa povezanim\n" +" ulaznim ili izlaznim fakturama.\n" +"

\n" +" " #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Zadana valuta kompanije" #. module: account #: field:account.invoice,move_id:0 #: field:account.invoice,move_name:0 #: field:account.move.line,move_id:0 msgid "Journal Entry" -msgstr "" +msgstr "Dnevnički zapis" #. module: account #: view:account.invoice:0 msgid "Unpaid" -msgstr "" +msgstr "Neplaćeno" #. module: account #: view:account.treasury.report:0 @@ -2159,12 +2281,12 @@ msgstr "" #: model:ir.model,name:account.model_account_treasury_report #: model:ir.ui.menu,name:account.menu_action_account_treasury_report_all msgid "Treasury Analysis" -msgstr "" +msgstr "Analiza blagajne" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "" +msgstr "Dnevnik Prodaje/Nabavke" #. module: account #: view:account.analytic.account:0 @@ -2176,7 +2298,7 @@ msgstr "Analitički konto" #: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." -msgstr "" +msgstr "Molimo provjerite da je konto definisan u dnevniku" #. module: account #: selection:account.entries.report,move_line_state:0 @@ -2187,18 +2309,18 @@ msgstr "Potvrđeno" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Pratioci" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal #: model:ir.model,name:account.model_account_print_journal msgid "Account Print Journal" -msgstr "" +msgstr "Ispis dnevnika" #. module: account #: model:ir.model,name:account.model_product_category msgid "Product Category" -msgstr "" +msgstr "Kategorija proizvoda" #. module: account #: code:addons/account/account.py:656 @@ -2207,28 +2329,30 @@ msgid "" "You cannot change the type of account to '%s' type as it contains journal " "items!" msgstr "" +"Nije moguće promijeniti tip konta na '%s' jer već sadrži stavke dnevnika!" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "" +msgstr "Bruto bilanca" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "Zatvaranje fiskalne godine" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "Dnevnik :" #. module: account #: sql_constraint:account.fiscal.position.tax:0 msgid "A tax fiscal position could be defined only once time on same taxes." msgstr "" +"Fiskalna pozicija poreza se može definisati samo jednom za jedan porez." #. module: account #: view:account.tax:0 @@ -2240,31 +2364,31 @@ msgstr "Definicija poreza" #: view:account.config.settings:0 #: model:ir.actions.act_window,name:account.action_account_config msgid "Configure Accounting" -msgstr "" +msgstr "Postavke računovodstva" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Referentna JM" #. module: account #: help:account.journal,allow_date:0 msgid "" "If set to True then do not accept the entry if the entry date is not into " "the period dates" -msgstr "" +msgstr "Ne dozvoljava knjiženja izvan fiskalnog perioda" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "" +msgstr "Dobro odrađen posao!" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Upravljanje imovinom" #. module: account #: view:account.account:0 @@ -2287,6 +2411,9 @@ msgid "" "currency. You should remove the secondary currency on the account or select " "a multi-currency view on the journal." msgstr "" +"Odabrani konto vašeg dnevničkog zapisa traži sekundarnu valutu. Trebali bi " +"ste ukloniti sekundarnu valutu sa konta ili odabrati multivalutni pogled na " +"dnevniku." #. module: account #: view:account.invoice:0 @@ -2299,17 +2426,17 @@ msgstr "Neoporezovan iznos" msgid "" "If the active field is set to False, it will allow you to hide the tax " "without removing it." -msgstr "" +msgstr "Neaktivni porezi će biti skriveni u listama odabira." #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "" +msgstr "Stavke analitičkog dnevnika povezane sa dnevnikom prodaje." #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Italic Text (smaller)" -msgstr "" +msgstr "Italic tekst ( manji)" #. module: account #: help:account.journal,cash_control:0 @@ -2317,6 +2444,7 @@ msgid "" "If you want the journal should be control at opening/closing, check this " "option" msgstr "" +"Ako želite kontrolisati otvaranje i zatvaranje dnevnika, označite ovdje" #. module: account #: view:account.bank.statement:0 @@ -2346,7 +2474,7 @@ msgstr "Fiskalna godina" #: code:addons/account/wizard/account_move_bank_reconcile.py:53 #, python-format msgid "Standard Encoding" -msgstr "" +msgstr "Standardno kodiranje" #. module: account #: view:account.journal.select:0 @@ -2357,22 +2485,22 @@ msgstr "Otvori stavke" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "Sljedeći broj odobrenja dobavljaču" #. module: account #: field:account.automatic.reconcile,account_ids:0 msgid "Accounts to Reconcile" -msgstr "" +msgstr "Konta za zatvaranje" #. module: account #: model:process.transition,note:account.process_transition_filestatement0 msgid "Import of the statement in the system from an electronic file" -msgstr "" +msgstr "Uvoz izvoda iz datoteke" #. module: account #: model:process.node,name:account.process_node_importinvoice0 msgid "Import from invoice" -msgstr "" +msgstr "Uvezi iz faktura" #. module: account #: selection:account.entries.report,month:0 @@ -2381,34 +2509,34 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "January" -msgstr "" +msgstr "Januar" #. module: account #: view:account.entries.report:0 msgid "This F.Year" -msgstr "" +msgstr "Ova F. godina" #. module: account #: view:account.tax.chart:0 msgid "Account tax charts" -msgstr "" +msgstr "Stablo poreza" #. module: account #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "" +msgstr "30 Neto dana" #. module: account #: code:addons/account/account_cash_statement.py:256 #, python-format msgid "You do not have rights to open this %s journal !" -msgstr "" +msgstr "Nemate ovlaštenja da otvorite %s dnevnik!" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "Provjeri ukupni iznos na fakturama dobavljača" #. module: account #: selection:account.invoice,state:0 @@ -2428,16 +2556,20 @@ msgid "" "partners accounts (for debit/credit computations), closed for depreciated " "accounts." msgstr "" +"Ovaj tip se koristi za razlikovanje tipova s posebnim efektima u OpenERPu: " +"pogled ne može imati zapise, konsolidacija su konta koja imaju podređena " +"konta za konsolidaciju više kompanija, obveze/potraživanja su za saldakonti " +"(za duguje/potražuje izračune), zatvoreni za konta koja se više ne koriste." #. module: account #: view:account.chart.template:0 msgid "Search Chart of Account Templates" -msgstr "" +msgstr "Pretraži predloške kontnog plana" #. module: account #: report:account.invoice:0 msgid "Customer Code" -msgstr "" +msgstr "Šifra kupca" #. module: account #: view:account.account.type:0 @@ -2478,7 +2610,7 @@ msgstr "Konto prihoda" #. module: account #: help:account.config.settings,default_sale_tax:0 msgid "This sale tax will be assigned by default on new products." -msgstr "" +msgstr "Ovaj porez prodaje će biti primjenjen na svim novim proizvodima." #. module: account #: report:account.general.ledger_landscape:0 @@ -2490,17 +2622,17 @@ msgstr "Stavke poredane po" #. module: account #: field:account.change.currency,currency_id:0 msgid "Change to" -msgstr "" +msgstr "Promjeni u" #. module: account #: view:account.entries.report:0 msgid "# of Products Qty " -msgstr "" +msgstr "# kol. proizvoda " #. module: account #: model:ir.model,name:account.model_product_template msgid "Product Template" -msgstr "" +msgstr "Prijedlog proizvoda" #. module: account #: report:account.account.balance:0 @@ -2568,16 +2700,18 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" +"Ne možete mijenjati tip konta iz 'zatvoren' u neki drugi tip jer sadrži " +"stavke dnevnika!" #. module: account #: field:account.invoice.report,account_line_id:0 msgid "Account Line" -msgstr "" +msgstr "Stavka" #. module: account #: view:account.addtmpl.wizard:0 msgid "Create an Account Based on this Template" -msgstr "" +msgstr "Kreiraj konto prema ovom predlošku" #. module: account #: code:addons/account/account_invoice.py:933 @@ -2588,6 +2722,10 @@ msgid "" "amount greater than the total invoiced amount. In order to avoid rounding " "issues, the latest line of your payment term must be of type 'balance'." msgstr "" +"Nije moguće izraditi fakturu.\n" +"Povezani način plaćanja je vjerojatno krivo postavljen i dalje izračunati " +"iznos veći od iznosa ukupnog iznosa računa. Kako bi izbjegli probleme sa " +"zaokruživanjem, zadnja linija vašeg plaćanja mora biti tipa 'saldo'." #. module: account #: view:account.move:0 @@ -2607,6 +2745,8 @@ msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" +"Kako bi izbrisali bankovni izvod, morate ga prvo otkazati kako bi se " +"obrisale sve stavke dnevnika povezane s njim." #. module: account #: field:account.invoice.report,payment_term:0 @@ -2628,7 +2768,7 @@ msgstr "Fiskalne pozicije" #: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "" +msgstr "Nije moguće knjiženje stavaka na zatvorenom kontu %s %s." #. module: account #: field:account.period.close,sure:0 @@ -2644,27 +2784,27 @@ msgstr "Filteri" #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "" +msgstr "Stanje računa 'U pripremi'" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Svojstva konta" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Kreiraj povrat u pripremi" #. module: account #: view:account.partner.reconcile.process:0 msgid "Partner Reconciliation" -msgstr "" +msgstr "Zatvaranje salda konti" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "Fin. konto" #. module: account #: field:account.tax,tax_code_id:0 @@ -2676,7 +2816,7 @@ msgstr "Šifra poreza" #: model:account.payment.term,name:account.account_payment_term_advance #: model:account.payment.term,note:account.account_payment_term_advance msgid "30% Advance End 30 Days" -msgstr "" +msgstr "30% avans, ostatak kroz 30 dana" #. module: account #: view:account.entries.report:0 @@ -2692,7 +2832,7 @@ msgstr "Osnovni kod" #. module: account #: help:account.invoice.tax,sequence:0 msgid "Gives the sequence order when displaying a list of invoice tax." -msgstr "" +msgstr "Određuje redosljed sekvenci kada prikazuje listu poreza fakture." #. module: account #: field:account.tax,base_sign:0 @@ -2711,7 +2851,7 @@ msgstr "Centralizacija dugovanja" #: view:account.invoice.confirm:0 #: model:ir.actions.act_window,name:account.action_account_invoice_confirm msgid "Confirm Draft Invoices" -msgstr "" +msgstr "Potvrdite fakture u pripremi" #. module: account #: field:account.entries.report,day:0 @@ -2720,12 +2860,12 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,day:0 msgid "Day" -msgstr "" +msgstr "Dan" #. module: account #: model:ir.actions.act_window,name:account.act_account_renew_view msgid "Accounts to Renew" -msgstr "" +msgstr "Konta za obnovu" #. module: account #: model:ir.model,name:account.model_account_model_line @@ -2767,6 +2907,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za kreiranje dnevnički zapis.\n" +"

\n" +" Dnevnički zapis se sastoji od nekoliko stavaka dnevnika, " +"svaki\n" +" od kojih je ili dugovna ili potražna transakcija.\n" +"

\n" +" OpenERP automatski kreira dnevnički zapis po " +"računovodstvenom\n" +" dokumentu: faktura, povrat, plaćanje dobavljaču, izvod,\n" +" itd. Prema tome, ručno unositi dnevničke zapise bi trebali " +"samo/uglavnom\n" +" za ostale razne operacije.\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -2785,7 +2940,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "Sljedeći broj fakture dobavljača" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2795,7 +2950,7 @@ msgstr "Odaberite razdoblje" #. module: account #: model:ir.ui.menu,name:account.menu_account_pp_statements msgid "Statements" -msgstr "" +msgstr "Izvodi" #. module: account #: report:account.analytic.account.journal:0 @@ -2805,7 +2960,7 @@ msgstr "Pomjeri ime" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_writeoff msgid "Account move line reconcile (writeoff)" -msgstr "" +msgstr "Zatvaranje stavke glavne knjige (otpis)" #. module: account #: model:account.account.type,name:account.conf_account_type_tax @@ -2834,7 +2989,7 @@ msgstr "Analitičko konto" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Zadani porez nabave" #. module: account #: view:account.account:0 @@ -2847,7 +3002,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_account_form #: model:ir.ui.menu,name:account.menu_analytic msgid "Accounts" -msgstr "" +msgstr "Konta" #. module: account #: code:addons/account/account.py:3541 @@ -2860,19 +3015,19 @@ msgstr "" #: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Greška u konfiguraciji!" #. module: account #: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "" +msgstr "Izvod %s potvrđen, stavke dnevnika su kreirane." #. module: account #: field:account.invoice.report,price_average:0 #: field:account.invoice.report,user_currency_price_average:0 msgid "Average Price" -msgstr "" +msgstr "Prosječna Cijena" #. module: account #: report:account.overdue:0 @@ -2883,12 +3038,12 @@ msgstr "Datum:" #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Label" -msgstr "" +msgstr "Naljepnica" #. module: account #: view:res.partner.bank:0 msgid "Accounting Information" -msgstr "" +msgstr "Računovodstvene informacije" #. module: account #: view:account.tax:0 @@ -2919,28 +3074,29 @@ msgstr "Referenca" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Porez Nabave" #. module: account #: help:account.move.line,tax_code_id:0 msgid "The Account can either be a base tax code or a tax code account." -msgstr "" +msgstr "Odaberite ili poreznu grupu poreza ili poreznu grupu osnovice." #. module: account #: sql_constraint:account.model.line:0 msgid "Wrong credit or debit value in model, they must be positive!" msgstr "" +"Kriva dugovna ili potražna vrijednost u modelu. Moraju biti pozitivne!" #. module: account #: model:process.node,note:account.process_node_reconciliation0 #: model:process.node,note:account.process_node_supplierreconciliation0 msgid "Comparison between accounting and payment entries" -msgstr "" +msgstr "Usporedba stavki knjiženja i plaćanja" #. module: account #: model:ir.ui.menu,name:account.menu_automatic_reconcile msgid "Automatic Reconciliation" -msgstr "" +msgstr "Automatsko zatvaranje" #. module: account #: field:account.invoice,reconciled:0 @@ -2957,7 +3113,7 @@ msgstr "Šifra osnovice povrata" #: model:ir.actions.act_window,name:account.action_bank_statement_tree #: model:ir.ui.menu,name:account.menu_bank_statement_tree msgid "Bank Statements" -msgstr "" +msgstr "Izvodi banke" #. module: account #: model:ir.actions.act_window,help:account.action_account_fiscalyear @@ -2978,6 +3134,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za otvaranje nove fiskalne godine.\n" +"

\n" +" Definišite fiskalnu godinu vaše kompanije prema vašim " +"potrebama. \n" +" Fiskalna godina je period na kraju kojeg zaključujemo " +"poslovnu\n" +" godinu (obično 12 mjeseci). U Bosni fiskalna godina prati " +"kalendarsku.\n" +"

\n" +" " #. module: account #: view:account.common.report:0 @@ -2985,12 +3152,12 @@ msgstr "" #: view:account.move.line:0 #: view:accounting.report:0 msgid "Dates" -msgstr "" +msgstr "Datumi" #. module: account #: field:account.chart.template,parent_id:0 msgid "Parent Chart Template" -msgstr "" +msgstr "Nadređeni prijedlog kontnog plana" #. module: account #: field:account.tax,parent_id:0 @@ -3009,12 +3176,12 @@ msgstr "Zreli saldo partnera" #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries" -msgstr "" +msgstr "Knjigovodstveni unosi" #. module: account #: constraint:account.move.line:0 msgid "Account and Period must belong to the same company." -msgstr "" +msgstr "Konto i period moraju pripadati istoj kompaniji." #. module: account #: field:account.invoice.line,discount:0 @@ -3030,6 +3197,10 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" +"Označite ovu kućicu ako ne želite da nove stavke dnevnika prolaze kroz " +"status 'U pripremi' već da direktno postaju 'Knjižene' bez ručne ovjere. " +"Imajte na umu da stavke dnevnika koje se kreiraju automatski uvjek preskaču " +"taj status." #. module: account #: field:account.move.line.reconcile,writeoff:0 @@ -3040,7 +3211,7 @@ msgstr "Iznos otpisa" #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepročitane poruke" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3049,35 +3220,37 @@ msgid "" "Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" "Forma' state." msgstr "" +"Odabrani fakture ne mogu biti potvrđeni jer nisu u stanju 'U pripremi' ili " +"'ProForma'" #. module: account #: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "" +msgstr "Trebali bi odabrati periode koji pripadaju istoj kompaniji." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all #: view:report.account.sales:0 #: view:report.account_type.sales:0 msgid "Sales by Account" -msgstr "" +msgstr "Prodaje po kontu" #. module: account #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Ne možete obrisati knjiženu stavku dnevnika\"%s\"." #. module: account #: view:account.invoice:0 msgid "Accounting Period" -msgstr "" +msgstr "Obračuski period" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "" +msgstr "Dnevnik prodaje" #. module: account #: code:addons/account/account.py:2346 @@ -3085,7 +3258,7 @@ msgstr "" #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" -msgstr "" +msgstr "Morate definisati analitički dnevnik na dnevniku '%s' !" #. module: account #: code:addons/account/account.py:781 @@ -3094,6 +3267,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Ovaj dnevnik već sadrži stavke i prema tome ne možete mijenjati polje " +"kompanije" #. module: account #: code:addons/account/account.py:409 @@ -3102,6 +3277,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" +"Treba Vam dnevnik početnog stanja sa upaljenom centralizacijom za " +"postavljanje početnog stanja." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3112,13 +3289,13 @@ msgstr "Šifre poreza" #. module: account #: view:account.account:0 msgid "Unrealized Gains and losses" -msgstr "" +msgstr "Nerealizirani dobici i i gubici" #. module: account #: model:ir.ui.menu,name:account.menu_account_customer #: model:ir.ui.menu,name:account.menu_finance_receivables msgid "Customers" -msgstr "" +msgstr "Kupci" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -3134,12 +3311,12 @@ msgstr "Razdoblje do" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "August" -msgstr "" +msgstr "Avgust" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "Prikaži kolone duguje/potražuje" #. module: account #: selection:account.entries.report,month:0 @@ -3148,7 +3325,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "October" -msgstr "" +msgstr "Oktobar" #. module: account #: help:account.move.line,quantity:0 @@ -3156,17 +3333,19 @@ msgid "" "The optional quantity expressed by this line, eg: number of product sold. " "The quantity is not a legal requirement but is very useful for some reports." msgstr "" +"Opcionalna količina izražena ovom linijom, npr.: broj prodanih komada " +"artikla. Količina je vrlo korisna za neke izvještaje." #. module: account #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Transakcije koje nisu zatvorene" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "" +msgstr "Samo jedan prijedlog kontnog plana je dostupan" #. module: account #: view:account.chart.template:0 @@ -3179,7 +3358,7 @@ msgstr "Konto za rashode" #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Rezime" #. module: account #: help:account.invoice,period_id:0 @@ -3191,6 +3370,8 @@ msgstr "Ostavi prazno da bi se koristio datum validacije (računa) kao period" msgid "" "used in statement reconciliation domain, but shouldn't be used elswhere." msgstr "" +"korišteno u domeni zatvaranja izvoda, ali ne bi se trebalo koristiti na " +"drugim mjestima." #. module: account #: field:account.config.settings,date_stop:0 @@ -3205,7 +3386,7 @@ msgstr "Iznos osnovne šifre" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "" +msgstr "Zadani porez prodaje" #. module: account #: help:account.model.line,date_maturity:0 @@ -3214,6 +3395,8 @@ msgid "" "between the creation date or the creation date of the entries plus the " "partner payment terms." msgstr "" +"Datum dospijeća generisanig stavaka za ovaj model. Možete birati između " +"datuma izrade ili datum izrade/unosa plus uslova plaćanja partnera." #. module: account #: model:ir.ui.menu,name:account.menu_finance_accounting @@ -3223,7 +3406,7 @@ msgstr "Financijsko računovodstvo" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "" +msgstr "Dobit i Gubitak" #. module: account #: view:account.fiscal.position:0 @@ -3246,6 +3429,8 @@ msgid "" "Tax base different!\n" "Click on compute to update the tax base." msgstr "" +"Različita poreska osnovica!\n" +"Kliknite za ponovni izračun osnovice." #. module: account #: field:account.partner.ledger,page_split:0 @@ -3264,13 +3449,13 @@ msgstr "Potomci" #: model:ir.actions.report.xml,name:account.account_account_balance #: model:ir.ui.menu,name:account.menu_general_Balance_report msgid "Trial Balance" -msgstr "" +msgstr "Bilans" #. module: account #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Nije moguće postaviti početno stanje (negativne vrijednosti)." #. module: account #: selection:account.invoice,type:0 @@ -3289,23 +3474,23 @@ msgstr "Odaberite fiskalnu godinu" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "Raspon datuma" #. module: account #: view:account.period:0 msgid "Search Period" -msgstr "" +msgstr "Pretraži period" #. module: account #: view:account.change.currency:0 msgid "Invoice Currency" -msgstr "" +msgstr "Valuta fakture" #. module: account #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Računovodstveni izvještaj" #. module: account #: field:account.payment.term,line_ids:0 @@ -3320,7 +3505,7 @@ msgstr "Lista predloška poreza" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "" +msgstr "Dnevnici Prodaje/Nabave" #. module: account #: help:account.account,currency_mode:0 @@ -3341,7 +3526,7 @@ msgstr "" #: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Nema nadređene šifre za prijedlog konta." #. module: account #: help:account.chart.template,code_digits:0 @@ -3352,28 +3537,30 @@ msgstr "Broj znamenki za upotrebu u šifri računa" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Uslovi plaćanja dobavljača" #. module: account #: view:account.fiscalyear:0 msgid "Search Fiscalyear" -msgstr "" +msgstr "Pretraži fiskalnu godinu" #. module: account #: selection:account.tax,applicable_type:0 msgid "Always" -msgstr "" +msgstr "Uvijek" #. module: account #: field:account.config.settings,module_account_accountant:0 msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." msgstr "" +"Puna računovodstvena funkcionalnost: dnevnici, zakonski izvještaji, kontni " +"plan itd." #. module: account #: view:account.analytic.line:0 msgid "Total Quantity" -msgstr "" +msgstr "Ukupna količina" #. module: account #: field:account.move.line.reconcile.writeoff,writeoff_acc_id:0 @@ -3415,7 +3602,7 @@ msgstr "Retci analitike" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "" +msgstr "Proforma fakture" #. module: account #: model:process.node,name:account.process_node_electronicfile0 @@ -3425,12 +3612,12 @@ msgstr "Elektronska datoteka" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Ref. zatvaranja" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 msgid "Company has a chart of accounts" -msgstr "" +msgstr "Kompanija ima kontni plan" #. module: account #: model:ir.model,name:account.model_account_tax_code_template @@ -3440,7 +3627,7 @@ msgstr "Predložak šifre poreza" #. module: account #: model:ir.model,name:account.model_account_partner_ledger msgid "Account Partner Ledger" -msgstr "" +msgstr "Saldo konti partnera" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice @@ -3530,14 +3717,14 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Obračunski period" #. module: account #: help:account.account,currency_id:0 #: help:account.account.template,currency_id:0 #: help:account.bank.accounts.wizard,currency_id:0 msgid "Forces all moves for this account to have this secondary currency." -msgstr "" +msgstr "Forsira da sva knjiženja ovog konta moraju imati sekundarnu valutu." #. module: account #: model:ir.actions.act_window,help:account.action_validate_account_move_line @@ -3545,6 +3732,8 @@ msgid "" "This wizard will validate all journal entries of a particular journal and " "period. Once journal entries are validated, you can not update them anymore." msgstr "" +"Ovaj čarobnjak će knjižiti sve neknjižene stavke odabranog dnevnika za " +"odabrani period." #. module: account #: model:ir.actions.act_window,name:account.action_account_chart_template_form @@ -3555,12 +3744,12 @@ msgstr "Predlošci računskog plana" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Transakcije" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile msgid "Account Unreconcile Reconcile" -msgstr "" +msgstr "Zatvaranje neztvorenih konta" #. module: account #: help:account.account.type,close_method:0 @@ -3575,6 +3764,13 @@ msgid "" " 'Unreconciled' will copy only the journal items that were unreconciled on " "the first day of the new fiscal year." msgstr "" +"Postavite metodu knjiženja kod zatvaranja konta na kraju godine.\n" +"Sva konta ovog tipa će se zatvarati prema odabranoj metodi.\n" +"\n" +" 'Ništa' - neće generirati stavke.\n" +" 'Saldo' - koristi se uglavnom za konta banke i blagajne.\n" +" 'Stavke' - sve stavke se prenose u novu godinu(i zatvorene).\n" +" 'Otvorene stavke' - prenose se otvorene stavke (konta kupaca i dobavljača)." #. module: account #: view:account.tax.template:0 @@ -3618,7 +3814,7 @@ msgstr "Nalozi za knjiženje" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 msgid "Remaining Partners" -msgstr "" +msgstr "Preostali partneri" #. module: account #: view:account.subscription:0 @@ -3642,12 +3838,12 @@ msgstr "Nabava" #: view:account.installer:0 #: view:wizard.multi.charts.accounts:0 msgid "Accounting Application Configuration" -msgstr "" +msgstr "Konfiguracija računovodstvene aplikacije" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "Poreski izvještaj" #. module: account #: help:account.bank.statement,name:0 @@ -3656,6 +3852,8 @@ msgid "" "be with same name as statement name. This allows the statement entries to " "have the same references than the statement itself" msgstr "" +"Ako date ime drugačije od /, njegove kreirane stavke će imati isto ime kao i " +"izvod. Ovo omogućava stavkama izvoda da imaju istu oznaku kao i glava." #. module: account #: code:addons/account/account_invoice.py:1016 @@ -3665,6 +3863,9 @@ msgid "" "centralized counterpart box in the related journal from the configuration " "menu." msgstr "" +"Ne možete kreirati račun na centraiziranom dnevniku. Odznačite " +"centralizirana protustavka kvadratić u povezanom dnevniku iz menija " +"konfiguracije." #. module: account #: field:account.bank.statement,balance_start:0 @@ -3676,7 +3877,7 @@ msgstr "Početni saldo" #: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" -msgstr "" +msgstr "Nije definiran partner !" #. module: account #: model:ir.actions.act_window,name:account.action_account_period_close @@ -3689,7 +3890,7 @@ msgstr "Zatvori razdoblje" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Početni subtotal" #. module: account #: constraint:account.move.line:0 @@ -3697,11 +3898,13 @@ msgid "" "You cannot create journal items with a secondary currency without recording " "both 'currency' and 'amount currency' field." msgstr "" +"Ne možete kreirati stavke dnevnika sa sekundarnom valutom bez unosa polja " +"'valuta' i 'iznos valute'." #. module: account #: field:account.financial.report,display_detail:0 msgid "Display details" -msgstr "" +msgstr "Prikaži detalje" #. module: account #: report:account.overdue:0 @@ -3713,7 +3916,7 @@ msgstr "PDV:" msgid "" "The amount expressed in the related account currency if not equal to the " "company one." -msgstr "" +msgstr "Iznos iskazan u valuti konta ako nije isti valuti kompanije." #. module: account #: help:account.config.settings,paypal_account:0 @@ -3723,6 +3926,9 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" +"Paypal račun (email) za primanja online uplata. Ako postavite paypal račun, " +"partner će moći platiti vaše račune ili ponude pomoću PayPal dugmeta u " +"automatski poslanim mailovima sa OpenERP portala." #. module: account #: code:addons/account/account_move_line.py:536 @@ -3733,6 +3939,10 @@ msgid "" "You can create one in the menu: \n" "Configuration/Journals/Journals." msgstr "" +"Nema niti jednog dnevnika %s tipa za ovu kompaniju.\n" +"\n" +"Možete kreirati jednog u meniju: \n" +"Konfiguracija/Dnevnici/Dnevnici." #. module: account #: model:ir.actions.act_window,name:account.action_account_unreconcile @@ -3751,17 +3961,17 @@ msgstr "Ne ispisuje se na fakturi" #: report:account.vat.declaration:0 #: field:account.vat.declaration,chart_tax_id:0 msgid "Chart of Tax" -msgstr "" +msgstr "Stablo poreza" #. module: account #: view:account.journal:0 msgid "Search Account Journal" -msgstr "" +msgstr "Pretraži dnevnik knjiženja" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice msgid "Pending Invoice" -msgstr "" +msgstr "Faktura na čekanju" #. module: account #: view:account.invoice.report:0 @@ -3783,6 +3993,11 @@ msgid "" "by\n" " your supplier/customer." msgstr "" +"Moći ćete uređivati i odobriti ovo\n" +" odobrenje direktno ili ostaviti u " +"pripremi,\n" +" čekajući dokument koji će biti izdan\n" +" od strane dobavljača/kupca." #. module: account #: view:validate.account.move.lines:0 @@ -3790,6 +4005,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" +"Sve odabrane stavke dnevnika će biti potvrđene i objavljene. To znači da " +"nećete više moći modificirati njihova polja." #. module: account #: code:addons/account/account_move_line.py:98 @@ -3798,6 +4015,8 @@ msgid "" "You have not supplied enough arguments to compute the initial balance, " "please select a period and a journal in the context." msgstr "" +"Niste osigurali dovoljno argumenata za izračun početnog stanja, molimo " +"odaberite period i dnevnik u kontekstu." #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -3807,7 +4026,7 @@ msgstr "Prijenosi" #. module: account #: field:account.config.settings,expects_chart_of_accounts:0 msgid "This company has its own chart of accounts" -msgstr "" +msgstr "Ova organizacija ima svoj kontni plan" #. module: account #: view:account.chart:0 @@ -3818,7 +4037,7 @@ msgstr "Kontni plan" #: view:cash.box.out:0 #: model:ir.actions.act_window,name:account.action_cash_box_out msgid "Take Money Out" -msgstr "" +msgstr "Podigni novac" #. module: account #: report:account.vat.declaration:0 @@ -3828,7 +4047,7 @@ msgstr "Iznos poreza" #. module: account #: view:account.move:0 msgid "Search Move" -msgstr "" +msgstr "Pretraži kretanja" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree1 @@ -3848,6 +4067,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za izradu nove fakture kupcu.\n" +"

\n" +" Elektronsko fakturisanje OpenERPa omogućava jednostavniju \n" +" i bržu naplatu faktura. Vaš kupac prima fakturu emailom i " +"može\n" +" plaćati online i/ili uvesti fakturu u svoj sistem.\n" +"

\n" +" Razgovori s vašim kupcem su automatski prikazani\n" +" na dnu svake fakture.\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -3870,7 +4101,7 @@ msgstr "Opcije" #. module: account #: field:account.aged.trial.balance,period_length:0 msgid "Period Length (days)" -msgstr "" +msgstr "Dužina perioda (dana)" #. module: account #: code:addons/account/account.py:1363 @@ -3879,11 +4110,13 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" +"Ne možete mijenjati knjižene stavke ovog dnevnika.\n" +"Prvo je potrebno u dnevniku omogućiti otkazivanje stavki." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "" +msgstr "Ispiši dnevnik Prodaje/Nabave" #. module: account #: view:account.installer:0 @@ -3894,7 +4127,7 @@ msgstr "Nastavi" #: view:account.invoice.report:0 #: field:account.invoice.report,categ_id:0 msgid "Category of Product" -msgstr "" +msgstr "Kategorija proizvoda" #. module: account #: code:addons/account/account.py:930 @@ -3903,18 +4136,20 @@ msgid "" "There is no fiscal year defined for this date.\n" "Please create one from the configuration of the accounting menu." msgstr "" +"Nema definisane poslovne godine za ovaj datum.\n" +"Molimo kreirajte jednu u postavkama menija Računovodstvo" #. module: account #: view:account.addtmpl.wizard:0 #: model:ir.actions.act_window,name:account.action_account_addtmpl_wizard_form msgid "Create Account" -msgstr "" +msgstr "Kreiraj konto" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:62 #, python-format msgid "The entries to reconcile should belong to the same company." -msgstr "" +msgstr "Stavke za zatvaranje trebale bi pripadati istoj kompaniji." #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -3924,7 +4159,7 @@ msgstr "Iznos šifre poreza" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "" +msgstr "Otvorene stavke dnevnika" #. module: account #: selection:account.account.type,close_method:0 @@ -3935,6 +4170,7 @@ msgstr "Detalji" #: help:account.config.settings,default_purchase_tax:0 msgid "This purchase tax will be assigned by default on new products." msgstr "" +"Ovaj porez nabave će biti dodijeljen kao zadani svim novim proizvodima." #. module: account #: report:account.invoice:0 @@ -3961,17 +4197,17 @@ msgstr "Kontni plan" #. module: account #: view:account.tax.chart:0 msgid "(If you do not select period it will take all open periods)" -msgstr "" +msgstr "(prazno - sva otvorena razdoblja)" #. module: account #: model:ir.model,name:account.model_account_journal_cashbox_line msgid "account.journal.cashbox.line" -msgstr "" +msgstr "account.journal.cashbox.line" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "" +msgstr "Proces zatvaranja, partner po partner" #. module: account #: view:account.chart:0 @@ -4024,7 +4260,7 @@ msgstr "Datum" #. module: account #: view:account.move:0 msgid "Post" -msgstr "" +msgstr "Knjiži" #. module: account #: view:account.unreconcile:0 @@ -4045,6 +4281,9 @@ msgid "" "based on partner payment term!\n" "Please define partner on it!" msgstr "" +"Datum dospijeća stavke generisan stavkom modela '%s' od modela '%s' se " +"bazira na načinu plaćanja partnera!\n" +"Molimo odredite partnera na njemu!" #. module: account #: report:account.account.balance:0 @@ -4060,7 +4299,7 @@ msgstr "Sve" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reporting_budgets msgid "Budgets" -msgstr "" +msgstr "Budžeti" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -4079,18 +4318,18 @@ msgstr "" #: selection:accounting.report,filter:0 #: selection:accounting.report,filter_cmp:0 msgid "No Filters" -msgstr "" +msgstr "Bez filtera" #. module: account #: view:account.invoice.report:0 #: model:res.groups,name:account.group_proforma_invoices msgid "Pro-forma Invoices" -msgstr "" +msgstr "ProForma fakture" #. module: account #: view:res.partner:0 msgid "History" -msgstr "" +msgstr "Istorija" #. module: account #: help:account.tax,applicable_type:0 @@ -4105,7 +4344,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "Provjeri iznos na fakturi dobavljača" #. module: account #: view:account.tax:0 @@ -4119,12 +4358,14 @@ msgid "" "When monthly periods are created. The status is 'Draft'. At the end of " "monthly period it is in 'Done' status." msgstr "" +"Kada se stvore mjesečni periodi imaju status 'U pripremi', na kraju mjeseca " +"status se mijenja u 'Gotovo'" #. module: account #: view:account.invoice.report:0 #: field:account.invoice.report,product_qty:0 msgid "Qty" -msgstr "" +msgstr "Kol." #. module: account #: help:account.tax.code,sign:0 @@ -4133,11 +4374,13 @@ msgid "" "the amount of this case into its parent. For example, set 1/-1 if you want " "to add/substract it." msgstr "" +"Koeficijent zbrajanja na nadređenu grupu. Npr. 1/-1 za zbrajanje/oduzimanje " +"ili 0 za izostavljanje." #. module: account #: view:account.analytic.line:0 msgid "Search Analytic Lines" -msgstr "" +msgstr "Pretraži analitičke stavke" #. module: account #: field:res.partner,property_account_payable:0 @@ -4148,7 +4391,7 @@ msgstr "Konto dugovanja" #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "Periodi za stvaranje početnih stanja nisu pronađeni." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4171,12 +4414,12 @@ msgstr "Jedinična cijena" #. module: account #: model:ir.actions.act_window,name:account.action_account_tree1 msgid "Analytic Items" -msgstr "" +msgstr "Analitičke stavke" #. module: account #: field:analytic.entries.report,nbr:0 msgid "#Entries" -msgstr "" +msgstr "#Stavki" #. module: account #: view:account.state.open:0 @@ -4186,12 +4429,12 @@ msgstr "Otvori fakturu" #. module: account #: field:account.invoice.tax,factor_tax:0 msgid "Multipication factor Tax code" -msgstr "" +msgstr "Koeficijent poreske grupe" #. module: account #: field:account.config.settings,complete_tax_set:0 msgid "Complete set of taxes" -msgstr "" +msgstr "Potpuni popis poreza" #. module: account #: field:account.account,name:0 @@ -4209,12 +4452,12 @@ msgstr "Naziv" #: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" -msgstr "" +msgstr "Nema nepodešenih kompanija!" #. module: account #: field:res.company,expects_chart_of_accounts:0 msgid "Expects a Chart of Accounts" -msgstr "" +msgstr "Očekuje kontni plan" #. module: account #: field:account.move.line,date:0 @@ -4225,29 +4468,29 @@ msgstr "Efektivni datum" #: code:addons/account/wizard/account_fiscalyear_close.py:100 #, python-format msgid "The journal must have default credit and debit account." -msgstr "" +msgstr "Dnevnik mora imati zadani dugovni i potražni konto." #. module: account #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "" +msgstr "Upišite vaše bankovne račune" #. module: account #: xsl:account.transfer:0 msgid "Partner ID" -msgstr "" +msgstr "ID Partnera" #. module: account #: help:account.bank.statement,message_ids:0 #: help:account.invoice,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Poruke i istorija komunikacije" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "" +msgstr "Dnevnik za analitiku" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4268,6 +4511,8 @@ msgid "" "The fiscalyear, periods or chart of account chosen have to belong to the " "same company." msgstr "" +"Fiskalna godina, periodi ili odabrani kontni plan moraju pripadati istoj " +"kompaniji." #. module: account #: help:account.tax.code.template,notprintable:0 @@ -4275,13 +4520,15 @@ msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." msgstr "" +"Označite ovo polje ako ne želite da se porezi povezani sa ovim poreznim " +"kodom pojavljuju na računima." #. module: account #: code:addons/account/account_move_line.py:1058 #: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." -msgstr "" +msgstr "Nije moguće koristiti neaktivni konto" #. module: account #: model:ir.actions.act_window,name:account.open_board_account @@ -4300,7 +4547,7 @@ msgstr "Računovodstvo" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current year" -msgstr "" +msgstr "Stavke dnevnika u tekućoj godini" #. module: account #: field:account.account,child_consol_ids:0 @@ -4312,7 +4559,7 @@ msgstr "Konsolidirani potomci" #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Nedovoljno podataka!" #. module: account #: help:account.account,unrealized_gain_loss:0 @@ -4320,11 +4567,13 @@ msgid "" "Value of Loss or Gain due to changes in exchange rate when doing multi-" "currency transactions." msgstr "" +"Vrijednost dobiti ili gubitka usljed kursnih razlika kad se koristi više " +"valutne transakcije." #. module: account #: view:account.analytic.line:0 msgid "General Accounting" -msgstr "" +msgstr "Glavna knjiga" #. module: account #: help:account.fiscalyear.close,journal_id:0 @@ -4334,11 +4583,15 @@ msgid "" "debit/credit accounts, of type 'situation' and with a centralized " "counterpart." msgstr "" +"Najbolja praksa je definisati dnevnik(e) na kojima se knjiže početna stanja " +"svih poslovnih godina. Za ove dnevnike treba definisati dugovni i potražni " +"konto protustavki, a vrsta dnevnika mora biti 'Početno stanje' sa " +"centraliziranom(jednom) protustavkom." #. module: account #: view:account.installer:0 msgid "title" -msgstr "" +msgstr "Naslov" #. module: account #: view:account.invoice:0 @@ -4349,12 +4602,12 @@ msgstr "Postavi u pripremu" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form msgid "Recurring Lines" -msgstr "" +msgstr "Ponavljajuće stavke" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "" +msgstr "Prikaži partnere" #. module: account #: view:account.invoice:0 @@ -4364,17 +4617,17 @@ msgstr "Potvrdi" #. module: account #: model:account.financial.report,name:account.account_financial_report_assets0 msgid "Assets" -msgstr "" +msgstr "Imovina" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "Računovodstvo i Financije" #. module: account #: view:account.invoice.confirm:0 msgid "Confirm Invoices" -msgstr "" +msgstr "Potvrdi fakture" #. module: account #: selection:account.account,currency_mode:0 @@ -4386,7 +4639,7 @@ msgstr "Prosječna mjera" #: field:account.common.account.report,display_account:0 #: field:account.report.general.ledger,display_account:0 msgid "Display Accounts" -msgstr "" +msgstr "Prikaži konta" #. module: account #: view:account.state.open:0 @@ -4396,12 +4649,12 @@ msgstr "(Treba poništiti usklađivanje fakture da biste ju otvorili)" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Analitički konto poreza faktura" #. module: account #: field:account.chart,period_from:0 msgid "Start period" -msgstr "" +msgstr "Početni period" #. module: account #: field:account.tax,name:0 @@ -4434,6 +4687,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Ovaj uslov plaćanja će biti korišten umjesto zadanog za prodajne narudžbe i " +"fakture." #. module: account #: view:account.config.settings:0 @@ -4441,33 +4696,34 @@ msgid "" "If you put \"%(year)s\" in the prefix, it will be replaced by the current " "year." msgstr "" +"Ako stavite \"%(year)s\" u prefiks, biti će zamijenjeno sa tekućom godinom." #. module: account #: help:account.account,active:0 msgid "" "If the active field is set to False, it will allow you to hide the account " "without removing it." -msgstr "" +msgstr "Neaktivna konta se neće prikazivati u listama odabira." #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "" +msgstr "Knjižene stavke dnevnika" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "" +msgstr "Ne prati" #. module: account #: view:account.tax.template:0 msgid "Search Tax Templates" -msgstr "" +msgstr "Pretraži predloške poreza" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "" +msgstr "Stavke u stanju \"U pripremi\"" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4476,6 +4732,8 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" +"Na primjer, decimalna preciznost 2 dozvoljava unose kao 9,99 KM, dok " +"decimalna preciznost od 4 dozvoljava unose tipa 0,0231 KM" #. module: account #: field:account.account,shortcut:0 @@ -4502,18 +4760,18 @@ msgstr "Tip konta" #. module: account #: view:account.bank.statement:0 msgid "Close CashBox" -msgstr "" +msgstr "Zatvori blagajnu" #. module: account #: model:ir.model,name:account.model_account_invoice_cancel msgid "Cancel the Selected Invoices" -msgstr "" +msgstr "Otkaži odabrane račune" #. module: account #: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" -msgstr "" +msgstr "Morate dodijeliti analitički dnevnik na '%s' dnevniku!" #. module: account #: model:process.transition,note:account.process_transition_supplieranalyticcost0 @@ -4521,6 +4779,8 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft supplier invoices." msgstr "" +"Analitički troškovi (ev. rada, nabava, ...) dolaze sa analitičkih konta. Oni " +"mogu kreirati fakture dobavljača u pripremi." #. module: account #: model:ir.actions.act_window,help:account.action_bank_tree @@ -4537,6 +4797,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za podešavanje novog bankovnog računa. \n" +"

\n" +" Podesite bankovni račun vaše kompanije i odaberite one koji se\n" +" moraju pojaviti u podnožju izvještaja.\n" +"

\n" +" Ako koristite računovodstvo OpenERPa, dnevnici i\n" +" konta će se kreirati automatski na bazi ovih podataka.\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4544,6 +4814,8 @@ msgid "" "Error!\n" "You cannot create recursive Tax Codes." msgstr "" +"Greška !\n" +"Nije moguće stvarati rekurzivne poreske kodove" #. module: account #: constraint:account.period:0 @@ -4551,6 +4823,8 @@ msgid "" "Error!\n" "The duration of the Period(s) is/are invalid." msgstr "" +"Greška!\n" +"Trajanje perioda nije ispravno." #. module: account #: field:account.entries.report,month:0 @@ -4567,12 +4841,12 @@ msgstr "Mjesec" #: code:addons/account/account.py:668 #, python-format msgid "You cannot change the code of account which contains journal items!" -msgstr "" +msgstr "Ne možete mijenjati šifru konta koji ima stavke dnevnika!" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Sekvenca faktura dobavljača" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4582,28 +4856,30 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" +"Nije moguće pronaći kontni pan, trebate kreirati jedan iz menija Postavke\\" +"Konfiguracija\\Računovodstvo." #. module: account #: field:account.entries.report,product_uom_id:0 #: view:analytic.entries.report:0 #: field:analytic.entries.report,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Jedinica mjere proizvoda" #. module: account #: field:res.company,paypal_account:0 msgid "Paypal Account" -msgstr "" +msgstr "PayPal račun" #. module: account #: view:account.entries.report:0 msgid "Acc.Type" -msgstr "" +msgstr "Tip konta" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Banka i Čekovi" #. module: account #: field:account.account.template,note:0 @@ -4613,14 +4889,14 @@ msgstr "Bilješka" #. module: account #: selection:account.financial.report,sign:0 msgid "Reverse balance sign" -msgstr "" +msgstr "Obrnuti predznak salda" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "" +msgstr "Bilans (konto obveza)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4631,24 +4907,25 @@ msgstr "Ostaviti prazno da se koristi današnji datum" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Subtotal zatvaranja" #. module: account #: field:account.tax,base_code_id:0 msgid "Account Base Code" -msgstr "" +msgstr "Porezna grupa osnovice" #. module: account #: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." -msgstr "" +msgstr "Morate predvidjeti konto za otpis / kursnu razliku." #. module: account #: help:res.company,paypal_account:0 msgid "Paypal username (usually email) for receiving online payments." msgstr "" +"PAyPal korisničko ima (obično e-mail adresa) za primanje online uplata." #. module: account #: selection:account.aged.trial.balance,target_move:0 @@ -4680,12 +4957,12 @@ msgstr "Raspon mjeseci" #. module: account #: help:account.analytic.balance,empty_acc:0 msgid "Check if you want to display Accounts with 0 balance too." -msgstr "" +msgstr "Označite ako želite prikazivati konta sa saldom 0 također." #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Zatvaranje stavaka početnog stanja" #. module: account #. openerp-web @@ -4697,12 +4974,12 @@ msgstr "" #. module: account #: selection:account.move.line,state:0 msgid "Balanced" -msgstr "" +msgstr "Izravnato" #. module: account #: model:process.node,note:account.process_node_importinvoice0 msgid "Statement from invoice or payment" -msgstr "" +msgstr "Izvod iz faktura ili plaćanja" #. module: account #: code:addons/account/installer.py:115 @@ -4711,26 +4988,27 @@ msgid "" "There is currently no company without chart of account. The wizard will " "therefore not be executed." msgstr "" +"Trenutno nema kompanije bez kontnog plana. Čarobnjak se neće pokretati." #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart msgid "Set Your Accounting Options" -msgstr "" +msgstr "Posdesite opcije računovodtsva" #. module: account #: model:ir.model,name:account.model_account_chart msgid "Account chart" -msgstr "" +msgstr "Kontni plan" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "Referenca plaćanja" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Main Title 1 (bold, underlined)" -msgstr "" +msgstr "Glavni naslov 1 (podebljan, podvučeni)" #. module: account #: report:account.analytic.account.balance:0 @@ -4741,28 +5019,28 @@ msgstr "Naziv konta" #. module: account #: help:account.fiscalyear.close,report_name:0 msgid "Give name of the new entries" -msgstr "" +msgstr "Nazovi nove stavke" #. module: account #: model:ir.model,name:account.model_account_invoice_report msgid "Invoices Statistics" -msgstr "" +msgstr "Statistika faktura" #. module: account #: field:account.account,exchange_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Kurs" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 msgid "Bank statements are entered in the system." -msgstr "" +msgstr "Izvodi su unoseni u sistem." #. module: account #: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" -msgstr "" +msgstr "Zatvaranje s otpisom." #. module: account #: view:account.account.template:0 @@ -4773,17 +5051,17 @@ msgstr "Predložak računa" #. module: account #: view:account.bank.statement:0 msgid "Closing Balance" -msgstr "" +msgstr "Završni bilans" #. module: account #: field:account.chart.template,visible:0 msgid "Can be Visible?" -msgstr "" +msgstr "Može biti vidljivo?" #. module: account #: model:ir.model,name:account.model_account_journal_select msgid "Account Journal Select" -msgstr "" +msgstr "Izbor dnevnika" #. module: account #: view:account.tax.template:0 @@ -4794,27 +5072,27 @@ msgstr "Knjižna odobrenja" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "Stavke dnevnika za zatvaranje" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "Predlošci poreza" #. module: account #: sql_constraint:account.period:0 msgid "The name of the period must be unique per company!" -msgstr "" +msgstr "Naziv perioda mora biti jedinstven unutar kompanije" #. module: account #: help:wizard.multi.charts.accounts,currency_id:0 msgid "Currency as per company's country." -msgstr "" +msgstr "Valuta prema državi kompanije." #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "Izračun poreza" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4829,6 +5107,9 @@ msgid "" "you want to generate accounts of this template only when loading its child " "template." msgstr "" +"Isključite ovo ako ne želite da se ovaj predložak aktivno koristi u " +"čarobnjaku koji generiše kontni plan iz predložaka. Ovo je vrlo korisno kada " +"želite generisati konta ovog predloška samo iz podređenog predloška." #. module: account #: view:account.use.model:0 @@ -4847,6 +5128,8 @@ msgid "" "Error!\n" "You cannot create an account which has parent account of different company." msgstr "" +"Greška!\n" +"Ne možete kreirati konto koji ima nadređeni konto druge komapnije." #. module: account #: code:addons/account/account_invoice.py:658 @@ -4857,11 +5140,15 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" +"Nema dnevnika tipa %s za ovu kompaniju.\n" +"\n" +"Možete kreirati jedan iz menija: \n" +"Konfiguracija\\Dnevnici\\Dnevnici." #. module: account #: report:account.vat.declaration:0 msgid "Based On" -msgstr "" +msgstr "Na osnovu" #. module: account #: code:addons/account/account.py:3204 @@ -4872,17 +5159,17 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report msgid "Account Analytic Cost Ledger For Journal Report" -msgstr "" +msgstr "Analitička knjiga troškova za dnevnički izvještaj" #. module: account #: model:ir.actions.act_window,name:account.action_model_form msgid "Recurring Models" -msgstr "" +msgstr "Ponavljajući modeli" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Podređeni porezi" #. module: account #: xsl:account.transfer:0 @@ -4897,12 +5184,12 @@ msgstr "Tip kontrola" #. module: account #: help:account.journal,default_credit_account_id:0 msgid "It acts as a default account for credit amount" -msgstr "" +msgstr "Zadani konto za potražni iznos" #. module: account #: view:cash.box.out:0 msgid "Describe why you take money from the cash register:" -msgstr "" +msgstr "Opišite kad uzimate novac iz blagajne :" #. module: account #: selection:account.invoice,state:0 @@ -4914,12 +5201,12 @@ msgstr "Otkazano" #. module: account #: help:account.config.settings,group_proforma_invoices:0 msgid "Allows you to put invoices in pro-forma state." -msgstr "" +msgstr "Dozvoljava izradu ProForma faktura" #. module: account #: view:account.journal:0 msgid "Unit Of Currency Definition" -msgstr "" +msgstr "Definicija jedinice valute" #. module: account #: help:account.partner.ledger,amount_currency:0 @@ -4928,24 +5215,26 @@ msgid "" "It adds the currency column on report if the currency differs from the " "company currency." msgstr "" +"Dodaje kolonu valute na izvještaj ukoliko se valuta razlikuje od glavne " +"valute kompanije." #. module: account #: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" -msgstr "" +msgstr "Porezi nabave %.2f%%" #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate #: model:ir.ui.menu,name:account.menu_generate_subscription msgid "Generate Entries" -msgstr "" +msgstr "Generiši stavke" #. module: account #: help:account.vat.declaration,chart_tax_id:0 msgid "Select Charts of Taxes" -msgstr "" +msgstr "Odabir stabla poreza" #. module: account #: view:account.fiscal.position:0 @@ -4957,27 +5246,27 @@ msgstr "Mapiranje konta" #. module: account #: view:account.bank.statement:0 msgid "Confirmed" -msgstr "" +msgstr "Potvrđen" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "" +msgstr "Otkazana faktura" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "Moje fakture" #. module: account #: selection:account.bank.statement,state:0 msgid "New" -msgstr "" +msgstr "Novi" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "Porez prodaje" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -4988,7 +5277,7 @@ msgstr "Šifra poreza povrata" #. module: account #: view:account.invoice:0 msgid "Invoice " -msgstr "" +msgstr "Faktura " #. module: account #: field:account.chart.template,property_account_income:0 @@ -5002,12 +5291,15 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Kada se kreira razdoblje dnevnika. Status je 'U pripremi'. Ako je izvještaj " +"ispisan postaje 'Ispisan' status. Kada su sve transakcije završene, prelazi " +"u 'Završen' status." #. module: account #: code:addons/account/account.py:3205 #, python-format msgid "MISC" -msgstr "" +msgstr "RAZNO" #. module: account #: field:account.fiscalyear.close,fy2_id:0 @@ -5030,13 +5322,13 @@ msgstr "Fakture" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 msgid "Check this box if this company is a legal entity." -msgstr "" +msgstr "Označite ovdje ako je ova kompanija zasebna pravna osoba" #. module: account #: model:account.account.type,name:account.conf_account_type_chk #: selection:account.bank.accounts.wizard,account_type:0 msgid "Check" -msgstr "" +msgstr "Ček" #. module: account #: view:account.aged.trial.balance:0 @@ -5076,17 +5368,17 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "ili" #. module: account #: view:account.invoice.report:0 msgid "Invoiced" -msgstr "" +msgstr "Fakturisano" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "" +msgstr "Knjiženi zapisi dnevnika" #. module: account #: view:account.use.model:0 @@ -5100,11 +5392,14 @@ msgid "" "account if this is a Customer Invoice or Supplier Refund, otherwise a " "Partner bank account number." msgstr "" +"Broj bankovnog računa na koji faktura treba biti uplaćena. Broj računa " +"kompanije ukoliko je ovo faktura kupca ili povrat od dobavljača, u suprotnom " +"broj računa partnera ." #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 msgid "Partners Reconciled Today" -msgstr "" +msgstr "Danas zatvoreni partneri" #. module: account #: help:account.invoice.tax,tax_code_id:0 @@ -5114,7 +5409,7 @@ msgstr "Poreska osnovica za poreznu deklaraciju." #. module: account #: view:account.addtmpl.wizard:0 msgid "Add" -msgstr "" +msgstr "Dodaj" #. module: account #: selection:account.invoice,state:0 @@ -5136,7 +5431,7 @@ msgstr "Bankovni izvod korišten za bankovno usklađivanje" #. module: account #: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 msgid "Draft invoices are validated. " -msgstr "" +msgstr "Fakture u pripremi su potvrđene. " #. module: account #: help:account.tax,account_collected_id:0 @@ -5144,22 +5439,24 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." msgstr "" +"Postavite zadani konto za stavke poreza na fakturama. Ostavite prazno za " +"konto troškova." #. module: account #: code:addons/account/account.py:890 #, python-format msgid "Opening Period" -msgstr "" +msgstr "Početni period" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "" +msgstr "Zapisi dnevnika za pregledati" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round Globally" -msgstr "" +msgstr "Zaokruži globalno" #. module: account #: view:account.bank.statement:0 @@ -5179,6 +5476,8 @@ msgid "" "Please verify the price of the invoice !\n" "The encoded total does not match the computed total." msgstr "" +"Molimo provjerite iznos fakture!\n" +"Unešeni iznos ne odgovara izračunatoj sumi." #. module: account #: field:account.account,active:0 @@ -5194,7 +5493,7 @@ msgstr "Aktivan" #: view:account.bank.statement:0 #: field:account.journal,cash_control:0 msgid "Cash Control" -msgstr "" +msgstr "Kontrola gotovine" #. module: account #: field:account.analytic.balance,date2:0 @@ -5208,12 +5507,12 @@ msgstr "Kraj razdoblja" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 msgid "Payment of invoices" -msgstr "" +msgstr "Plaćanje faktura" #. module: account #: sql_constraint:account.invoice:0 msgid "Invoice Number must be unique per Company!" -msgstr "" +msgstr "Broj fakture se ne smije ponavljati za jednu organizaciju." #. module: account #: model:ir.actions.act_window,name:account.action_account_receivable_graph @@ -5224,12 +5523,12 @@ msgstr "Saldo po vrsti konta" #: code:addons/account/account_cash_statement.py:301 #, python-format msgid "There is no %s Account on the journal %s." -msgstr "" +msgstr "Nema %s konta na dnevniku %s." #. module: account #: model:res.groups,name:account.group_account_user msgid "Accountant" -msgstr "" +msgstr "Računovođa" #. module: account #: model:ir.actions.act_window,help:account.action_account_treasury_report_all @@ -5237,16 +5536,18 @@ msgid "" "From this view, have an analysis of your treasury. It sums the balance of " "every accounting entries made on liquidity accounts per period." msgstr "" +"Iz ovog pogleda imate analizu vaših financija. Zbraja saldo svakog unosa na " +"kontima likvidnosti po periodu." #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "Menadžer financija" #. module: account #: field:account.journal,group_invoice_lines:0 msgid "Group Invoice Lines" -msgstr "" +msgstr "Grupiši stavke fakture" #. module: account #: view:account.automatic.reconcile:0 @@ -5262,12 +5563,12 @@ msgstr "Kretanja" #: field:account.bank.statement,details_ids:0 #: view:account.journal:0 msgid "CashBox Lines" -msgstr "" +msgstr "Stavke blagajne" #. module: account #: model:ir.model,name:account.model_account_vat_declaration msgid "Account Vat Declaration" -msgstr "" +msgstr "Poreska prijava" #. module: account #: help:account.config.settings,module_account_accountant:0 @@ -5275,16 +5576,18 @@ msgid "" "If you do not check this box, you will be able to do invoicing & payments, " "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Ukoliko ne označite ovo polje, možete izrađivati račune i vršiti plaćanja, " +"ali bez računovodstva (dnevnici, kontni plan, ...)" #. module: account #: view:account.period:0 msgid "To Close" -msgstr "" +msgstr "Za zatvoriti" #. module: account #: field:account.treasury.report,date:0 msgid "Beginning of Period Date" -msgstr "" +msgstr "Datum početka perioda" #. module: account #: model:ir.ui.menu,name:account.account_template_folder @@ -5352,12 +5655,14 @@ msgstr "Cilj prijenosa" msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" msgstr "" +"Kretanje ne može biti brisano ako je povezano sa fakturom. (Faktura: %s -" +"Kretanje br:%s)" #. module: account #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "" +msgstr "Brojevi otvaranja" #. module: account #: field:account.subscription,period_type:0 @@ -5396,13 +5701,16 @@ msgid "" "encode the sale and purchase rates or choose from list of taxes. This last " "choice assumes that the set of tax defined on this template is complete" msgstr "" +"Ovaj izbor Vam pomaže odlučiti da li želite korisniku predložiti da unosi " +"stope poreza kod nabave i prodaje ili da odabere iz popisa poreza. Ovo drugo " +"podrazumijeva da je set poreza na ovom predlošku potpun." #. module: account #: view:account.financial.report:0 #: field:account.financial.report,children_ids:0 #: model:ir.model,name:account.model_account_financial_report msgid "Account Report" -msgstr "" +msgstr "Izvještaj konta" #. module: account #: field:account.entries.report,year:0 @@ -5415,12 +5723,12 @@ msgstr "" #: view:report.account_type.sales:0 #: field:report.account_type.sales,name:0 msgid "Year" -msgstr "" +msgstr "Godina" #. module: account #: help:account.invoice,sent:0 msgid "It indicates that the invoice has been sent." -msgstr "" +msgstr "Označava da je faktura poslana" #. module: account #: field:account.tax.template,description:0 @@ -5435,11 +5743,14 @@ msgid "" "Put a sequence in the journal definition for automatic numbering or create a " "sequence manually for this piece." msgstr "" +"Nije moguće kreirati automatsku sekvencu za ovaj dio.\n" +"Stavite sekvencu u definiciju dnevnika za automatsku dodjelu broja ili " +"kreirate sekvencu ručno za ovaj dio." #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "" +msgstr "ProForma faktura " #. module: account #: selection:account.subscription,period_type:0 @@ -5450,7 +5761,7 @@ msgstr "Mjesec" #: view:account.move.line:0 #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "" +msgstr "Sljedeći partner za zatvaranje" #. module: account #: field:account.invoice.tax,account_id:0 @@ -5463,24 +5774,24 @@ msgstr "Porezno konto" #: model:ir.actions.act_window,name:account.action_account_report_bs #: model:ir.ui.menu,name:account.menu_account_report_bs msgid "Balance Sheet" -msgstr "" +msgstr "Bilans stanja" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "" +msgstr "Dobit i gubitak (konto prihoda)" #. module: account #: field:account.journal,allow_date:0 msgid "Check Date in Period" -msgstr "" +msgstr "Provjerite datum u periodu" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports msgid "Accounting Reports" -msgstr "" +msgstr "Računovodstveni izvještaji" #. module: account #: field:account.move,line_id:0 @@ -5492,7 +5803,7 @@ msgstr "Unosi" #. module: account #: view:account.entries.report:0 msgid "This Period" -msgstr "" +msgstr "Ovaj period" #. module: account #: view:account.tax.template:0 @@ -5505,6 +5816,7 @@ msgstr "Kod za izračunavanje (ako je tip=Python kod)" msgid "" "Cannot find a chart of accounts for this company, you should create one." msgstr "" +"Nije moguće pronaći kontni plan za ovu kompaniju, trebali bi napraviti jedan." #. module: account #: selection:account.analytic.journal,type:0 @@ -5521,7 +5833,7 @@ msgstr "Prodaja" #. module: account #: model:ir.model,name:account.model_account_automatic_reconcile msgid "Automatic Reconcile" -msgstr "" +msgstr "Automatsko zatvaranje" #. module: account #: view:account.analytic.line:0 @@ -5546,7 +5858,7 @@ msgstr "Iznos" #: code:addons/account/wizard/account_fiscalyear_close.py:41 #, python-format msgid "End of Fiscal Year Entry" -msgstr "" +msgstr "Zapisi zatvaranja fiskalne godine" #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -5556,7 +5868,7 @@ msgstr "" #: model:process.transition,name:account.process_transition_suppliervalidentries0 #: model:process.transition,name:account.process_transition_validentries0 msgid "Validation" -msgstr "" +msgstr "Odobrenje" #. module: account #: help:account.bank.statement,message_summary:0 @@ -5565,6 +5877,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sadrži sažetak konverzacije (broj poruka,..). Ovaj sažetak je u html formatu " +"da bi mogao biti ubačen u kanban pogled." #. module: account #: field:account.tax,child_depend:0 @@ -5596,11 +5910,14 @@ msgid "" "payment term!\n" "Please define partner on it!" msgstr "" +"Datum dospijeća stavke unosa generiše se od strane modela linije '%s', te se " +"temelji se na roku plaćanja partnera! \n" +"Molimo definišite partnera!" #. module: account #: field:account.tax.code,sign:0 msgid "Coefficent for parent" -msgstr "" +msgstr "Koeficijent za nadređenog" #. module: account #: report:account.partner.balance:0 @@ -5610,12 +5927,12 @@ msgstr "Naziv (Konta/Partnera)" #. module: account #: field:account.partner.reconcile.process,progress:0 msgid "Progress" -msgstr "" +msgstr "Napredak" #. module: account #: field:wizard.multi.charts.accounts,bank_accounts_id:0 msgid "Cash and Banks" -msgstr "" +msgstr "Banka i blagajna" #. module: account #: model:ir.model,name:account.model_account_installer @@ -5625,13 +5942,13 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Recompute taxes and total" -msgstr "" +msgstr "Ponovo izračunaj poreze i ukupni iznos" #. module: account #: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." -msgstr "" +msgstr "Ne možete mijenjati/brisati dnevnik sa unosima za ovaj period." #. module: account #: field:account.tax.template,include_base_amount:0 @@ -5641,7 +5958,7 @@ msgstr "Uključi u osnovicu iznosa" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Broj fakture dobavljača" #. module: account #: help:account.payment.term.line,days:0 @@ -5655,13 +5972,14 @@ msgstr "" #. module: account #: view:account.payment.term.line:0 msgid "Amount Computation" -msgstr "" +msgstr "Izračun iznosa" #. module: account #: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" +"Ne možete dodavati/mijenjati unose u zatvorenom periodu %s dnevnika %s." #. module: account #: view:account.journal:0 @@ -5686,12 +6004,12 @@ msgstr "Početak razdoblja" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 msgid "Asset View" -msgstr "" +msgstr "Pogled aktive" #. module: account #: model:ir.model,name:account.model_account_common_account_report msgid "Account Common Account Report" -msgstr "" +msgstr "Izvještaj za uobičajena konta" #. module: account #: view:account.analytic.account:0 @@ -5719,12 +6037,15 @@ msgid "" "that you should have your last line with the type 'Balance' to ensure that " "the whole amount will be treated." msgstr "" +"Odaberite vrstu ovjere povezanu sa ovim načinom plaćanja. Imajte na umu da " +"vaša zadnja stavka mora biti tip 'saldo' kako bi osigurali da će cijeli " +"iznos biti zahvaćen." #. module: account #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "" +msgstr "Uključi početna stanja" #. module: account #: view:account.invoice.tax:0 @@ -5759,18 +6080,18 @@ msgstr "Dnevnik knjiženja završetka godine" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Povrat u pripremi " #. module: account #: view:cash.box.in:0 msgid "Fill in this form if you put money in the cash register:" -msgstr "" +msgstr "Ispunite ovaj obrazac za polaganje novca u blagajnu:" #. module: account #: view:account.payment.term.line:0 #: field:account.payment.term.line,value_amount:0 msgid "Amount To Pay" -msgstr "" +msgstr "Iznos za uplatu" #. module: account #: help:account.partner.reconcile.process,to_reconcile:0 @@ -5779,6 +6100,9 @@ msgid "" "something to reconcile or not. This figure already count the current partner " "as reconciled." msgstr "" +"Ovo su preostali partneri za koje biste trebali provjeriti da li je ostalo " +"nešto za zatvaranje ili ne. Ova brojka već uključuje trenutnog partnera kao " +"zatvorenog." #. module: account #: view:account.subscription.line:0 @@ -5788,7 +6112,7 @@ msgstr "Retci pretplate" #. module: account #: field:account.entries.report,quantity:0 msgid "Products Quantity" -msgstr "" +msgstr "Količine proizvoda" #. module: account #: view:account.entries.report:0 @@ -5797,31 +6121,31 @@ msgstr "" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Unposted" -msgstr "" +msgstr "Neknjiženo" #. module: account #: view:account.change.currency:0 #: model:ir.actions.act_window,name:account.action_account_change_currency #: model:ir.model,name:account.model_account_change_currency msgid "Change Currency" -msgstr "" +msgstr "Promjeni valutu" #. module: account #: model:process.node,note:account.process_node_accountingentries0 #: model:process.node,note:account.process_node_supplieraccountingentries0 msgid "Accounting entries." -msgstr "" +msgstr "Računovodstveni unosi." #. module: account #: view:account.invoice:0 msgid "Payment Date" -msgstr "" +msgstr "Datum plaćanja" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Stavke početnog stanja blagajne" #. module: account #: view:account.analytic.account:0 @@ -5833,7 +6157,7 @@ msgstr "Analitički računi" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "Računi i povrati kupaca" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5846,7 +6170,7 @@ msgstr "Valuta iznosa" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "" +msgstr "Zaokruži po liniji" #. module: account #: report:account.analytic.account.balance:0 @@ -5866,17 +6190,17 @@ msgstr "Količina" #. module: account #: view:account.move.line:0 msgid "Number (Move)" -msgstr "" +msgstr "Broj (kretanja)" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Normal Text" -msgstr "" +msgstr "Običan tekst" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 msgid "Payment entries are the second input of the reconciliation." -msgstr "" +msgstr "Stavke plaćanja su drugi unos zatvaranja." #. module: account #: help:res.partner,property_supplier_payment_term:0 @@ -5884,6 +6208,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Ovaj će se način plaćanja koristiti kao predodređen za nabavne narudžbe i " +"fakture dobavljača." #. module: account #: help:account.automatic.reconcile,power:0 @@ -5891,12 +6217,14 @@ msgid "" "Number of partial amounts that can be combined to find a balance point can " "be chosen as the power of the automatic reconciliation" msgstr "" +"Višekratnik automatskog zatvaranja je broj pojedinačnih iznosa koji će se " +"kombinirati kod traženja odgovarajućeg iznosa" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:56 #, python-format msgid "You must set a period length greater than 0." -msgstr "" +msgstr "Morate postaviti dužinu perioda veću od 0" #. module: account #: view:account.fiscal.position.template:0 @@ -5907,7 +6235,7 @@ msgstr "Predložak fiskalne pozicije" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Povrat u pripremi" #. module: account #: view:account.analytic.chart:0 @@ -5929,12 +6257,12 @@ msgstr "S valutom" #. module: account #: view:account.bank.statement:0 msgid "Open CashBox" -msgstr "" +msgstr "Otvori blagajnu" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Automatic formatting" -msgstr "" +msgstr "Automatsko oblikovanje" #. module: account #: view:account.move.line.reconcile:0 @@ -5944,7 +6272,7 @@ msgstr "Uskladi s otpisom" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." -msgstr "" +msgstr "Ne možete kreirati stavke dnevnika na kontu koji je tipa pogled." #. module: account #: selection:account.payment.term.line,value:0 @@ -5957,23 +6285,24 @@ msgstr "Fiksni iznos" #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" +"Nije oguće mijenjanje poreza, morate obrisati i ponovo unesti stavke." #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile msgid "Account Automatic Reconcile" -msgstr "" +msgstr "Automatsko zatvaranje" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "" +msgstr "Stavka dnevnika" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "" +msgstr "Kreiraj početno stanje" #. module: account #: help:account.tax,type:0 @@ -5983,7 +6312,7 @@ msgstr "Način izračuna iznosa poreza" #. module: account #: view:account.payment.term.line:0 msgid "Due Date Computation" -msgstr "" +msgstr "Izračun datuma dospjeća" #. module: account #: field:report.invoice.created,create_date:0 @@ -5996,7 +6325,7 @@ msgstr "Datum unosa" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_form #: model:ir.ui.menu,name:account.account_def_analytic_journal msgid "Analytic Journals" -msgstr "" +msgstr "Analitički dnevnici" #. module: account #: field:account.account,child_id:0 @@ -6007,7 +6336,7 @@ msgstr "Podkonta" #: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" -msgstr "" +msgstr "Naziv knjiženja (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 @@ -6019,7 +6348,7 @@ msgstr "Otpis" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "" +msgstr "zapisi" #. module: account #: field:res.partner,debit:0 @@ -6049,7 +6378,7 @@ msgstr "Dobavljač" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "March" -msgstr "" +msgstr "Mart" #. module: account #: report:account.analytic.account.journal:0 @@ -6060,7 +6389,7 @@ msgstr "Broj računa" #: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" -msgstr "" +msgstr "Slobodna vezna oznaka" #. module: account #: selection:account.aged.trial.balance,result_selection:0 @@ -6082,13 +6411,13 @@ msgstr "Fiskalna pozicija" #. module: account #: view:account.config.settings:0 msgid "Select Company" -msgstr "" +msgstr "Odaberite kompaniju" #. module: account #: model:ir.actions.act_window,name:account.action_account_state_open #: model:ir.model,name:account.model_account_state_open msgid "Account State Open" -msgstr "" +msgstr "Stanje konta otvoren" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -6108,6 +6437,9 @@ msgid "" "document shows your debit and credit taking in consideration some criteria " "you can choose by using the search tool." msgstr "" +"Iz ovog pogleda imate analizu vaših različitih financijskih konta. Dokument " +"pokazuje vaše dugove i potražne stavke uzimajući u obzir neke kriterijume " +"koristeći alat pretrage." #. module: account #: help:account.partner.reconcile.process,progress:0 @@ -6115,6 +6447,8 @@ msgid "" "Shows you the progress made today on the reconciliation process. Given by \n" "Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" msgstr "" +"Prikazuje Vaš današnji napredak u postupku zatvaranja. Dati po\n" +"partneri zatvoreni danas\\ (preostali partneri + partneri zatvoreni danas)" #. module: account #: field:account.invoice,period_id:0 @@ -6141,17 +6475,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikni za dodavanje konta.\n" +"

\n" +" Konto je dio glavne knjige i dozvoljava vašoj kompaniji\n" +" evidenciju svih vrsta dugovnih i potražnih transakcija.\n" +" Kompanije podnose svoje godišnje izvještaje po kontima u\n" +" dva glavna dijela: bilans stanja i račun dobiti i gubitka.\n" +" Godišnji izvještaj je zakonska obveza.\n" +"

\n" +" " #. module: account #: view:account.invoice.report:0 #: field:account.invoice.report,nbr:0 msgid "# of Lines" -msgstr "" +msgstr "# Linija" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(ažuriraj)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6170,13 +6514,13 @@ msgstr "" #: field:accounting.report,filter:0 #: field:accounting.report,filter_cmp:0 msgid "Filter by" -msgstr "" +msgstr "Filtriraj po" #. module: account #: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" -msgstr "" +msgstr "Imate pogrešan izraz \"%(...)s\" u vašem modelu !" #. module: account #: view:account.tax.template:0 @@ -6186,12 +6530,12 @@ msgstr "Kod za izračun cijena sa uključenim porezima" #. module: account #: help:account.bank.statement,balance_end:0 msgid "Balance as calculated based on Starting Balance and transaction lines" -msgstr "" +msgstr "Saldo se računa na bazi početnog stanja i stavki transakcija." #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "Konto gubitka" #. module: account #: field:account.tax,account_collected_id:0 @@ -6203,7 +6547,7 @@ msgstr "Porezni račun fakture" #: model:ir.actions.act_window,name:account.action_account_general_journal #: model:ir.model,name:account.model_account_general_journal msgid "Account General Journal" -msgstr "" +msgstr "Glavna knjiga" #. module: account #: help:account.move,state:0 @@ -6214,6 +6558,11 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" +"Ručno kreirani dnevnički zapisi su obično u statusu 'neknjižen', ali možete " +"postaviti opciju da preskače taj status na povezanom dnevniku. U tom " +"slučaju, ponašati će se kao dnevnički zapisi koje sistem kreira automatski " +"na potvrdi dokumenata (fakture, izvodi ...) i biti će kreirane u statusu " +"'knjiženo'." #. module: account #: field:account.payment.term.line,days:0 @@ -6227,16 +6576,18 @@ msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" +"Ne možete knjižiti ovaj dnevnički zapis jer konto \"%s\" ne pripada kontnom " +"planu \"%s\"." #. module: account #: view:account.financial.report:0 msgid "Report" -msgstr "" +msgstr "Izvještaj" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template msgid "Template Tax Fiscal Position" -msgstr "" +msgstr "Predložak poreza" #. module: account #: help:account.tax,name:0 @@ -6265,7 +6616,7 @@ msgstr "Povrati kupca" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Inozemni saldo" #. module: account #: field:account.journal.period,name:0 @@ -6275,22 +6626,22 @@ msgstr "Knjiženja - naziv perioda" #. module: account #: field:account.invoice.tax,factor_base:0 msgid "Multipication factor for Base code" -msgstr "" +msgstr "Koeficijent za poreznu grupu osnovice" #. module: account #: help:account.journal,company_id:0 msgid "Company related to this journal" -msgstr "" +msgstr "Kompanija za koju se vodi ovaj dnevnik" #. module: account #: help:account.config.settings,group_multi_currency:0 msgid "Allows you multi currency environment" -msgstr "" +msgstr "Dozvoljava korištenje više valuta" #. module: account #: view:account.subscription:0 msgid "Running Subscription" -msgstr "" +msgstr "Pretplata u toku" #. module: account #: report:account.invoice:0 @@ -6302,7 +6653,7 @@ msgstr "Napomena za fiskalnu poziciju" #: model:ir.actions.act_window,name:account.action_analytic_entries_report #: model:ir.ui.menu,name:account.menu_action_analytic_entries_report msgid "Analytic Entries Analysis" -msgstr "" +msgstr "Analiza analitičkih stavki" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -6315,6 +6666,8 @@ msgid "" "This journal will be created automatically for this bank account when you " "save the record" msgstr "" +"Ovaj dnevnik će biti kreiran automatski za ovaj bankovni račun kada snimite " +"zapis." #. module: account #: view:account.analytic.line:0 @@ -6330,7 +6683,7 @@ msgstr "Poruka o dospjelim plaćanjima." #. module: account #: field:account.entries.report,date_created:0 msgid "Date Created" -msgstr "" +msgstr "Datum Kreiranja" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form @@ -6343,6 +6696,7 @@ msgid "" "As soon as the reconciliation is done, the invoice's state turns to “done” " "(i.e. paid) in the system." msgstr "" +"Čim je obavljeno zatvaranje, stanje fakture prelazi u \"Gotovo\" (plaćen)." #. module: account #: view:account.chart.template:0 @@ -6359,12 +6713,12 @@ msgstr "" #: view:account.analytic.line:0 #: model:ir.model,name:account.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Analitička stavka" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Models" -msgstr "" +msgstr "Modeli" #. module: account #: code:addons/account/account_invoice.py:1124 @@ -6373,6 +6727,8 @@ msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Ne možete otkazati fakturu koja je djelomićno plaćena. Morate prvo otvoriti " +"stavke zatvaranja." #. module: account #: field:product.template,taxes_id:0 @@ -6387,12 +6743,12 @@ msgstr "Ovo je model za ponavljajuće računovodstvene unose" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "" +msgstr "Porez prodaje(%)" #. module: account #: view:account.tax.code:0 msgid "Reporting Configuration" -msgstr "" +msgstr "Postavke izvještaja" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree4 @@ -6407,6 +6763,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za unos povrata dobavljaču.\n" +"

\n" +" Umjesto ručnog kreiranja povrata dobavljaču, možete " +"generisati\n" +" povrate i zatvarati ih direktno iz povezane fakture " +"dobavljača.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6429,36 +6794,39 @@ msgid "" "choice assumes that the set of tax defined for the chosen template is " "complete" msgstr "" +"Odaberite da li želite predložiti korisniku da unosi prodajni i nabavni " +"porez ili koristi uobičajena m2o polja. Zadnji izbor pretpostavlja da je set " +"poreza definisan u odabranom predlošku potpun." #. module: account #: report:account.vat.declaration:0 msgid "Tax Statement" -msgstr "" +msgstr "Prijava poreza" #. module: account #: model:ir.model,name:account.model_res_company msgid "Companies" -msgstr "" +msgstr "Kompanije" #. module: account #: view:account.invoice.report:0 msgid "Open and Paid Invoices" -msgstr "" +msgstr "Otvorene i plaćene fakture" #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children flat" -msgstr "" +msgstr "Prikaži podređene bez grupisanja" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "Banka i Gotovina" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 msgid "Select a fiscal year to close" -msgstr "" +msgstr "Odaberite fiskalnu godinu za zatvaranje" #. module: account #: help:account.chart.template,tax_template_ids:0 @@ -6485,7 +6853,7 @@ msgstr "Fiskalna godina" #. module: account #: view:account.move.reconcile:0 msgid "Partial Reconcile Entries" -msgstr "" +msgstr "Djelomično zatvorene stavke" #. module: account #: view:account.aged.trial.balance:0 @@ -6537,13 +6905,14 @@ msgstr "Potraživanja" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "" +msgstr "Ne možete kreirati stavke dnevnika na zatvorenom kontu." #. module: account #: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" +"Kompanija iz stavke dnevnika zapisa i kompanija iz fakture se ne poklapaju." #. module: account #: view:account.invoice:0 @@ -6558,13 +6927,13 @@ msgstr "Zadano konto potraživanja" #. module: account #: help:account.analytic.line,currency_id:0 msgid "The related account currency if not equal to the company one." -msgstr "" +msgstr "Povezani konto valute ako nije jednak onom od kompanije." #. module: account #: code:addons/account/installer.py:69 #, python-format msgid "Custom" -msgstr "" +msgstr "Prilagođeno" #. module: account #: view:account.analytic.account:0 @@ -6574,7 +6943,7 @@ msgstr "" #. module: account #: field:account.journal,cashbox_line_ids:0 msgid "CashBox" -msgstr "" +msgstr "Blagajna" #. module: account #: model:account.account.type,name:account.account_type_cash_equity @@ -6585,13 +6954,13 @@ msgstr "Dionica" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "" +msgstr "Konto internog prijenosa" #. module: account #: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" -msgstr "" +msgstr "Molimo provjerite da je polje 'dnevnik' postavljeno na izvodu" #. module: account #: selection:account.tax,type:0 @@ -6601,12 +6970,12 @@ msgstr "Postotak" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "" +msgstr "Zaokruži Globalno" #. module: account #: selection:account.report.general.ledger,sortby:0 msgid "Journal & Partner" -msgstr "" +msgstr "Dnevnik i Partner" #. module: account #: field:account.automatic.reconcile,power:0 @@ -6617,7 +6986,7 @@ msgstr "Eksponent" #: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." -msgstr "" +msgstr "Nije moguće generisati nekorištenu šifru dnevnika." #. module: account #: view:project.account.analytic.line:0 @@ -6633,7 +7002,7 @@ msgstr "Broj fakture" #. module: account #: field:account.bank.statement,difference:0 msgid "Difference" -msgstr "" +msgstr "Razlika" #. module: account #: help:account.tax,include_base_amount:0 @@ -6641,11 +7010,12 @@ msgid "" "Indicates if the amount of tax must be included in the base amount for the " "computation of the next taxes" msgstr "" +"Iznos poreza treba uključiti u osnovicu prilikom izračuna sljedećih poreza." #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile msgid "Reconciliation: Go to Next Partner" -msgstr "" +msgstr "Zatvaranje: Idi na sljedećeg partnera" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance @@ -6667,6 +7037,10 @@ msgid "" "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." msgstr "" +"Ako koristiti uslove plaćanja, datum dospijeća će biti automatski izračunat " +"u trenutku nastanka knjiženja. Uslovi plaćanja mogu računati nekoliko datuma " +"dospijeća, npr. 50% odmah i 50% za mjesec dana, ali ako želite prisiliti " +"datum dopsijeća, osigurajte da uslov plaćanja nije postavljen na fakturi." #. module: account #: code:addons/account/account.py:414 @@ -6675,6 +7049,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Nije definisan period početnog/završnog stanja. Molimo napravite jedan da bi " +"postavili početni saldo." #. module: account #: help:account.tax.template,sequence:0 @@ -6702,30 +7078,30 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "User Error!" -msgstr "" +msgstr "Greška Korisnika!" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "Odbaci" #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 #: view:account.journal:0 msgid "Liquidity" -msgstr "" +msgstr "Likvidnost" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "" +msgstr "Stavke analitičkog dnevnika" #. module: account #: field:account.config.settings,has_default_company:0 msgid "Has default company" -msgstr "" +msgstr "Ima zadanu kompaniju" #. module: account #: view:account.fiscalyear.close:0 @@ -6734,11 +7110,13 @@ msgid "" "year. Note that you can run this wizard many times for the same fiscal year: " "it will simply replace the old opening entries with the new ones." msgstr "" +"Ovaj čarobnjak će kreirati dnevničke zapise početnog stanja u novoj godini. " +"Najprije će obrisati postojeća knjiženja početnog stanja i kreirati novo." #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash msgid "Bank and Cash" -msgstr "" +msgstr "Banka i Blagajna" #. module: account #: model:ir.actions.act_window,help:account.action_analytic_entries_report @@ -6748,16 +7126,20 @@ msgid "" "the tool search to analyse information about analytic entries generated in " "the system." msgstr "" +"Iz ovog pogleda imate analizu vaših različitih analičkih unosa prateći " +"analitički konto koji ste definisali prema vašim poslovnim potrebama. " +"Koristite alat pretraživanja za analizu informacija o analitičkim unosima " +"generisanim u sistemu." #. module: account #: sql_constraint:account.journal:0 msgid "The name of the journal must be unique per company !" -msgstr "" +msgstr "Naziv dnevnika mora biti jedinstven za jednu organizaciju!" #. module: account #: field:account.account.template,nocreate:0 msgid "Optional create" -msgstr "" +msgstr "Opcionalno kreiranje" #. module: account #: code:addons/account/account.py:686 @@ -6766,6 +7148,8 @@ msgid "" "You cannot change the owner company of an account that already contains " "journal items." msgstr "" +"Ne možete mijenjati kompaniju vlasnika na kontu koji već sadrži dnevničke " +"zapise." #. module: account #: report:account.invoice:0 @@ -6808,7 +7192,7 @@ msgstr "Centralizacija" #: view:account.tax.code.template:0 #: view:analytic.entries.report:0 msgid "Group By..." -msgstr "" +msgstr "Grupiši po..." #. module: account #: code:addons/account/account.py:1024 @@ -6817,6 +7201,8 @@ msgid "" "There is no period defined for this date: %s.\n" "Please create one." msgstr "" +"Za ovaj datum nije definisano razdoblje: %s.\n" +"Molim Vas da ga kreirate." #. module: account #: field:account.analytic.line,product_uom_id:0 @@ -6837,7 +7223,7 @@ msgstr "" #. module: account #: field:account.installer,has_default_company:0 msgid "Has Default Company" -msgstr "" +msgstr "Ima predefinisanu kompaniju" #. module: account #: model:ir.model,name:account.model_account_sequence_fiscalyear @@ -6859,7 +7245,7 @@ msgstr "Analitička knjiženja" #. module: account #: view:account.entries.report:0 msgid "Reconciled" -msgstr "" +msgstr "Zatvoreno" #. module: account #: constraint:account.payment.term.line:0 @@ -6867,6 +7253,7 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"Postoci za stavke uslova plaćanja moraju biti između 0 i 1, npr. 0.02 za 2%." #. module: account #: report:account.invoice:0 @@ -6887,12 +7274,12 @@ msgstr "Konto za kategoriju rashoda" #. module: account #: sql_constraint:account.tax:0 msgid "Tax Name must be unique per company!" -msgstr "" +msgstr "Naziv poreza mora biti jedinstven unutar kompanije!" #. module: account #: view:account.bank.statement:0 msgid "Cash Transactions" -msgstr "" +msgstr "Transakcije blagajne" #. module: account #: view:account.unreconcile:0 @@ -6900,6 +7287,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" +"Ako razvežete transakcije, morate također verifikovati sve akcije povezane " +"sa tim transakcijama jer one neće biti onemogućene." #. module: account #: view:account.account.template:0 @@ -6914,19 +7303,19 @@ msgstr "Bilješke" #. module: account #: model:ir.model,name:account.model_analytic_entries_report msgid "Analytic Entries Statistics" -msgstr "" +msgstr "Statistike analitike" #. module: account #: code:addons/account/account_analytic_line.py:142 #: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " -msgstr "" +msgstr "Zapisi: " #. module: account #: help:res.partner.bank,currency_id:0 msgid "Currency of the related account journal." -msgstr "" +msgstr "Valuta povezanog računovodstvenog dnevnika" #. module: account #: constraint:account.move.line:0 @@ -6934,6 +7323,7 @@ msgid "" "You cannot provide a secondary currency if it is the same than the company " "one." msgstr "" +"Ne možete odrediti sekundarnu valutu ako je ista kao i valuta kompanije." #. module: account #: selection:account.tax.template,applicable_type:0 @@ -6945,12 +7335,12 @@ msgstr "Tačno" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Bilans stanja (konto aktive)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 msgid "State is draft" -msgstr "" +msgstr "Stanje je 'U pripremi'" #. module: account #: view:account.move.line:0 @@ -6960,7 +7350,7 @@ msgstr "Ukupan dug" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "" +msgstr "Sljedeća stavka za zatvaranje" #. module: account #: report:account.invoice:0 @@ -6990,7 +7380,7 @@ msgstr "Python kod" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current period" -msgstr "" +msgstr "Stavke dnevnika sa razdobljem u trenutnom razdoblju" #. module: account #: help:account.journal,update_posted:0 @@ -6998,6 +7388,8 @@ msgid "" "Check this box if you want to allow the cancellation the entries related to " "this journal or of the invoice related to this journal" msgstr "" +"Označite ako želite dopustiti naknadno otkazivanje proknjiženih (potvrđenih) " +"dnevničkih zapisa ili računa ovog dnevnika." #. module: account #: view:account.fiscalyear.close:0 @@ -7014,35 +7406,35 @@ msgstr "Kreiraj stavku" #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "" +msgstr "Dobit i Gubitak (konto troška)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "" +msgstr "Ukupno transakcija" #. module: account #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." -msgstr "" +msgstr "Nije moguće pobrisati konto koji ima knjiženja (stavke u dnevniku)." #. module: account #: code:addons/account/account.py:1024 #: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" -msgstr "" +msgstr "Greška !" #. module: account #: field:account.financial.report,style_overwrite:0 msgid "Financial Report Style" -msgstr "" +msgstr "Stil financijskog izvještaja" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "" +msgstr "Zadrži predznak salda" #. module: account #: view:account.vat.declaration:0 @@ -7069,13 +7461,13 @@ msgstr "Ručno" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Otkaži : kreiraj povrat i zatvori" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "You must set a start date." -msgstr "" +msgstr "Morate postaviti početni datum" #. module: account #: view:account.automatic.reconcile:0 @@ -7086,12 +7478,16 @@ msgid "" "reconcile in a series of accounts. It finds entries for each partner where " "the amounts correspond." msgstr "" +"Račun je plaćen kada su sve njegove stavke dugovanja kupca (ili potraživanja " +"dobavljača) zatvorene protustavkama, najčešće plaćanjima banke, blagajne ili " +"sl. Funkcija automatskog zatvaranja za svakog partnera pronalazi stavke " +"odgovarajućeg iznosa." #. module: account #: view:account.move:0 #: field:account.move,to_check:0 msgid "To Review" -msgstr "" +msgstr "Za provjeru" #. module: account #: help:account.partner.ledger,initial_balance:0 @@ -7101,6 +7497,9 @@ msgid "" "row to display the amount of debit/credit/balance that precedes the filter " "you've set." msgstr "" +"Ako ste odabrali filter po datumu ili periodu, ovo polje će Vam omogućiti da " +"dodate red za prikaz iznosa duguje/potražuje/saldo koje prethodi filteru " +"koji ste postavili." #. module: account #: view:account.bank.statement:0 @@ -7109,18 +7508,18 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "" +msgstr "Dnevnički zapisi" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 #, python-format msgid "No period found on the invoice." -msgstr "" +msgstr "Na računu nije pronađen period." #. module: account #: help:account.partner.ledger,page_split:0 msgid "Display Ledger Report with One partner per page" -msgstr "" +msgstr "Jedan partner po stranici" #. module: account #: report:account.general.ledger:0 @@ -7160,12 +7559,12 @@ msgstr "Sve stavke" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "" +msgstr "Moguće je zatvoriti samo stavke istog partnera." #. module: account #: view:account.journal.select:0 msgid "Journal Select" -msgstr "" +msgstr "Odabir dnevnika" #. module: account #: view:account.bank.statement:0 @@ -7173,7 +7572,7 @@ msgstr "" #: code:addons/account/account.py:434 #, python-format msgid "Opening Balance" -msgstr "" +msgstr "Početni saldo" #. module: account #: model:ir.model,name:account.model_account_move_reconcile @@ -7183,7 +7582,7 @@ msgstr "Usklađivanje konta" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax msgid "Taxes Fiscal Position" -msgstr "" +msgstr "Fiskalna pozicija poreza" #. module: account #: report:account.general.ledger:0 @@ -7198,7 +7597,7 @@ msgstr "Glavna knjiga" #. module: account #: model:process.transition,note:account.process_transition_paymentorderbank0 msgid "The payment order is sent to the bank." -msgstr "" +msgstr "Nalog za plaćanje je poslan u banku." #. module: account #: help:account.move,to_check:0 @@ -7206,19 +7605,21 @@ msgid "" "Check this box if you are unsure of that journal entry and if you want to " "note it as 'to be reviewed' by an accounting expert." msgstr "" +"Označite \"za provjeru\" kada niste sigurni da li je knjiženje ispravno i " +"kada je potrebno ekspertno mišljenje." #. module: account #: field:account.chart.template,complete_tax_set:0 #: field:wizard.multi.charts.accounts,complete_tax_set:0 msgid "Complete Set of Taxes" -msgstr "" +msgstr "Kompletan popis poreza" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:61 #, python-format msgid "" "Selected Entry Lines does not have any account move enties in draft state." -msgstr "" +msgstr "Odabrane stavke nemaju knjiženja koja su u statusu u pripremi." #. module: account #: view:account.chart.template:0 @@ -7228,7 +7629,7 @@ msgstr "Svojstva" #. module: account #: model:ir.model,name:account.model_account_tax_chart msgid "Account tax chart" -msgstr "" +msgstr "Struktura poreza" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -7248,6 +7649,8 @@ msgid "" "Configuration error!\n" "The currency chosen should be shared by the default accounts too." msgstr "" +"Greška konfiguracije!\n" +"Odabranu valutu je potrebno dijeliti i kod predodređenih konta." #. module: account #: code:addons/account/account.py:2304 @@ -7262,21 +7665,28 @@ msgid "" "\n" "e.g. My model on %(date)s" msgstr "" +"Možete navesti godinu, mjesec i dan u nazivu modela pomoću ovih oznaka:\n" +"\n" +"%(year)s: za godinu \n" +"%(month)s: za mjesec \n" +"%(date)s: tenutni datum\n" +"\n" +"npr. Knjiženje troškova plate za %(month)s" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Paypal Url" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Upravljanje plaćanjima kupaca" #. module: account #: help:report.invoice.created,origin:0 msgid "Reference of the document that generated this invoice report." -msgstr "" +msgstr "Oznaka dokumenta koji je kreirao ovaj račun." #. module: account #: field:account.tax.code,child_ids:0 @@ -7290,11 +7700,13 @@ msgid "" "Error!\n" "The start date of a fiscal year must precede its end date." msgstr "" +"Greška!\n" +"Početni datum fiskalne godine mora biti prije završnog." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "" +msgstr "Porezi prodaje" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 @@ -7305,12 +7717,12 @@ msgstr "Fakture kupca" #. module: account #: view:account.tax:0 msgid "Misc" -msgstr "" +msgstr "Ostalo" #. module: account #: view:account.analytic.line:0 msgid "Sales" -msgstr "" +msgstr "Prodaje" #. module: account #: selection:account.invoice.report,state:0 @@ -7328,11 +7740,14 @@ msgid "" "Make sure you have configured payment terms properly.\n" "The latest payment term line should be of the \"Balance\" type." msgstr "" +"Ne možete potvrditi unos koji nije u ravnoteži.\n" +"Provjerite da li ste podesili uslove plaćanja kako treba.\n" +"Zadnja linija načina plaćanja mora biti tip \"saldo\"." #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "" +msgstr "Stavka izvoda sa ručnim unosom postaje stavka u pripremi." #. module: account #: view:account.aged.trial.balance:0 @@ -7344,18 +7759,23 @@ msgid "" "you request an interval of 30 days OpenERP generates an analysis of " "creditors for the past month, past two months, and so on. " msgstr "" +"Struktura dospjelih dugovanja/potraživanja partnera je detaljniji izvještaj " +"o dugovanjima/potraživanjima u intervalima. Za zadani period i broj dana " +"intervala analize OpenERP izračunava tabelu dugovanja po intervalu. Ako " +"zadate interval od 30 dana analiza će pokazati dugovanja do 30, 30 do 60, 60 " +"do 90 dana i tako dalje. " #. module: account #: field:account.invoice,origin:0 #: field:account.invoice.line,origin:0 #: field:report.invoice.created,origin:0 msgid "Source Document" -msgstr "" +msgstr "Izvorni dokument" #. module: account #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" -msgstr "" +msgstr "Bankovni računi, kako se vide na ispisu u podnožju dokumenta" #. module: account #: constraint:account.account:0 @@ -7364,16 +7784,18 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Greška prilikom konfiguracije!\n" +"Nije moguće dodijeliti podkonta kontu koji nije 'Pogled'." #. module: account #: model:ir.model,name:account.model_accounting_report msgid "Accounting Report" -msgstr "" +msgstr "Računovodstveni izvještaj" #. module: account #: field:account.analytic.line,currency_id:0 msgid "Account Currency" -msgstr "" +msgstr "Valuta" #. module: account #: report:account.invoice:0 @@ -7392,16 +7814,18 @@ msgstr "" #: help:account.tax,amount:0 msgid "For taxes of type percentage, enter % ratio between 0-1." msgstr "" +"Za poreze koji se računaju putem postotka upišite vrijednost između 0 i 1. " +"Npr. 0,25 za 25%." #. module: account #: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy msgid "Financial Reports Hierarchy" -msgstr "" +msgstr "Hijerarhija financijskog izvještaja" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation msgid "Monthly Turnover" -msgstr "" +msgstr "Mjesečni promet" #. module: account #: view:account.move:0 @@ -7423,7 +7847,7 @@ msgstr "Predložak poreznog računa" #. module: account #: view:account.journal.select:0 msgid "Are you sure you want to open Journal Entries?" -msgstr "" +msgstr "Potvrdite otvaranje stavki." #. module: account #: view:account.state.open:0 @@ -7433,12 +7857,12 @@ msgstr "Jeste sigurni da želite otvoriti ovu fakturu ?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "" +msgstr "Konto troška početnog stanja" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Referenca kupca" #. module: account #: field:account.account.template,parent_id:0 @@ -7454,7 +7878,7 @@ msgstr "Cijena" #: view:account.bank.statement:0 #: field:account.bank.statement,closing_details_ids:0 msgid "Closing Cashbox Lines" -msgstr "" +msgstr "Zatvaranje stavki blagajne" #. module: account #: view:account.bank.statement:0 @@ -7467,17 +7891,17 @@ msgstr "Izvod" #. module: account #: help:account.journal,default_debit_account_id:0 msgid "It acts as a default account for debit amount" -msgstr "" +msgstr "Uobičajeni konto za dugovni iznos" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Knjiženi zapisi" #. module: account #: help:account.payment.term.line,value_amount:0 msgid "For percent enter a ratio between 0-1." -msgstr "" +msgstr "Za postotak unesite omjer između 0 i 1" #. module: account #: report:account.invoice:0 @@ -7490,12 +7914,12 @@ msgstr "Datum fakturiranja" #. module: account #: view:account.invoice.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Grupiraj po godini izdavanja računa" #. module: account #: field:account.config.settings,purchase_tax_rate:0 msgid "Purchase tax (%)" -msgstr "" +msgstr "Porez nabavke (%)" #. module: account #: help:res.partner,credit:0 @@ -7505,12 +7929,12 @@ msgstr "Ukupni iznos koji ti ovaj kupac duguje." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "" +msgstr "Stavke dnevnika koje nisu u ravnoteži" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules msgid "Chart Templates" -msgstr "" +msgstr "Predlošci plana" #. module: account #: field:account.journal.period,icon:0 @@ -7541,7 +7965,7 @@ msgstr "" #. module: account #: field:account.bank.statement,closing_date:0 msgid "Closed On" -msgstr "" +msgstr "Zatvoren" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line @@ -7551,17 +7975,17 @@ msgstr "Redak bankovnog izvoda" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "" +msgstr "Uobičajen porez nabavke" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Konto prihoda za početno stanje" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "" +msgstr "Odobri ProForma fakture" #. module: account #: view:account.bank.statement:0 @@ -7597,12 +8021,12 @@ msgstr "Kreiraj stavke" #. module: account #: model:ir.model,name:account.model_cash_box_out msgid "cash.box.out" -msgstr "" +msgstr "cash.box.out" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "Glavna valuta kompanije" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports @@ -7615,12 +8039,12 @@ msgstr "Izvještavanje" #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" -msgstr "" +msgstr "Upozorenje" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "" +msgstr "Ugovori/analitička konta" #. module: account #: view:account.journal:0 @@ -7631,7 +8055,7 @@ msgstr "Nalog za knjiženje računa" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "" +msgstr "Metoda zaokruživanja kod izračuna poreza" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 @@ -7648,6 +8072,11 @@ msgid "" " with the invoice. You will not be able " "to modify the credit note." msgstr "" +"Koristite ovu opciju ako želite stornirati račun.\n" +" Kreirati će se novi storno dokument koji " +"će zatvoriti ovaj \n" +" račun. Stornirani dokument ne možete " +"modificirati." #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -7656,11 +8085,13 @@ msgid "" "the system to go through the reconciliation process, based on the latest day " "it have been reconciled." msgstr "" +"Pokazuje sljedećeg partnera u procesu zatvaranja IOS-a, a prema zadnjem danu " +"zatvaranja IOS-a." #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 msgid "Comment" -msgstr "" +msgstr "Komentar" #. module: account #: field:account.tax,domain:0 @@ -7671,7 +8102,7 @@ msgstr "Domena" #. module: account #: model:ir.model,name:account.model_account_use_model msgid "Use model" -msgstr "" +msgstr "Koristi model" #. module: account #: code:addons/account/account.py:1490 @@ -7680,6 +8111,8 @@ msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" +"Ne postoji predefinirani potražni konto \n" +"za dnevnik \"%s\"." #. module: account #: view:account.invoice.line:0 @@ -7691,7 +8124,7 @@ msgstr "Redak fakture" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Povrati kupaca i dobavljača" #. module: account #: field:account.financial.report,sign:0 @@ -7718,11 +8151,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog analitičkog konta..\n" +"

\n" +" Standardno je struktura kontnog plana definisana zakonskim\n" +" propisima svake zemlje. Struktura analitičkih konta\n" +" bi trebala odgovarati potrebama vaše kompanije.\n" +"

\n" +" Većina poslovnih promjena u OpenERP-u (fakturisanje,\n" +" troškovi, nabavka, proizvodnja ...) generišu analitičke " +"stavke\n" +" na povezanom kontu.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_view msgid "Root/View" -msgstr "" +msgstr "Izvorni/Pogled" #. module: account #: code:addons/account/account.py:3206 @@ -7741,7 +8187,7 @@ msgstr "PRO-FORMA" #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "" +msgstr "Nije izravnat" #. module: account #: selection:account.move.line,centralisation:0 @@ -7752,7 +8198,7 @@ msgstr "Običan" #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "" +msgstr "Predlozi email-a" #. module: account #: view:account.move.line:0 @@ -7780,22 +8226,23 @@ msgid "" "This field is used for payable and receivable journal entries. You can put " "the limit date for the payment of this line." msgstr "" +"Koristi se za salda konti kupaca i dobavljača. Upišite datum valute plaćanja." #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "" +msgstr "Višestruke valute" #. module: account #: field:account.model.line,date_maturity:0 msgid "Maturity Date" -msgstr "" +msgstr "Datum dospijeća" #. module: account #: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "" +msgstr "Dnevnik prodaje" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -7806,13 +8253,13 @@ msgstr "Porez fakture" #: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" -msgstr "" +msgstr "Ne postoji broj dijela !" #. module: account #: view:account.financial.report:0 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy msgid "Account Reports Hierarchy" -msgstr "" +msgstr "Hijerarhija računovodstvenih izvještaja" #. module: account #: help:account.account.template,chart_template_id:0 @@ -7823,11 +8270,16 @@ msgid "" "few new accounts (You don't need to define the whole structure that is " "common to both several times)." msgstr "" +"Ova opcionalno polje Vam omogućava da povežete predložak konta na određeni " +"predložak kontnog plana koji se mogu razlikovati od onog kojem njegov " +"nadređeni pripada. To Vam omogućava da definišete predloške koji proširuju " +"druge i upotpunjuju ih sa par novih konta (ne morate definisati cijelu " +"strukturu koja je zajednička za oba nekoliko puta)." #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "" +msgstr "Neknjiženi dnevnički zapisi" #. module: account #: help:account.invoice.refund,date:0 @@ -7835,6 +8287,8 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" +"Ovaj će se datum koristiti kao datum fakture za odobrenja i razdoblje će " +"biti odabrano skladno tome." #. module: account #: view:product.template:0 @@ -7848,11 +8302,12 @@ msgid "" "You have to set a code for the bank account defined on the selected chart of " "accounts." msgstr "" +"Morate odrediti šifru za bankovni račun definisan na odabranom kontnom planu." #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile msgid "Manual Reconciliation" -msgstr "" +msgstr "Ručno zatvaranje" #. module: account #: report:account.overdue:0 @@ -7870,7 +8325,7 @@ msgstr "Do" #: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" -msgstr "" +msgstr "Podešavanje valuta" #. module: account #: field:account.fiscalyear.close,fy_id:0 @@ -7881,13 +8336,14 @@ msgstr "Fiskalna godina za zatvaranje" #: view:account.invoice.cancel:0 #: model:ir.actions.act_window,name:account.action_account_invoice_cancel msgid "Cancel Selected Invoices" -msgstr "" +msgstr "Otkaži odabrane fakture" #. module: account #: help:account.account.type,report_type:0 msgid "" "This field is used to generate legal reports: profit and loss, balance sheet." msgstr "" +"Ovo se polje koristi za generisanje izvještaja: dobitak i gubitak, bilans" #. module: account #: selection:account.entries.report,month:0 @@ -7896,13 +8352,13 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "May" -msgstr "" +msgstr "Maj" #. module: account #: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" -msgstr "" +msgstr "Globalno su definirani porezi ali se ne nalaze na stavkama faktura!" #. module: account #: model:ir.model,name:account.model_account_chart_template @@ -7915,16 +8371,17 @@ msgid "" "The sequence field is used to order the resources from lower sequences to " "higher ones." msgstr "" +"Polje sekvenca se koristi za redosljed resursa od niže sekvence prema višima." #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "Ostatak iznosa u valuti" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 msgid "Credit note sequence" -msgstr "" +msgstr "Sekvenca odobrenja" #. module: account #: model:ir.actions.act_window,name:account.action_validate_account_move @@ -7933,7 +8390,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "" +msgstr "Knjiži dnevničke zapise" #. module: account #: selection:account.bank.statement.line,type:0 @@ -7948,7 +8405,7 @@ msgstr "Kupac" #. module: account #: field:account.financial.report,name:0 msgid "Report Name" -msgstr "" +msgstr "Naziv izvještaja" #. module: account #: model:account.account.type,name:account.data_account_type_cash @@ -7973,6 +8430,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Povrat baziran na ovom tipu. Ne možete mijenjati i otkazati ako je faktura " +"već zatvorena." #. module: account #: field:account.bank.statement.line,sequence:0 @@ -7990,17 +8449,17 @@ msgstr "Redoslijed" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "Paypal račun" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Broj dnevničkih zapisa" #. module: account #: view:account.financial.report:0 msgid "Parent Report" -msgstr "" +msgstr "Nadređeni izvještaj" #. module: account #: constraint:account.account:0 @@ -8009,27 +8468,29 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Greška!\n" +"Ne možete kreirati rekurzivna konta." #. module: account #: model:ir.model,name:account.model_cash_box_in msgid "cash.box.in" -msgstr "" +msgstr "cash.box.in" #. module: account #: help:account.invoice,move_id:0 msgid "Link to the automatically generated Journal Items." -msgstr "" +msgstr "Poveznica na automatski kreirane stavke dnevnika" #. module: account #: model:ir.model,name:account.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "Monthly" -msgstr "" +msgstr "Mjesečno" #. module: account #: model:account.account.type,name:account.data_account_type_asset @@ -8039,14 +8500,14 @@ msgstr "Stalno sredstvo" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "" +msgstr "Izračunati saldo" #. module: account #. openerp-web #: code:addons/account/static/src/js/account_move_reconciliation.js:89 #, python-format msgid "You must choose at least one record." -msgstr "" +msgstr "Morate izabrati barem jedan zapis" #. module: account #: field:account.account,parent_id:0 @@ -8058,7 +8519,7 @@ msgstr "Roditelj" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Profit" -msgstr "" +msgstr "Dobit" #. module: account #: help:account.payment.term.line,days2:0 @@ -8079,7 +8540,7 @@ msgstr "Transakcije za usklađivanje" #. module: account #: model:ir.ui.menu,name:account.menu_finance_legal_statement msgid "Legal Reports" -msgstr "" +msgstr "Zakonski izvještaji" #. module: account #: field:account.tax.code,sum_period:0 @@ -8100,12 +8561,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_cashbox_line msgid "CashBox Line" -msgstr "" +msgstr "Stavka blagajne" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "Knjigovodstveni paket" #. module: account #: report:account.third_party_ledger:0 @@ -8129,28 +8590,28 @@ msgstr "Fiksno" #: code:addons/account/account.py:1031 #, python-format msgid "Warning !" -msgstr "" +msgstr "Upozorenje !" #. module: account #: help:account.bank.statement,message_unread:0 #: help:account.invoice,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ako je označeno, nove poruke će zahtjevati vašu pažnju." #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "" +msgstr "Metoda zaokruživanja prilikom izračuna poreza" #. module: account #: field:account.entries.report,move_line_state:0 msgid "State of Move Line" -msgstr "" +msgstr "Stanje stavke" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile msgid "Account move line reconcile" -msgstr "" +msgstr "Zatvaranje stavke dnevničkog zapisa" #. module: account #: view:account.subscription.generate:0 @@ -8161,7 +8622,7 @@ msgstr "Izračun pretplate" #. module: account #: view:account.move.line.unreconcile.select:0 msgid "Open for Unreconciliation" -msgstr "" +msgstr "Otvori za otvaranje" #. module: account #: field:account.bank.statement.line,partner_id:0 @@ -8191,18 +8652,18 @@ msgstr "Partner" #. module: account #: help:account.change.currency,currency_id:0 msgid "Select a currency to apply on the invoice" -msgstr "" +msgstr "Odaberite valutu fakture" #. module: account #: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" -msgstr "" +msgstr "Nema stavaka faktura!" #. module: account #: view:account.financial.report:0 msgid "Report Type" -msgstr "" +msgstr "Tip izvještaja" #. module: account #: help:account.open.closed.fiscalyear,fyear_id:0 @@ -8210,6 +8671,8 @@ msgid "" "Select Fiscal Year which you want to remove entries for its End of year " "entries journal" msgstr "" +"Odaberi fiskalnu godinu za koju želite ukoliniti dnevičke zapise za kraj " +"godine." #. module: account #: field:account.tax.template,type_tax_use:0 @@ -8223,12 +8686,14 @@ msgid "" "The statement balance is incorrect !\n" "The expected balance (%.2f) is different than the computed one. (%.2f)" msgstr "" +"Saldo izvoda je neispravan !\n" +"Očekivani saldo (%.2f) je različit od izračunatog. (%.2f)" #. module: account #: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." -msgstr "" +msgstr "Stavke zapisa ovog konta su neispravne" #. module: account #: field:account.account.type,close_method:0 @@ -8238,13 +8703,14 @@ msgstr "Način odgode" #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Automatic entry" -msgstr "" +msgstr "Automatski zapis" #. module: account #: help:account.account,reconcile:0 msgid "" "Check this box if this account allows reconciliation of journal items." msgstr "" +"Označite ovu stavku ako ovaj konto dozvoljava zatvaranje stavaki dnevnika" #. module: account #: report:account.analytic.account.inverted.balance:0 @@ -8255,7 +8721,7 @@ msgstr "Preokrenut saldo analitike -" #: help:account.move.reconcile,opening_reconciliation:0 msgid "" "Is this reconciliation produced by the opening of a new fiscal year ?." -msgstr "" +msgstr "Da li je ovo zatvaranje proizvod otvaranja nove fiskalne godine ?" #. module: account #: view:account.analytic.line:0 @@ -8272,7 +8738,7 @@ msgstr "Vezani partner" #: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" -msgstr "" +msgstr "Morate prvo odabrati partnera !" #. module: account #: field:account.invoice,comment:0 @@ -8283,18 +8749,18 @@ msgstr "Dodatne informacije" #: field:account.invoice.report,residual:0 #: field:account.invoice.report,user_currency_residual:0 msgid "Total Residual" -msgstr "" +msgstr "Uk. ostatak" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "" +msgstr "Kontrola početnog stanja blagajne" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 #: model:process.node,note:account.process_node_supplierinvoiceinvoice0 msgid "Invoice's state is Open" -msgstr "" +msgstr "Stanje fakture je 'Otvoren'" #. module: account #: view:account.analytic.account:0 @@ -8328,17 +8794,17 @@ msgstr "Knjiga troškova" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Nema definisane fiskalne godine za ovu kompaniju" #. module: account #: view:account.invoice:0 msgid "Proforma" -msgstr "" +msgstr "Proforma" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "J.C. /Move name" -msgstr "" +msgstr "Naziv dnevničkog zapisa" #. module: account #: help:account.tax.template,include_base_amount:0 @@ -8353,28 +8819,29 @@ msgstr "" #: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "" +msgstr "Dnevnik povrata dobavljača" #. module: account #: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Molimo definišite sekvencu na dnevniku." #. module: account #: help:account.tax.template,amount:0 msgid "For Tax Type percent enter % ratio between 0-1." msgstr "" +"Za poreze tipa postotak upišite omjer između 0 i 1. Npr. 0,23 za 23 %." #. module: account #: view:account.analytic.account:0 msgid "Current Accounts" -msgstr "" +msgstr "Trenutna konta" #. module: account #: view:account.invoice.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "Grupiši po datumu računa" #. module: account #: help:account.journal,user_id:0 @@ -8388,6 +8855,9 @@ msgid "" "recalls.\n" " This installs the module account_followup." msgstr "" +"Ovo omogućuje automatizaciju dopisa za neplaćene račune, sa opozivima na " +"više razina.\n" +" Instalira modul account_followup." #. module: account #: field:account.automatic.reconcile,period_id:0 @@ -8420,6 +8890,8 @@ msgid "" "Total amount (in Company currency) for transactions held in secondary " "currency for this account." msgstr "" +"Ukupni iznos (u valuti kompanije) za transakcije izvršene u sekundarnoj " +"valuti za ovaj konto." #. module: account #: report:account.invoice:0 @@ -8430,17 +8902,17 @@ msgstr "Ukupno netto:" #: code:addons/account/wizard/account_report_common.py:158 #, python-format msgid "Select a starting and an ending period." -msgstr "" +msgstr "Odaberite početni i završni period" #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "Sljedeći broj računa" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting msgid "Generic Reporting" -msgstr "" +msgstr "Generički izvještaji" #. module: account #: field:account.move.line.reconcile.writeoff,journal_id:0 @@ -8455,7 +8927,7 @@ msgstr "Konto kategorije dobiti" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "" +msgstr "Prilagođeni saldo" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form @@ -8466,7 +8938,7 @@ msgstr "Predlošci fiskalne pozicije" #. module: account #: view:account.entries.report:0 msgid "Int.Type" -msgstr "" +msgstr "Int.tip" #. module: account #: field:account.move.line,tax_amount:0 @@ -8479,6 +8951,8 @@ msgid "" "This wizard will remove the end of year journal entries of selected fiscal " "year. Note that you can run this wizard many times for the same fiscal year." msgstr "" +"Ovaj čarobnjak pomaže u micanju stavaka zatvaranja odabrane fiskalne godine. " +"Ovaj je čarobnjak moguće koristiti više puta za istu fiskalnu godinu." #. module: account #: report:account.invoice:0 @@ -8507,13 +8981,13 @@ msgstr "Valuta preduzeća" #: field:account.vat.declaration,chart_account_id:0 #: field:accounting.report,chart_account_id:0 msgid "Chart of Account" -msgstr "" +msgstr "Kontni plan" #. module: account #: model:process.node,name:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_reconcilepaid0 msgid "Payment" -msgstr "" +msgstr "Plaćanje" #. module: account #: view:account.automatic.reconcile:0 @@ -8529,7 +9003,7 @@ msgstr "Završni saldo" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "Centralizirana protustavka" #. module: account #: help:account.move.line,blocked:0 @@ -8537,6 +9011,8 @@ msgid "" "You can check this box to mark this journal item as a litigation with the " "associated partner" msgstr "" +"Možete označiti ovaj okvir kako bi obilježili stavku dnevničkog zapisa kao " +"poveznicu s pripadajućim partnerom." #. module: account #: field:account.move.line,reconcile_partial_id:0 @@ -8547,12 +9023,12 @@ msgstr "Djelomično sravnanje" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance msgid "Account Analytic Inverted Balance" -msgstr "" +msgstr "Obrnuti saldo analitičkog konta" #. module: account #: model:ir.model,name:account.model_account_common_report msgid "Account Common Report" -msgstr "" +msgstr "Računovodstveni izvještaji" #. module: account #: view:account.invoice.refund:0 @@ -8564,11 +9040,18 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"Koristite ovu opciju ako želite stornirati račun i kreirati novi u istom " +"koraku.\n" +" Kreirati će se novi storno dokument koji " +"će zatvoriti ovaj \n" +" račun, te novi račun u statusu 'U " +"pripremi' kojega možete \n" +" urediti." #. module: account #: model:process.transition,name:account.process_transition_filestatement0 msgid "Automatic import of the bank sta" -msgstr "" +msgstr "Automatski uvoz bankovnih izvoda" #. module: account #: code:addons/account/account_invoice.py:381 @@ -8579,12 +9062,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_move_bank_reconcile msgid "Move bank reconcile" -msgstr "" +msgstr "Zatvaranje bankovnog kretanja" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Primijeni" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8596,7 +9079,7 @@ msgstr "Tipovi konta" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Faktura (Ref ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1210 @@ -8605,11 +9088,13 @@ msgid "" "You cannot use this general account in this journal, check the tab 'Entry " "Controls' on the related journal." msgstr "" +"Ne možete koristiti ovaj opšti konto u ovom dnevniku. Provjerite tab " +"'kontola unosa' na povezanom dnevniku." #. module: account #: field:account.account.type,report_type:0 msgid "P&L / BS Category" -msgstr "" +msgstr "Dobit i Gubitak / Bilans" #. module: account #: view:account.automatic.reconcile:0 @@ -8640,6 +9125,12 @@ msgid "" "You should press this button to re-open it and let it continue its normal " "process after having resolved the eventual exceptions it may have created." msgstr "" +"Ovo se dugme pojavljuje samo kada je stanje fakture 'plaćeno' (pokazujući da " +"je u potpunosti zatvoreno) i opcija automatskog izračuna 'zatvaranja' je " +"ugašena (opisujući da to više nije slučaj). Drugim riječima, račun je " +"razvezan i ne odgovara više stanju 'plaćen'. Trebali bi pritisnuti ovo dugme " +"da bi ga ponovo otvorili i pustiti da nastavi sa normalnim procesom nakon " +"što se razriješe eventualne iznimke koje bi mogle nastati." #. module: account #: model:ir.actions.act_window,help:account.action_account_journal_form @@ -8659,11 +9150,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje dnevnika.\n" +"

\n" +" Dnevnik je nosioc poslovnih promjena nastalih u \n" +" svakodnevnom računovodstvenom poslovanju.\n" +"

\n" +" U praksi se obično koristi po jedan dnevnik za svaki način " +"plaćanja\n" +" (gotovina, transakcijski račun, čekovi), jedan dnevnik " +"nabave, nekoliko \n" +" dnevnika prodaje te jedan opšti za razne potrebe.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "" +msgstr "Završno knjiženje fiskalne godine" #. module: account #: field:account.invoice.refund,journal_id:0 @@ -8678,7 +9182,7 @@ msgstr "Nalog za knjiženje povrata" #: report:account.general.ledger_landscape:0 #: report:account.partner.balance:0 msgid "Filter By" -msgstr "" +msgstr "Filtriraj po" #. module: account #: code:addons/account/wizard/account_period_close.py:51 @@ -8686,13 +9190,15 @@ msgstr "" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"Da bi zatvorili period, morate prvo proknjižiti dnevničke zapise iz tog " +"perioda." #. module: account #: view:account.entries.report:0 #: view:board.board:0 #: model:ir.actions.act_window,name:account.action_company_analysis_tree msgid "Company Analysis" -msgstr "" +msgstr "Analiza organizacije" #. module: account #: help:account.invoice,account_id:0 @@ -8703,7 +9209,7 @@ msgstr "Račun partnera korišten za ovu fakturu" #: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" -msgstr "" +msgstr "Porez %.2f%%" #. module: account #: field:account.tax.code,parent_id:0 @@ -8721,22 +9227,22 @@ msgstr "Redak uvjeta plaćanja" #: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" -msgstr "" +msgstr "Dnevnik nabavke" #. module: account #: field:account.invoice,amount_untaxed:0 msgid "Subtotal" -msgstr "" +msgstr "Sub-ukupno" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "" +msgstr "Ispis poreske prijave" #. module: account #: view:account.model.line:0 msgid "Journal Entry Model Line" -msgstr "" +msgstr "Stavka modela dnevničkih zapisa" #. module: account #: view:account.invoice:0 @@ -8751,7 +9257,7 @@ msgstr "Datum dospijeća" #: model:ir.ui.menu,name:account.menu_account_supplier #: model:ir.ui.menu,name:account.menu_finance_payables msgid "Suppliers" -msgstr "" +msgstr "Dobavljači" #. module: account #: view:account.journal:0 @@ -8763,12 +9269,12 @@ msgstr "Dozvoljene vrste računa (prazno za bez kontrole)" msgid "" "The residual amount on a receivable or payable of a journal entry expressed " "in the company currency." -msgstr "" +msgstr "Ostatak iznosa dugovanja ili potraživanja u valuti kompanije." #. module: account #: view:account.tax.code:0 msgid "Statistics" -msgstr "" +msgstr "Statistika" #. module: account #: field:account.analytic.chart,from_date:0 @@ -8783,28 +9289,33 @@ msgid "" "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." msgstr "" +"Ova Vam opcija omogućava da dobijete više detalja o načinu na koji se vaša " +"salda računaju. Pošto zauzima dosta prostora, ne dozvoljavamo njihovo " +"korištenje kod poređenja." #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close msgid "Fiscalyear Close" -msgstr "" +msgstr "Fiskalna godina zatvorena" #. module: account #: sql_constraint:account.account:0 msgid "The code of the account must be unique per company !" -msgstr "" +msgstr "Šifra konta mora biti jedinstvena za jednu kompaniju!" #. module: account #: help:product.category,property_account_expense_categ:0 #: help:product.template,property_account_expense:0 msgid "This account will be used to value outgoing stock using cost price." msgstr "" +"Ovaj modul će se koristiti za vrednovanje izlaznog skladišnog prometa " +"koristeći nabavnu cijenu." #. module: account #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened msgid "Unpaid Invoices" -msgstr "" +msgstr "Neplaćene Fakture" #. module: account #: field:account.move.line.reconcile,debit:0 @@ -8836,14 +9347,14 @@ msgstr "Dozvoljeni računi (prazno bez kontrole)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Porez prodaje (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 #: model:ir.actions.act_window,name:account.action_account_analytic_chart #: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Chart of Analytic Accounts" -msgstr "" +msgstr "Analitički kontni plan" #. module: account #: model:ir.actions.act_window,help:account.action_subscription_form @@ -8861,12 +9372,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove ponavljajuće stavke.\n" +"

\n" +" Ponavljajuća stavka je stavka koja već postoji u sistemu ali " +"se ponavlja\n" +" određenog datuma, npr. povezana je uz potpisani ugovor ili " +"dogovor sa\n" +" kupcem ili dobavljačem. Takve je unose moguće automatizovati " +"u sistemu.\n" +"

\n" +" " #. module: account #: view:account.journal:0 #: model:ir.ui.menu,name:account.menu_configuration_misc msgid "Miscellaneous" -msgstr "" +msgstr "Dodatna podešavanja" #. module: account #: help:res.partner,debit:0 @@ -8877,7 +9399,7 @@ msgstr "Ukupni iznos koji morate platiti ovom dobavljaču." #: model:process.node,name:account.process_node_analytic0 #: model:process.node,name:account.process_node_analyticcost0 msgid "Analytic Costs" -msgstr "" +msgstr "Analitički troškovi" #. module: account #: field:account.analytic.journal,name:0 @@ -8890,12 +9412,12 @@ msgstr "Naziv naloga za knjiženje" #: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" -msgstr "" +msgstr "Stavka \"%s\" nije ispravna !" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Smallest Text" -msgstr "" +msgstr "Najmanji tekst" #. module: account #: help:account.config.settings,module_account_check_writing:0 @@ -8903,11 +9425,13 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"Ovo omogućava pisanja i štampanje čekova.\n" +" Instalira modul account_check_writing." #. module: account #: model:res.groups,name:account.group_account_invoice msgid "Invoicing & Payments" -msgstr "" +msgstr "Fakturisanje i Plaćanja" #. module: account #: help:account.invoice,internal_number:0 @@ -8926,7 +9450,7 @@ msgstr "Trošak" #. module: account #: help:account.chart,fiscalyear:0 msgid "Keep empty for all open fiscal years" -msgstr "" +msgstr "Prazno za sve otvorene fiskalne godine" #. module: account #: help:account.move.line,amount_currency:0 @@ -8939,7 +9463,7 @@ msgstr "Iznos izražen u opcionalnoj drugoj valuti ako je viševalutni unos." #: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." -msgstr "" +msgstr "Temeljnica (%s) za centralizaciju je potvrđena." #. module: account #: report:account.analytic.account.journal:0 @@ -8978,17 +9502,19 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Možete odabrati dnevnik za odobrenja koja će se kreirati. Ako ostavite polje " +"prazno koristiti će se isti dnevnik kao i za trenutnu fakturu." #. module: account #: help:account.bank.statement.line,sequence:0 msgid "" "Gives the sequence order when displaying a list of bank statement lines." -msgstr "" +msgstr "Daje redoslijed kod prikaza liste stavaka izvoda." #. module: account #: model:process.transition,note:account.process_transition_validentries0 msgid "Accountant validates the accounting entries coming from the invoice." -msgstr "" +msgstr "Knjigovođa potvrđuje temeljnicu nastalu potvrdom fakture." #. module: account #: view:account.entries.report:0 @@ -9000,13 +9526,13 @@ msgstr "Usklađene stavke" #: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" -msgstr "" +msgstr "Pogrešan model!" #. module: account #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Predložak poreza" #. module: account #: field:account.invoice.refund,period:0 @@ -9016,7 +9542,7 @@ msgstr "Razdoblje prisile" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "" +msgstr "Ispis salda partnera" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9026,6 +9552,9 @@ msgid "" "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Ne možete vršiti ovu modifikaciju na zatvorenoj stavci. Možete samo " +"mijenjati neka nevažna polja ili morate razvezati stavke.\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -9036,11 +9565,16 @@ msgid "" "accounts that are typically more credited than debited and that you would " "like to print as positive amounts in your reports; e.g.: Income account." msgstr "" +"Za konta koja su tipično više dugovna nego potražna i koja bi željeli " +"ispisati kao negativne iznose u vašim izvještajima, trebate obrnuti predznak " +"salda; npr. konta troška. Isto se odnosi na konta koja su tipično više " +"potražna nego dugovna i koja bi htjeli da ispisuje kao pozitivne iznose u " +"vašim izvještajima; npr. konta prihoda." #. module: account #: field:res.partner,contract_ids:0 msgid "Contracts" -msgstr "" +msgstr "Ugovori" #. module: account #: field:account.cashbox.line,bank_statement_id:0 @@ -9049,7 +9583,7 @@ msgstr "" #: field:account.financial.report,credit:0 #: field:account.financial.report,debit:0 msgid "unknown" -msgstr "" +msgstr "nepoznato" #. module: account #: field:account.fiscalyear.close,journal_id:0 @@ -9061,20 +9595,20 @@ msgstr "Nalog za knjiženje otvarajućih stavaka" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 msgid "Draft invoices are checked, validated and printed." -msgstr "" +msgstr "Fakture u pripremi se provjeravaju, odobravaju i ispisuju." #. module: account #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je pratilac" #. module: account #: view:account.move:0 #: field:account.move,narration:0 #: field:account.move.line,narration:0 msgid "Internal Note" -msgstr "" +msgstr "Interna bilješka" #. module: account #: constraint:account.account:0 @@ -9083,11 +9617,14 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"Greška konfiguracije!\n" +"Ne možete odabrati tip konta sa metodom odgode različitom od \"nezatvoreno\" " +"za konta sa internim tipom \"obveze/potraživanja\"." #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "Organizacija ima fiskalnu godinu" #. module: account #: help:account.tax,child_depend:0 @@ -9103,12 +9640,12 @@ msgstr "" #: code:addons/account/account.py:634 #, python-format msgid "You cannot deactivate an account that contains journal items." -msgstr "" +msgstr "Nije moguće deaktivirati konto koji ima knjiženja." #. module: account #: selection:account.tax,applicable_type:0 msgid "Given by Python Code" -msgstr "" +msgstr "Pytkon programski kod" #. module: account #: field:account.analytic.journal,code:0 @@ -9119,7 +9656,7 @@ msgstr "Šifra knjiženja" #: view:account.invoice:0 #: field:account.move.line,amount_residual:0 msgid "Residual Amount" -msgstr "" +msgstr "Preostali iznos" #. module: account #: field:account.invoice,move_lines:0 @@ -9147,13 +9684,13 @@ msgstr "Razdoblje od" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Jedinica valute" #. module: account #: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" -msgstr "" +msgstr "Dnevnik povrata kupcima" #. module: account #: view:account.move:0 @@ -9170,26 +9707,30 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Nakon potvrđivanja fakture u statusu 'U pripremi' nećete ih više moći\n" +" uređivati. Fakture će dobiti jedinstveni broj te će " +"se \n" +" kreirati stavke u knjiženja." #. module: account #: model:process.node,note:account.process_node_bankstatement0 msgid "Registered payment" -msgstr "" +msgstr "Registrovana plaćanja" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "" +msgstr "Fiskalne godine i periodi u stanju zatvoreno" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Dnevnik povrata dobavljaču" #. module: account #: view:account.analytic.line:0 msgid "Product Information" -msgstr "" +msgstr "Proizvod" #. module: account #: report:account.analytic.account.journal:0 @@ -9208,18 +9749,18 @@ msgstr "Kreriaj Fakturu" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Konfiguracija računovodstvenih podataka" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "" +msgstr "Porez nabave(%)" #. module: account #: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." -msgstr "" +msgstr "Molimo upišite stavke fakture." #. module: account #: code:addons/account/wizard/pos_box.py:36 @@ -9228,11 +9769,13 @@ msgid "" "Please check that the field 'Internal Transfers Account' is set on the " "payment method '%s'." msgstr "" +"Molimo provjerite da li je polje 'Konto internih prijenosa' postavljen na " +"načinu plaćanja '%s'." #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "Prikaži detalje" #. module: account #: code:addons/account/account.py:3203 @@ -9246,12 +9789,14 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft invoices." msgstr "" +"Analitički troškovi (ev. rada, nabava, ...) dolaze sa analitičkih " +"konta(računa). Oni mogu kreirati fakture u pripremi." #. module: account #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "" +msgstr "Moje stavke" #. module: account #: help:account.invoice,state:0 @@ -9266,6 +9811,12 @@ msgid "" "related journal entries may or may not be reconciled. \n" "* The 'Cancelled' status is used when user cancel invoice." msgstr "" +" * 'U pripremi' je status za nepotvrđeni faktura. \n" +"* 'Pro-forma' je status kada faktura još nije dobila broj. \n" +"* 'Otvoreno' je status kada je faktura kreirana i dobila je broj. Status " +"'Otvoreno' znači da faktura nije plaćena. \n" +"* 'Plaćeno' je status koji faktura dobiva kada je plaćena. \n" +"* 'Otkazano' je status kada korisnik otkaže fakturu." #. module: account #: field:account.period,date_stop:0 @@ -9280,12 +9831,12 @@ msgstr "Kraj Perioda" #: model:ir.actions.act_window,name:account.action_account_report #: model:ir.ui.menu,name:account.menu_account_reports msgid "Financial Reports" -msgstr "" +msgstr "Financijski izvještaji" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 msgid "Liability View" -msgstr "" +msgstr "Pogled obveza" #. module: account #: report:account.account.balance:0 @@ -9313,7 +9864,7 @@ msgstr "" #: field:accounting.report,period_from:0 #: field:accounting.report,period_from_cmp:0 msgid "Start Period" -msgstr "" +msgstr "Početni period" #. module: account #: model:ir.actions.report.xml,name:account.account_central_journal @@ -9333,7 +9884,7 @@ msgstr "Firme koje se vežu sa partnerom" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "Zatraži povrat" #. module: account #: view:account.move.line:0 @@ -9343,7 +9894,7 @@ msgstr "Ukupno potražuje" #. module: account #: model:process.transition,note:account.process_transition_suppliervalidentries0 msgid "Accountant validates the accounting entries coming from the invoice. " -msgstr "" +msgstr "Knjigovođa potvrđuje dnevničke zapise nastale potvrdom fakture. " #. module: account #: field:account.subscription,period_total:0 @@ -9358,18 +9909,18 @@ msgstr "Dokument: Izvještaj konta kupca" #. module: account #: view:account.account.template:0 msgid "Receivale Accounts" -msgstr "" +msgstr "Konta potraživanja" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Sekvenca odobrenja dobavljača" #. module: account #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "Faktura je već zatvorena" #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9381,6 +9932,12 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"Omogućuje da kreirate i upravljate vašim nalozima za plaćanje, sa svrhom\n" +" * da služi kao baza za jednostavno ukopčavanje raznih " +"automatiziranih mehanizama plaćanja\n" +" * i da osigura efikasniji način za upravljanje plaćanjem " +"faktura.\n" +" Instalira modul account_payment." #. module: account #: xsl:account.transfer:0 @@ -9398,7 +9955,7 @@ msgstr "Konto Potraživanja" #: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." -msgstr "" +msgstr "Kompanija treba biti ista za sve stavke zatvaranja." #. module: account #: field:account.account,balance:0 @@ -9429,13 +9986,13 @@ msgstr "Saldo" #. module: account #: model:process.node,note:account.process_node_supplierbankstatement0 msgid "Manually or automatically entered in the system" -msgstr "" +msgstr "Ručno ili automatski unešeno u sistem" #. module: account #: report:account.account.balance:0 #: report:account.general.ledger_landscape:0 msgid "Display Account" -msgstr "" +msgstr "Prikaži konto" #. module: account #: selection:account.account,type:0 @@ -9459,7 +10016,7 @@ msgstr "Legenda" #. module: account #: model:process.transition,note:account.process_transition_entriesreconcile0 msgid "Accounting entries are the first input of the reconciliation." -msgstr "" +msgstr "Dnevnički zapisi su prvi unos zatvaranja." #. module: account #: view:account.fiscalyear.close:0 @@ -9470,19 +10027,19 @@ msgstr "Generiraj stavke za otvaranje fiskalne godine" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Filters By" -msgstr "" +msgstr "Filtriraj po" #. module: account #: field:account.cashbox.line,number_closing:0 #: field:account.cashbox.line,number_opening:0 msgid "Number of Units" -msgstr "" +msgstr "Broj jedinica" #. module: account #: model:process.node,note:account.process_node_manually0 #: model:process.transition,name:account.process_transition_invoicemanually0 msgid "Manual entry" -msgstr "" +msgstr "Ručni unos" #. module: account #: report:account.general.ledger:0 @@ -9500,17 +10057,17 @@ msgstr "Prijenos" #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neispravna akcija!" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "Datum / Period" #. module: account #: report:account.central.journal:0 msgid "A/C No." -msgstr "" +msgstr "A/C Br." #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement @@ -9524,11 +10081,14 @@ msgid "" "The period is invalid. Either some periods are overlapping or the period's " "dates are not matching the scope of the fiscal year." msgstr "" +"Greška!\n" +"Period je neispravan. Ili se neki periodi preklapaju, ili datumi perioda ne " +"odgovaraju rasponu fiskalne godine." #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Nema dospijelih stavaki kod ovog kupca." #. module: account #: help:account.tax,account_paid_id:0 @@ -9536,17 +10096,20 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." msgstr "" +"Postavite konto koji će se koristiti kao predodređeni na stavkama poreza kod " +"faktura za povrat. Ostavite prazno za konto troška." #. module: account #: help:account.addtmpl.wizard,cparent_id:0 msgid "" "Creates an account with the selected template under this existing parent." msgstr "" +"Kreira konto s odabranim predloškom pod postojećim nadređenim kontom." #. module: account #: report:account.invoice:0 msgid "Source" -msgstr "" +msgstr "Izvor" #. module: account #: selection:account.model.line,date_maturity:0 @@ -9560,6 +10123,8 @@ msgid "" "You have to define the bank account\n" "in the journal definition for reconciliation." msgstr "" +"Morate definisati konto banke\n" +"u postavkama dnevnika za zatvaranje." #. module: account #: help:account.journal,sequence_id:0 @@ -9567,22 +10132,23 @@ msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." msgstr "" +"Ovo polje sadržava informacije vezane uz sljedivosti dnevničkih zapisa" #. module: account #: field:account.invoice,sent:0 msgid "Sent" -msgstr "" +msgstr "Poslato" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu msgid "Common Report" -msgstr "" +msgstr "Izvještaji" #. module: account #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Zadani porez prodaje" #. module: account #: report:account.overdue:0 @@ -9593,24 +10159,24 @@ msgstr "Saldo" #: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." -msgstr "" +msgstr "Nije moguće kreirati knjiženja za različite kompanije." #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Periodična obrada" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "" +msgstr "Ulazne i izlazne fakture" #. module: account #: model:process.node,note:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_paymentorderbank0 #: model:process.transition,name:account.process_transition_paymentreconcile0 msgid "Payment entries" -msgstr "" +msgstr "Stavke plaćanja" #. module: account #: selection:account.entries.report,month:0 @@ -9619,7 +10185,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "July" -msgstr "" +msgstr "Jul" #. module: account #: view:account.account:0 @@ -9634,7 +10200,7 @@ msgstr "Pretplata" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "" +msgstr "Saldo analitike" #. module: account #: report:account.account.balance:0 @@ -9662,29 +10228,29 @@ msgstr "" #: field:accounting.report,period_to:0 #: field:accounting.report,period_to_cmp:0 msgid "End Period" -msgstr "" +msgstr "Krajnji period" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 msgid "Expense View" -msgstr "" +msgstr "Pregled troškova" #. module: account #: field:account.move.line,date_maturity:0 msgid "Due date" -msgstr "" +msgstr "Datum dospijeća" #. module: account #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Neposredno plaćanje" #. module: account #: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" -msgstr "" +msgstr " Centralizacija" #. module: account #: help:account.journal,type:0 @@ -9695,6 +10261,11 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" +"Odaberite 'Prodaja' za dnevnike izlaznih faktura. Odaberite 'Nabava' za " +"dnevnike ulaznih faktura. Odaberite 'Gotovina' ili 'Banka' za dnevnike koji " +"se koriste kod plaćanja izlaznih ili ulaznih faktura. Odaberite 'Općenito' " +"za dnevnike raznih drugih operacija. Odaberite 'Početno/završno stanje' za " +"unose generisanje sa novom fiskalnom godinom." #. module: account #: view:account.subscription:0 @@ -9748,6 +10319,8 @@ msgid "" "It indicates that the invoice has been paid and the journal entry of the " "invoice has been reconciled with one or several journal entries of payment." msgstr "" +"Označava da je faktura plaćena i da je dnevnički zapis fakture zatvoren sa " +"jednim ili više izvoda." #. module: account #: view:account.invoice:0 @@ -9760,7 +10333,7 @@ msgstr "Fakture u pripremi" #: view:cash.box.in:0 #: model:ir.actions.act_window,name:account.action_cash_box_in msgid "Put Money In" -msgstr "" +msgstr "Primi novac" #. module: account #: selection:account.account.type,close_method:0 @@ -9773,7 +10346,7 @@ msgstr "Neusklađen" #: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" -msgstr "" +msgstr "Pogrešan ukupni iznos !" #. module: account #: field:account.journal,sequence_id:0 @@ -9791,6 +10364,13 @@ msgid "" "open period. Close a period when you do not want to record new entries and " "want to lock this period for tax related calculation." msgstr "" +"Period je fiskalno razdoblje tokom kojeg treba biti zabilježena evidencija " +"svih računovodstvenih aktivnosti. Mjesečni periodu su standard, ali ovisno o " +"vašoj državi ili potrebama kompanije možete također imati i kvartalne " +"periode. Zatvaranje perioda će onemogućiti unos novih knjiženja. Sva nova " +"knjiženja trebaju tada ići na sljedeći otvoreni period. Zatvorite perioda " +"kada ne želite nova knjiženja i kada želite zaključati period za potrebe " +"poreznih evidencija." #. module: account #: view:account.analytic.account:0 @@ -9807,12 +10387,12 @@ msgstr "Knjiga troškova (Samo količine)" #: model:process.transition,name:account.process_transition_analyticinvoice0 #: model:process.transition,name:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts" -msgstr "" +msgstr "Iz analitičkog konta" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Postavite fiskalnu godinu" #. module: account #: field:account.period,name:0 @@ -9826,6 +10406,8 @@ msgid "" "Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " "or 'Done' state." msgstr "" +"Odabrani(e) račun(e) nije moguće otkazati jer su već u statusu 'Otkazano' " +"ili 'Potvrđeno'." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -9847,12 +10429,12 @@ msgstr "Šifra/Datum" #: model:ir.model,name:account.model_account_move_line #: model:ir.ui.menu,name:account.menu_action_account_moves_all msgid "Journal Items" -msgstr "" +msgstr "Stavke dnevnika" #. module: account #: view:accounting.report:0 msgid "Comparison" -msgstr "" +msgstr "Poređenje" #. module: account #: code:addons/account/account_move_line.py:1119 @@ -9862,6 +10444,9 @@ msgid "" "some non legal fields or you must unconfirm the journal entry first.\n" "%s." msgstr "" +"Ne možete raditi ovu promjenu na knjiženom unosu. Možete samo mijenjati neka " +"sporedna polja ili morate prvo rasknjižiti dnevničke zapise.\n" +"%s." #. module: account #: help:account.config.settings,module_account_budget:0 @@ -9872,11 +10457,17 @@ msgid "" "analytic account.\n" " This installs the module account_budget." msgstr "" +"Ovo omogućuje računovođama da upravljalju analitičkim i miješanim " +"proračunima.\n" +" Jednom kada je glavni proračun definisan,\n" +" voditelji projekta mogu postaviti planirani iznos na svaki " +"analitički konto.\n" +" Instalira modul account_budget." #. module: account #: field:account.bank.statement.line,name:0 msgid "OBI" -msgstr "" +msgstr "JIB/JBMG" #. module: account #: help:res.partner,property_account_payable:0 @@ -9902,7 +10493,7 @@ msgstr "Sekundarna valuta" #. module: account #: model:ir.model,name:account.model_validate_account_move msgid "Validate Account Move" -msgstr "" +msgstr "Potvrdi knjiženje" #. module: account #: field:account.account,credit:0 @@ -9931,29 +10522,29 @@ msgstr "Potražuje" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "Faktura u pripremi " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "" +msgstr "Opšti dnevnici" #. module: account #: view:account.model:0 msgid "Journal Entry Model" -msgstr "" +msgstr "Model dnevničkog zapisa" #. module: account #: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." -msgstr "" +msgstr "Početno razdoblje bi trebalo prethoditi završnom razdoblju" #. module: account #: field:account.invoice,number:0 #: field:account.move,name:0 msgid "Number" -msgstr "" +msgstr "Broj" #. module: account #: report:account.analytic.account.journal:0 @@ -9968,7 +10559,7 @@ msgstr "Općenito" #: field:account.invoice.report,price_total:0 #: field:account.invoice.report,user_currency_price_total:0 msgid "Total Without Tax" -msgstr "" +msgstr "Uk. prije poreza" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -10004,7 +10595,7 @@ msgstr "Razdoblja" #. module: account #: field:account.invoice.report,currency_rate:0 msgid "Currency Rate" -msgstr "" +msgstr "Kursna lista" #. module: account #: field:account.account,tax_ids:0 @@ -10021,12 +10612,12 @@ msgstr "Zadani porezi" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "April" -msgstr "" +msgstr "April" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 msgid "Profit (Loss) to report" -msgstr "" +msgstr "Dobit (gubitak) za prijavu" #. module: account #: code:addons/account/account_invoice.py:379 @@ -10037,17 +10628,17 @@ msgstr "" #. module: account #: view:account.move.line.reconcile.select:0 msgid "Open for Reconciliation" -msgstr "" +msgstr "Otvori za saldakonti zatvaranje" #. module: account #: field:account.account,parent_left:0 msgid "Parent Left" -msgstr "" +msgstr "Roditelj lijevo" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 2 (bold)" -msgstr "" +msgstr "Naslov 2 (bold)" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree2 @@ -10078,6 +10669,9 @@ msgid "" "and is the process of transferring debit and credit amounts from a journal " "of original entry to a ledger book." msgstr "" +"Ažuriranje temeljnice \"knjiženje u gl. knjigu\" je proces prijenosa iznosa " +"duguje i potražuje iz dnevnika u glavnu knjigu. Kod nekih izvještaja možete " +"birati između ažuriranih stavaka ili svih evidentiranih stavki." #. module: account #: model:ir.model,name:account.model_account_period @@ -10094,7 +10688,7 @@ msgstr "Ukloni retke" #: selection:account.account.template,type:0 #: selection:account.entries.report,type:0 msgid "Regular" -msgstr "" +msgstr "Običan" #. module: account #: view:account.account:0 @@ -10108,7 +10702,7 @@ msgstr "Interni tip" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Generiši stavke prije" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10187,14 +10781,14 @@ msgstr "Sekvenca fiskalne godine" #. module: account #: selection:account.financial.report,display_detail:0 msgid "No detail" -msgstr "" +msgstr "Nema detalja" #. module: account #: field:account.account,unrealized_gain_loss:0 #: model:ir.actions.act_window,name:account.action_account_gain_loss #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses msgid "Unrealized Gain or Loss" -msgstr "" +msgstr "Nerealizovani dobit ili gubitak" #. module: account #: view:account.move:0 @@ -10207,11 +10801,13 @@ msgstr "Stanja" #: help:product.template,property_account_income:0 msgid "This account will be used to value outgoing stock using sale price." msgstr "" +"Ovaj će se konto koristiti za vrednovanje skladišnog izlaza koristeći " +"prodajnu cijenu." #. module: account #: field:account.invoice,check_total:0 msgid "Verification Total" -msgstr "" +msgstr "Kontrola uk. iznosa" #. module: account #: report:account.analytic.account.balance:0 @@ -10229,12 +10825,12 @@ msgstr "Ukupno" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "" +msgstr "Ne mogu %s u pripremi/proforma/otkaži fakturu." #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Analitički konto poreza kod povrata" #. module: account #: view:account.move.bank.reconcile:0 @@ -10293,19 +10889,19 @@ msgstr "Preduzeće" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form msgid "Define Recurring Entries" -msgstr "" +msgstr "Postavlja ponavljajuće zapise" #. module: account #: field:account.entries.report,date_maturity:0 msgid "Date Maturity" -msgstr "" +msgstr "Datum valute" #. module: account #: field:account.invoice.refund,description:0 #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "Razlog" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10313,7 +10909,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "" +msgstr "Otvorene stavke" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10322,6 +10918,8 @@ msgid "" "reconciliation process today. The current partner is counted as already " "processed." msgstr "" +"Ova brojka opisuje ukupni broj partenera koji su prošli proces zatvaranja " +"danas. Trenutni partner se računa." #. module: account #: view:account.fiscalyear:0 @@ -10331,12 +10929,12 @@ msgstr "Stvori mjesečna razdoblja" #. module: account #: field:account.tax.code.template,sign:0 msgid "Sign For Parent" -msgstr "" +msgstr "Predznak za nadređenog" #. module: account #: model:ir.model,name:account.model_account_balance_report msgid "Trial Balance Report" -msgstr "" +msgstr "Izvještaj stanja bilansa" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree @@ -10347,12 +10945,12 @@ msgstr "Izvodi u pripremi" #: model:process.transition,note:account.process_transition_statemententries0 msgid "" "Manual or automatic creation of payment entries according to the statements" -msgstr "" +msgstr "Ručno ili automatsko kreiranje stavki plaćanja prema izvodima" #. module: account #: field:account.analytic.balance,empty_acc:0 msgid "Empty Accounts ? " -msgstr "" +msgstr "Prazna konta ? " #. module: account #: view:account.unreconcile.reconcile:0 @@ -10360,17 +10958,19 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disable" msgstr "" +"Ako razvezujete transakcije, morate također provjeriti akcije koje su " +"povezane sa tim transakcijama jer će one ostati aktivne." #. module: account #: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" -msgstr "" +msgstr "Nije moguće izmjeniti porez!" #. module: account #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." -msgstr "" +msgstr "Dnevnik i odabrano razdoblje moraju pripadati istom poduzeću." #. module: account #: view:account.invoice:0 @@ -10380,12 +10980,12 @@ msgstr "Retci fakture" #. module: account #: field:account.chart,period_to:0 msgid "End period" -msgstr "" +msgstr "Završni period" #. module: account #: sql_constraint:account.journal:0 msgid "The code of the journal must be unique per company !" -msgstr "" +msgstr "Šifra dnevnika mora biti jedinstvena (za kompaniju) !" #. module: account #: model:ir.actions.act_window,help:account.action_account_invoice_report_all @@ -10394,11 +10994,14 @@ msgid "" "customer. The tool search can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"Iz ovog izvještaja imate pregled iznosa fakturisanog vašem kupcu. Alat " +"pretrage može se također koristiti za personalizaciju vaših ispisa računa i " +"priagođavanje analize vašim potrebama." #. module: account #: view:account.partner.reconcile.process:0 msgid "Go to Next Partner" -msgstr "" +msgstr "Idi na slijedećeg partnera" #. module: account #: view:account.automatic.reconcile:0 @@ -10409,22 +11012,22 @@ msgstr "Otpiši prijenos" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 msgid "Invoice's state is Done" -msgstr "" +msgstr "Stanje računa je zatvoreno/plaćeno" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Upravljanje naplatom" #. module: account #: model:ir.model,name:account.model_report_account_sales msgid "Report of the Sales by Account" -msgstr "" +msgstr "Izvještaj o prodaji po kontu" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account msgid "Accounts Fiscal Position" -msgstr "" +msgstr "Fiskalna pozicija" #. module: account #: report:account.invoice:0 @@ -10465,7 +11068,7 @@ msgstr "Duguje" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 3 (bold, smaller)" -msgstr "" +msgstr "Naslov 3 (podebljano, manje)" #. module: account #: view:account.invoice:0 @@ -10476,7 +11079,7 @@ msgstr "Retci fakture" #. module: account #: help:account.model.line,quantity:0 msgid "The optional quantity on entries." -msgstr "" +msgstr "Neobavezna količina" #. module: account #: field:account.automatic.reconcile,reconciled:0 @@ -10507,7 +11110,7 @@ msgstr "Raspon" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "" +msgstr "Stavke analitničkog dnevnika povezane sa dnevnikom nabave" #. module: account #: help:account.account,type:0 @@ -10518,6 +11121,10 @@ msgid "" "payable/receivable are for partners accounts (for debit/credit " "computations), closed for depreciated accounts." msgstr "" +"'Interni tip' se koristi za značajke dostupne na različitim tipovima konta: " +"pogled ne može imati stavke dnevnika, konsolidacija su konta koja mogu imati " +"podređena konta za potrebe konsolidacije više kompanija, obveze/potraživanja " +"su za saldakonti, zatvoreno za konta koja se više ne koriste." #. module: account #: report:account.account.balance:0 @@ -10543,6 +11150,8 @@ msgstr "Ručno" msgid "" "This is a field only used for internal purpose and shouldn't be displayed" msgstr "" +"Ovo se polje koristi isključivo za interne potrebe i nebi se trebalo " +"prikazivati" #. module: account #: selection:account.entries.report,month:0 @@ -10551,18 +11160,18 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "December" -msgstr "" +msgstr "Decembar" #. module: account #: view:account.invoice.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Grupiraj po mjesecu fakture" #. module: account #: code:addons/account/account_analytic_line.py:99 #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Nije definisan konto prihoda za proizvod: \"%s\" (id:%d)." #. module: account #: model:ir.actions.act_window,name:account.action_aged_receivable_graph @@ -10573,7 +11182,7 @@ msgstr "Zastarjela potraživanja" #. module: account #: field:account.tax,applicable_type:0 msgid "Applicability" -msgstr "" +msgstr "Primjenjivost" #. module: account #: help:account.move.line,currency_id:0 @@ -10584,18 +11193,18 @@ msgstr "Opcionalna druga valuta ako je u pitanju viševalutni unos." #: model:process.transition,note:account.process_transition_invoiceimport0 msgid "" "Import of the statement in the system from a supplier or customer invoice" -msgstr "" +msgstr "Uvoz stavke u sistem iz fakture dobavljača ili kupca" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing msgid "Billing" -msgstr "" +msgstr "Računi" #. module: account #: view:account.account:0 #: view:account.analytic.account:0 msgid "Parent Account" -msgstr "" +msgstr "Roditeljski račun" #. module: account #: view:report.account.receivable:0 @@ -10605,7 +11214,7 @@ msgstr "Konta po vrstama" #. module: account #: model:ir.model,name:account.model_account_analytic_chart msgid "Account Analytic Chart" -msgstr "" +msgstr "Analitički kontni plan" #. module: account #: help:account.invoice,residual:0 @@ -10615,7 +11224,7 @@ msgstr "Ostatak iznosa koji se duguje." #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "" +msgstr "Sortirano po" #. module: account #: code:addons/account/account_invoice.py:1546 @@ -10624,6 +11233,7 @@ msgid "" "The selected unit of measure is not compatible with the unit of measure of " "the product." msgstr "" +"Odabrana jedinica mjere nije kompatibilna sa jedinicom mjere proizvoda." #. module: account #: view:account.fiscal.position:0 @@ -10647,6 +11257,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove porezne tarife.\n" +"

\n" +" Ovisno o legislativi pojedine zemlje, porezne se tarife " +"koriste za\n" +" poreznu prijavu. OpenERP omogućuje definisanje kompleksne " +"strukture\n" +" porezne prijave.\n" +"

\n" +" " #. module: account #: selection:account.entries.report,month:0 @@ -10655,7 +11275,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "November" -msgstr "" +msgstr "Novembar" #. module: account #: model:ir.actions.act_window,help:account.action_account_moves_all_a @@ -10673,6 +11293,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Odaberite razdoblje i dnevnik koji želite kreirati.\n" +"

\n" +" Kroz ovaj modul moguće je jednostavno i efikasno " +"evidentirati\n" +" stavke glavne knjige.\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 @@ -10682,7 +11310,7 @@ msgstr "Račun prihoda ili troškova vezan za odabrani proizvod." #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Instaliraj dodatne predloške kontog plana" #. module: account #: report:account.general.journal:0 @@ -10693,7 +11321,7 @@ msgstr "Opći nalog za knjiženje" #. module: account #: view:account.invoice:0 msgid "Search Invoice" -msgstr "" +msgstr "Pretraži fakture" #. module: account #: report:account.invoice:0 @@ -10723,7 +11351,7 @@ msgstr "Opće informacije" #: view:account.move:0 #: view:account.move.line:0 msgid "Accounting Documents" -msgstr "" +msgstr "Dokumenti računovodstva" #. module: account #: code:addons/account/account.py:641 @@ -10731,39 +11359,39 @@ msgstr "" msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." -msgstr "" +msgstr "Ne možete ukloniti/deaktivirati konto kupca ili dobavljača" #. module: account #: model:ir.model,name:account.model_validate_account_move_lines msgid "Validate Account Move Lines" -msgstr "" +msgstr "Ažuriraj stavke" #. module: account #: help:res.partner,property_account_position:0 msgid "" "The fiscal position will determine taxes and accounts used for the partner." -msgstr "" +msgstr "Fiskalna pozicija određuje poreze i konta za partnera." #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 msgid "Invoice's state is Done." -msgstr "" +msgstr "Stanje faktura je zatvoreno/plaćeno." #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 msgid "As soon as the reconciliation is done, the invoice can be paid." -msgstr "" +msgstr "Čim je obavljeno zatvaranje, faktura može biti plaćena." #. module: account #: code:addons/account/wizard/account_change_currency.py:59 #, python-format msgid "New currency is not configured properly." -msgstr "" +msgstr "Nova valuta nije ispravno postavljena." #. module: account #: view:account.account.template:0 msgid "Search Account Templates" -msgstr "" +msgstr "Traži predloške konta" #. module: account #: view:account.invoice.tax:0 @@ -10774,12 +11402,12 @@ msgstr "Ručni porezi fakture" #: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "" +msgstr "Uslovi plaćanja dobavljača nema definisane stavke uslova plaćanja" #. module: account #: field:account.account,parent_right:0 msgid "Parent Right" -msgstr "" +msgstr "Roditelj desno" #. module: account #. openerp-web @@ -10787,12 +11415,12 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "Nikada" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard msgid "account.addtmpl.wizard" -msgstr "" +msgstr "account.addtmpl.wizard" #. module: account #: field:account.aged.trial.balance,result_selection:0 @@ -10803,12 +11431,12 @@ msgstr "" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Partner's" -msgstr "" +msgstr "Partneri" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "Interne zabilješke" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear @@ -10823,6 +11451,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the analytic " "journal without removing it." msgstr "" +"Ako aktivno polje postavljeno na False, to će vam omogućiti da sakrijete " +"analitiku dnevničkih zapisa bez da ih uklonite." #. module: account #: field:account.analytic.line,ref:0 diff --git a/addons/account/i18n/ca.po b/addons/account/i18n/ca.po index 65707f7a2e2..514b93b1a72 100644 --- a/addons/account/i18n/ca.po +++ b/addons/account/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:24+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po index 970a16e2a35..e189f30a6fa 100644 --- a/addons/account/i18n/cs.po +++ b/addons/account/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:24+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:54+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Language: Czech\n" #. module: account @@ -85,7 +85,7 @@ msgstr "" #: view:account.move:0 #: view:account.move.line:0 msgid "Total Debit" -msgstr "Celkový dluh" +msgstr "Debet celkem" #. module: account #: constraint:account.account.template:0 @@ -1422,7 +1422,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_tax_report #: model:ir.ui.menu,name:account.next_id_27 msgid "Taxes" -msgstr "DPH" +msgstr "Daně" #. module: account #: code:addons/account/wizard/account_financial_report.py:70 @@ -1685,7 +1685,7 @@ msgstr "Skupiny" #. module: account #: field:report.invoice.created,amount_untaxed:0 msgid "Untaxed" -msgstr "Bez DPH" +msgstr "Bez daně" #. module: account #: view:account.journal:0 @@ -2276,7 +2276,7 @@ msgstr "" #: view:account.invoice:0 #: view:report.invoice.created:0 msgid "Untaxed Amount" -msgstr "Částka bez DPH" +msgstr "Částka bez daně" #. module: account #: help:account.tax,active:0 @@ -2797,7 +2797,7 @@ msgstr "" #: view:account.tax:0 #: model:ir.model,name:account.model_account_tax msgid "Tax" -msgstr "DPH" +msgstr "Daň" #. module: account #: view:account.analytic.account:0 @@ -2815,7 +2815,7 @@ msgstr "Analytický účet" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "Výchozí DPH na vstupu" +msgstr "Výchozí daň na vstupu" #. module: account #: view:account.account:0 @@ -2875,7 +2875,7 @@ msgstr "Účetní informace" #: view:account.tax:0 #: view:account.tax.template:0 msgid "Special Computation" -msgstr "Speciální výpočetní" +msgstr "Zvláštní výpočet" #. module: account #: view:account.move.bank.reconcile:0 @@ -3188,7 +3188,7 @@ msgstr "Částka základního kódu" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "Výchozí DPH" +msgstr "Výchozí daň na výstupu" #. module: account #: help:account.model.line,date_maturity:0 @@ -3807,7 +3807,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Tax Amount" -msgstr "DPH" +msgstr "Částka daně" #. module: account #: view:account.move:0 @@ -5111,7 +5111,7 @@ msgstr "Přidat" #: report:account.overdue:0 #: model:mail.message.subtype,name:account.mt_invoice_paid msgid "Paid" -msgstr "Placeno" +msgstr "Uhrazeno" #. module: account #: field:account.invoice,tax_line:0 @@ -5560,7 +5560,7 @@ msgstr "" #: field:account.tax,child_depend:0 #: field:account.tax.template,child_depend:0 msgid "Tax on Children" -msgstr "Daň z dětí" +msgstr "Podřízená daň" #. module: account #: help:res.partner,last_reconciliation_date:0 @@ -6384,7 +6384,7 @@ msgstr "Toto je model pro opakující se účetní položky" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "DPH (%)" +msgstr "Daň (%)" #. module: account #: view:account.tax.code:0 @@ -6962,7 +6962,7 @@ msgstr "Stav je koncept" #. module: account #: view:account.move.line:0 msgid "Total debit" -msgstr "Celkový dluh" +msgstr "Debet celkem" #. module: account #: view:account.move.line:0 @@ -7387,7 +7387,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Taxes:" -msgstr "DPH:" +msgstr "Daně:" #. module: account #: code:addons/account/account_invoice.py:458 @@ -7557,7 +7557,7 @@ msgstr "Řádek bankovního výpisu" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "Výchozí DPH na vstupu" +msgstr "Výchozí daň na vstupu" #. module: account #: field:account.chart.template,property_account_income_opening:0 @@ -7635,7 +7635,7 @@ msgstr "Účetní deník" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "Způsob zaokrouhlování při výpočtu DPH" +msgstr "Způsob zaokrouhlování při výpočtu daní" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 @@ -7807,7 +7807,7 @@ msgstr "Deník tržeb" #. module: account #: model:ir.model,name:account.model_account_invoice_tax msgid "Invoice Tax" -msgstr "DPH faktury" +msgstr "Daň faktury" #. module: account #: code:addons/account/account_move_line.py:1185 @@ -8147,7 +8147,9 @@ msgstr "" #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "Způsob zaokrouhlování při výpočtu DPH" +msgstr "" +"/usr/bin/google-chrome: error while loading shared libraries: libudev.so.0: " +"cannot open shared object file: No such file or directory" #. module: account #: field:account.entries.report,move_line_state:0 @@ -8820,7 +8822,7 @@ msgstr "Nezaplacené faktury" #. module: account #: field:account.move.line.reconcile,debit:0 msgid "Debit amount" -msgstr "Částka dluhu" +msgstr "Částka debetu" #. module: account #: view:account.aged.trial.balance:0 @@ -9223,7 +9225,7 @@ msgstr "" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "DPH na vstupu (%)" +msgstr "Daň na vstupu (%)" #. module: account #: code:addons/account/account_invoice.py:901 @@ -9594,7 +9596,7 @@ msgstr "Běžný výkaz" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "Výchozí DPH" +msgstr "Výchozí daň na výstupu" #. module: account #: report:account.overdue:0 @@ -9938,7 +9940,7 @@ msgstr "Ověřit pohyb účtu" #: report:account.vat.declaration:0 #: field:report.account.receivable,credit:0 msgid "Credit" -msgstr "Úvěr" +msgstr "Dal" #. module: account #: view:account.invoice:0 @@ -9980,7 +9982,7 @@ msgstr "Obecný" #: field:account.invoice.report,price_total:0 #: field:account.invoice.report,user_currency_price_total:0 msgid "Total Without Tax" -msgstr "Celkem bez DPH" +msgstr "Celkem bez daně" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -10472,7 +10474,7 @@ msgstr "Faktura dodavatele" #: report:account.vat.declaration:0 #: field:report.account.receivable,debit:0 msgid "Debit" -msgstr "Dluh" +msgstr "Má dáti" #. module: account #: selection:account.financial.report,style_overwrite:0 diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po index c81afda5288..eecf9421d1b 100644 --- a/addons/account/i18n/da.po +++ b/addons/account/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:24+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:54+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -27,6 +27,8 @@ msgstr "Systembetaling" msgid "" "An account fiscal position could be defined only once time on same accounts." msgstr "" +"En konto's finansielle/skattemæssige position kan kan angives én gang på " +"samme konto." #. module: account #: help:account.tax.code,sequence:0 @@ -66,7 +68,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_report_aged_receivable msgid "Aged Receivable Till Today" -msgstr "" +msgstr "Aldersopdelte tilgodehavender til i dag" #. module: account #: model:process.transition,name:account.process_transition_invoiceimport0 @@ -215,6 +217,9 @@ msgid "" "invoice) to create analytic entries, OpenERP will look for a matching " "journal of the same type." msgstr "" +"Angiver typen på den analytiske journal. Når det er påkrævet for at danne " +"analytiske posteringer, søger OpenERP efter en matchende journal af samme " +"type." #. module: account #: help:account.tax,account_analytic_collected_id:0 @@ -223,6 +228,8 @@ msgid "" "lines for invoices. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Angiver den analyse konto som bruges standard på fakturaens momslinier. " +"Efterlad tom hvis du ikke ønsker et standard forslag på analyse konto." #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -238,7 +245,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "" +msgstr "Konto posteringer danner grundlag for afstemningen" #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports @@ -319,7 +326,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "" +msgstr "Konto mod-udligning" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -363,12 +370,12 @@ msgstr "Juni" #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "Du skal vælge konti til afstemning" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Giver dig mulighed for at bruge analytisk bogføring" #. module: account #: view:account.invoice:0 @@ -413,7 +420,7 @@ msgstr "" #. module: account #: field:account.journal,default_debit_account_id:0 msgid "Default Debit Account" -msgstr "" +msgstr "Standard Debit konto" #. module: account #: view:account.move:0 @@ -450,7 +457,7 @@ msgstr "Periode:" #: field:account.tax.template,chart_template_id:0 #: field:wizard.multi.charts.accounts,chart_template_id:0 msgid "Chart Template" -msgstr "" +msgstr "Oversigts skabelon" #. module: account #: selection:account.invoice.refund,filter_refund:0 @@ -559,7 +566,7 @@ msgstr "Konto brugt i Journal" #: help:account.vat.declaration,chart_account_id:0 #: help:accounting.report,chart_account_id:0 msgid "Select Charts of Accounts" -msgstr "" +msgstr "Vælg kontoplan" #. module: account #: model:ir.model,name:account.model_account_invoice_refund @@ -580,7 +587,7 @@ msgstr "Ikke afstemt transaktioner" #: report:account.general.ledger:0 #: report:account.general.ledger_landscape:0 msgid "Counterpart" -msgstr "" +msgstr "Modpost" #. module: account #: view:account.fiscal.position:0 @@ -610,7 +617,7 @@ msgstr "" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Decimal nøjagtighed ved posteringer" #. module: account #: selection:account.config.settings,period:0 @@ -627,7 +634,7 @@ msgstr "Sekvenser" #: field:account.financial.report,account_report_id:0 #: selection:account.financial.report,type:0 msgid "Report Value" -msgstr "" +msgstr "Rapport værdi" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:39 @@ -658,23 +665,24 @@ msgstr "" #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "Aktuel valuta er ikke konfigureret korrekt" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Indtægts konto" #. module: account #: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" +"Ingen periode eller mere end en periode blev fundet for den anførte dato." #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "" +msgstr "Salgsrapport pr. konto type" #. module: account #: code:addons/account/account.py:3201 @@ -699,7 +707,7 @@ msgstr "" #: view:account.period:0 #: view:account.period.close:0 msgid "Close Period" -msgstr "" +msgstr "Luk periode" #. module: account #: model:ir.model,name:account.model_account_common_partner_report @@ -709,12 +717,12 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,period_id:0 msgid "Opening Entries Period" -msgstr "" +msgstr "Åbnings periode" #. module: account #: model:ir.model,name:account.model_account_journal_period msgid "Journal Period" -msgstr "" +msgstr "Kladde periode" #. module: account #: constraint:account.move:0 @@ -741,17 +749,17 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" -msgstr "" +msgstr "Debitor konti" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Opsæt firmaets bank konti" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Opret kreditnota" #. module: account #: constraint:account.move.line:0 @@ -763,12 +771,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_report_general_ledger msgid "General Ledger Report" -msgstr "" +msgstr "Finans rapport" #. module: account #: view:account.invoice:0 msgid "Re-Open" -msgstr "" +msgstr "Gen-åben" #. module: account #: view:account.use.model:0 @@ -779,12 +787,12 @@ msgstr "" #: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "" +msgstr "Faktura delvist betalt: %s%s of %s%s (%s%s remaining)." #. module: account #: view:account.invoice:0 msgid "Print Invoice" -msgstr "" +msgstr "Udskriv faktura" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:111 @@ -803,12 +811,12 @@ msgstr "" #: selection:account.payment.term.line,value:0 #: selection:account.tax.template,type:0 msgid "Percent" -msgstr "" +msgstr "Procent" #. module: account #: model:ir.ui.menu,name:account.menu_finance_charts msgid "Charts" -msgstr "" +msgstr "Oversigter" #. module: account #: code:addons/account/project/wizard/project_account_analytic_line.py:47 @@ -820,12 +828,12 @@ msgstr "" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "" +msgstr "Krediterings metode" #. module: account #: model:ir.ui.menu,name:account.menu_account_report msgid "Financial Report" -msgstr "" +msgstr "Finans rapport" #. module: account #: view:account.analytic.account:0 @@ -842,7 +850,7 @@ msgstr "" #: xsl:account.transfer:0 #: field:report.invoice.created,type:0 msgid "Type" -msgstr "" +msgstr "Type" #. module: account #: code:addons/account/account_invoice.py:826 @@ -850,7 +858,7 @@ msgstr "" msgid "" "Taxes are missing!\n" "Click on compute button." -msgstr "" +msgstr "Moms mangler" #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -860,35 +868,35 @@ msgstr "" #. module: account #: help:account.invoice,reference:0 msgid "The partner reference of this invoice." -msgstr "" +msgstr "Partner reference for denne faktura" #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "" +msgstr "Leverandør fakturaer og -kreditnotaer" #. module: account #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "Postering er allerede udlignet" #. module: account #: view:account.move.line.unreconcile.select:0 #: view:account.unreconcile.reconcile:0 #: model:ir.model,name:account.model_account_move_line_unreconcile_select msgid "Unreconciliation" -msgstr "" +msgstr "af-udligning" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "" +msgstr "Konto i analytisk journal" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Send pr. e-mail" #. module: account #: help:account.central.journal,amount_currency:0 @@ -908,7 +916,7 @@ msgstr "" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Konto kode og navn" #. module: account #: selection:account.entries.report,month:0 @@ -917,12 +925,12 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "September" -msgstr "" +msgstr "September" #. module: account #: selection:account.subscription,period_type:0 msgid "days" -msgstr "" +msgstr "dage" #. module: account #: help:account.account.template,nocreate:0 @@ -957,24 +965,24 @@ msgstr "" #: view:account.payment.term:0 #: field:account.payment.term.line,value:0 msgid "Computation" -msgstr "" +msgstr "Beregning" #. module: account #: field:account.journal.cashbox.line,pieces:0 msgid "Values" -msgstr "" +msgstr "Værdier" #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_chart #: model:ir.actions.act_window,name:account.action_tax_code_tree #: model:ir.ui.menu,name:account.menu_action_tax_code_tree msgid "Chart of Taxes" -msgstr "" +msgstr "Moms oversigt" #. module: account #: view:account.fiscalyear:0 msgid "Create 3 Months Periods" -msgstr "" +msgstr "Opret 3 måneders perioder" #. module: account #: report:account.overdue:0 @@ -984,25 +992,25 @@ msgstr "Forfalder" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "Indkøbs journal" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Faktura betalt" #. module: account #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Approve" -msgstr "" +msgstr "Godkende" #. module: account #: view:account.invoice:0 #: view:account.move:0 #: view:report.invoice.created:0 msgid "Total Amount" -msgstr "" +msgstr "Totalt beløb" #. module: account #: help:account.invoice,supplier_invoice_number:0 @@ -1014,14 +1022,14 @@ msgstr "" #: selection:account.account.template,type:0 #: selection:account.entries.report,type:0 msgid "Consolidation" -msgstr "" +msgstr "Konsolidering" #. module: account #: model:account.account.type,name:account.data_account_type_liability #: model:account.financial.report,name:account.account_financial_report_liability0 #: model:account.financial.report,name:account.account_financial_report_liabilitysum0 msgid "Liability" -msgstr "" +msgstr "Gæld" #. module: account #: code:addons/account/account_invoice.py:899 @@ -1032,7 +1040,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Udvidede filtre" #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal @@ -1042,17 +1050,17 @@ msgstr "" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "" +msgstr "Salgs kreditnota" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 msgid "Bank statement" -msgstr "" +msgstr "Bank kontoudtog" #. module: account #: field:account.analytic.line,move_id:0 msgid "Move Line" -msgstr "" +msgstr "Flyt linie" #. module: account #: help:account.move.line,tax_amount:0 @@ -1065,7 +1073,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Purchases" -msgstr "" +msgstr "Indkøb" #. module: account #: field:account.model,lines_id:0 @@ -1087,12 +1095,12 @@ msgstr "" #: report:account.partner.balance:0 #: field:account.period,code:0 msgid "Code" -msgstr "" +msgstr "Kode" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Funktionalitet" #. module: account #: code:addons/account/account.py:2346 @@ -1102,7 +1110,7 @@ msgstr "" #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "" +msgstr "Ingen analytisk journal" #. module: account #: report:account.partner.balance:0 @@ -1110,7 +1118,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance #: model:ir.ui.menu,name:account.menu_account_partner_balance_report msgid "Partner Balance" -msgstr "" +msgstr "Partner balance" #. module: account #: model:ir.actions.act_window,help:account.action_account_gain_loss @@ -1132,12 +1140,12 @@ msgstr "" #. module: account #: field:account.bank.accounts.wizard,acc_name:0 msgid "Account Name." -msgstr "" +msgstr "Konto navn" #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "Åbning med sidste afslutnings balance" #. module: account #: help:account.tax.code,notprintable:0 @@ -1149,17 +1157,17 @@ msgstr "" #. module: account #: field:report.account.receivable,name:0 msgid "Week of Year" -msgstr "" +msgstr "Uge i året" #. module: account #: field:account.report.general.ledger,landscape:0 msgid "Landscape Mode" -msgstr "" +msgstr "Liggende" #. module: account #: help:account.fiscalyear.close,fy_id:0 msgid "Select a Fiscal year to close" -msgstr "" +msgstr "Vælg regnskabsår der skal lukkes" #. module: account #: help:account.account.template,user_type:0 @@ -1171,7 +1179,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Kreditering " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1182,7 +1190,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Applicability Options" -msgstr "" +msgstr "Anvendeligheds muligheder" #. module: account #: report:account.partner.balance:0 @@ -1194,12 +1202,12 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_view_bank_statement_tree #: model:ir.ui.menu,name:account.journal_cash_move_lines msgid "Cash Registers" -msgstr "" +msgstr "Kontant kasser" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Salgs krediteringsjournal" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1225,22 +1233,22 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Bank" -msgstr "" +msgstr "Bank" #. module: account #: field:account.period,date_start:0 msgid "Start of Period" -msgstr "" +msgstr "Start på periode" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Krediteringer" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "" +msgstr "Bekræft opgørelse" #. module: account #: view:account.tax:0 @@ -1258,7 +1266,7 @@ msgstr "" #: field:account.fiscal.position.tax,tax_dest_id:0 #: field:account.fiscal.position.tax.template,tax_dest_id:0 msgid "Replacement Tax" -msgstr "" +msgstr "Erstatnings moms" #. module: account #: selection:account.move.line,centralisation:0 @@ -1269,7 +1277,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_tax_code_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form msgid "Tax Code Templates" -msgstr "" +msgstr "Moms skabeloner" #. module: account #: constraint:account.move.line:0 @@ -1281,17 +1289,17 @@ msgstr "" #. module: account #: view:account.invoice.cancel:0 msgid "Cancel Invoices" -msgstr "" +msgstr "Annnulér fakturaer" #. module: account #: help:account.journal,code:0 msgid "The code will be displayed on reports." -msgstr "" +msgstr "Koden vises i rapporter" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "" +msgstr "Moms i indkøb" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1300,18 +1308,18 @@ msgstr "" #: field:account.tax.template,tax_code_id:0 #: model:ir.model,name:account.model_account_tax_code msgid "Tax Code" -msgstr "" +msgstr "Momskode" #. module: account #: field:account.account,currency_mode:0 msgid "Outgoing Currencies Rate" -msgstr "" +msgstr "Valutakurs-princip" #. module: account #: view:account.analytic.account:0 #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Skabelon" #. module: account #: selection:account.analytic.journal,type:0 @@ -1346,7 +1354,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:account.journal:0 msgid "Others" -msgstr "" +msgstr "Øvrige" #. module: account #: view:account.subscription:0 @@ -1379,25 +1387,25 @@ msgstr "" #: model:ir.model,name:account.model_account_account #: field:report.account.sales,account_id:0 msgid "Account" -msgstr "" +msgstr "Konto" #. module: account #: field:account.tax,include_base_amount:0 msgid "Included in base amount" -msgstr "" +msgstr "Inkluderet i basis-beløb" #. module: account #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.action_account_entries_report_all #: model:ir.ui.menu,name:account.menu_action_account_entries_report_all msgid "Entries Analysis" -msgstr "" +msgstr "Posterings analyse" #. module: account #: field:account.account,level:0 #: field:account.financial.report,level:0 msgid "Level" -msgstr "" +msgstr "Niveau" #. module: account #: code:addons/account/wizard/account_change_currency.py:38 @@ -1417,19 +1425,19 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_tax_report #: model:ir.ui.menu,name:account.next_id_27 msgid "Taxes" -msgstr "" +msgstr "Afgifter/moms" #. module: account #: code:addons/account/wizard/account_financial_report.py:70 #, python-format msgid "Select a starting and an ending period" -msgstr "" +msgstr "Vælg en start og slut periode" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitandloss0 #: model:ir.actions.act_window,name:account.action_account_report_pl msgid "Profit and Loss" -msgstr "" +msgstr "Resultatopgørelse/drift" #. module: account #: model:ir.model,name:account.model_account_account_template @@ -1439,57 +1447,57 @@ msgstr "Skablon for kontoplan" #. module: account #: view:account.tax.code.template:0 msgid "Search tax template" -msgstr "" +msgstr "Søg momsskabelon" #. module: account #: view:account.move.reconcile:0 #: model:ir.actions.act_window,name:account.action_account_reconcile_select #: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile msgid "Reconcile Entries" -msgstr "" +msgstr "Udlign posteringer" #. module: account #: model:ir.actions.report.xml,name:account.account_overdue #: view:res.company:0 msgid "Overdue Payments" -msgstr "" +msgstr "Forfaldne betalinger" #. module: account #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Initial Balance" -msgstr "" +msgstr "Udgangsbalance" #. module: account #: view:account.invoice:0 msgid "Reset to Draft" -msgstr "" +msgstr "Kør tilbage til kladde" #. module: account #: view:account.aged.trial.balance:0 #: view:account.common.report:0 msgid "Report Options" -msgstr "" +msgstr "Rapport optioner" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Regnskabsår til lukning" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "" +msgstr "Faktura bilagsnummer" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "" +msgstr "Journal posteringer analyse" #. module: account #: model:ir.ui.menu,name:account.next_id_22 msgid "Partners" -msgstr "" +msgstr "Partnere" #. module: account #: help:account.bank.statement,state:0 @@ -1502,7 +1510,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Faktura status" #. module: account #: view:account.bank.statement:0 @@ -1511,12 +1519,12 @@ msgstr "" #: model:process.node,name:account.process_node_bankstatement0 #: model:process.node,name:account.process_node_supplierbankstatement0 msgid "Bank Statement" -msgstr "" +msgstr "Bank kontoudtog" #. module: account #: field:res.partner,property_account_receivable:0 msgid "Account Receivable" -msgstr "" +msgstr "Tigodehavende konto" #. module: account #: code:addons/account/account.py:612 @@ -1547,7 +1555,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Search Taxes" -msgstr "" +msgstr "Søg moms/afgifter" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger @@ -1557,7 +1565,7 @@ msgstr "" #. module: account #: view:account.model:0 msgid "Create entries" -msgstr "" +msgstr "Opret posteringer" #. module: account #: field:account.entries.report,nbr:0 @@ -1567,7 +1575,7 @@ msgstr "" #. module: account #: field:account.automatic.reconcile,max_amount:0 msgid "Maximum write-off amount" -msgstr "" +msgstr "Max. afskrivningsbeløb" #. module: account #. openerp-web @@ -1595,22 +1603,22 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Ikke implementeret" #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "" +msgstr "Kreditnota" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "E-fakturaer og betalinger" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 msgid "Cost Ledger for Period" -msgstr "" +msgstr "Omkostningsregnskab for perioden" #. module: account #: view:account.entries.report:0 @@ -1633,7 +1641,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree4 #: model:ir.ui.menu,name:account.menu_action_invoice_tree4 msgid "Supplier Refunds" -msgstr "" +msgstr "Leverandør kreditnotaer" #. module: account #: field:account.tax.code,code:0 @@ -1655,59 +1663,59 @@ msgstr "" #: selection:account.fiscalyear,state:0 #: selection:account.period,state:0 msgid "Closed" -msgstr "" +msgstr "Lukket" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "" +msgstr "Gentagne posteringer" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template msgid "Template for Fiscal Position" -msgstr "" +msgstr "Skabelon for finansiel position" #. module: account #: view:account.subscription:0 msgid "Recurring" -msgstr "" +msgstr "Tilbagevendende" #. module: account #: field:account.journal,groups_id:0 msgid "Groups" -msgstr "" +msgstr "Grupper" #. module: account #: field:report.invoice.created,amount_untaxed:0 msgid "Untaxed" -msgstr "" +msgstr "uden moms" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Udvidede indstillinger" #. module: account #: view:account.bank.statement:0 msgid "Search Bank Statements" -msgstr "" +msgstr "Søg i bank kontoudtog" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "" +msgstr "Ikke-posterede journalposteringer" #. module: account #: view:account.chart.template:0 #: field:account.chart.template,property_account_payable:0 msgid "Payable Account" -msgstr "" +msgstr "Kreditor konto" #. module: account #: field:account.tax,account_paid_id:0 #: field:account.tax.template,account_paid_id:0 msgid "Refund Tax Account" -msgstr "" +msgstr "Indgående moms konto" #. module: account #: model:ir.model,name:account.model_ir_sequence @@ -1718,24 +1726,24 @@ msgstr "" #: view:account.bank.statement:0 #: field:account.bank.statement,line_ids:0 msgid "Statement lines" -msgstr "" +msgstr "Udtogs linier" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "Date/Code" -msgstr "" +msgstr "Dato/kode" #. module: account #: field:account.analytic.line,general_account_id:0 #: view:analytic.entries.report:0 #: field:analytic.entries.report,general_account_id:0 msgid "General Account" -msgstr "" +msgstr "Finans konto" #. module: account #: field:res.partner,debit_limit:0 msgid "Payable Limit" -msgstr "" +msgstr "Betalings max." #. module: account #: model:ir.actions.act_window,help:account.action_account_type_form @@ -1765,28 +1773,28 @@ msgstr "" #: model:res.request.link,name:account.req_link_invoice #, python-format msgid "Invoice" -msgstr "" +msgstr "Faktura" #. module: account #: field:account.move,balance:0 msgid "balance" -msgstr "" +msgstr "balance" #. module: account #: model:process.node,note:account.process_node_analytic0 #: model:process.node,note:account.process_node_analyticcost0 msgid "Analytic costs to invoice" -msgstr "" +msgstr "Analytisk omkostning til fakturering" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequence" -msgstr "" +msgstr "Finansår nummerserie" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analytisk regnskab" #. module: account #: report:account.overdue:0 @@ -1810,24 +1818,24 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all #: view:report.account_type.sales:0 msgid "Sales by Account Type" -msgstr "" +msgstr "Salg pr. kontotype" #. module: account #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 dage" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing msgid "Invoicing" -msgstr "" +msgstr "Fakturering" #. module: account #: code:addons/account/report/account_partner_balance.py:115 #, python-format msgid "Unknown Partner" -msgstr "" +msgstr "Ukendt partner" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:103 @@ -1841,12 +1849,12 @@ msgstr "" #: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." -msgstr "" +msgstr "Nogle posteringer er allerede udlignet" #. module: account #: field:account.tax.code,sum:0 msgid "Year Sum" -msgstr "" +msgstr "Års sum" #. module: account #: view:account.change.currency:0 @@ -1863,7 +1871,7 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Pending Accounts" -msgstr "" +msgstr "Konti afventende godkendelse" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -1874,7 +1882,7 @@ msgstr "" #: report:account.journal.period.print.sale.purchase:0 #: view:account.tax.template:0 msgid "Tax Declaration" -msgstr "" +msgstr "Moms opgørelse" #. module: account #: help:account.journal.period,active:0 @@ -1886,28 +1894,28 @@ msgstr "" #. module: account #: field:account.report.general.ledger,sortby:0 msgid "Sort by" -msgstr "" +msgstr "Sorter efter" #. module: account #: model:ir.actions.act_window,name:account.act_account_partner_account_move_all msgid "Receivables & Payables" -msgstr "" +msgstr "Kreditorer og debitorer" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "Håndtér betalinger" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Varighed" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "Sidste afslutningsbalance" #. module: account #: model:ir.model,name:account.model_account_common_journal_report @@ -1917,17 +1925,17 @@ msgstr "" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "" +msgstr "Alle partnere" #. module: account #: view:account.analytic.chart:0 msgid "Analytic Account Charts" -msgstr "" +msgstr "Analyse konti oversigter" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "" +msgstr "Kunde ref.:" #. module: account #: help:account.tax,base_code_id:0 @@ -1939,38 +1947,38 @@ msgstr "" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "Brug denne kode for momsopgørelse" #. module: account #: help:account.period,special:0 msgid "These periods can overlap." -msgstr "" +msgstr "Disse perioder kan overlappe." #. module: account #: model:process.node,name:account.process_node_draftstatement0 msgid "Draft statement" -msgstr "" +msgstr "Kladde kontoudtog" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Faktura godkendt" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Betal dine leverandører pr. check" #. module: account #: field:account.move.line.reconcile,credit:0 msgid "Credit amount" -msgstr "" +msgstr "Betalings max." #. module: account #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Beskeder" #. module: account #: view:account.vat.declaration:0 @@ -2037,7 +2045,7 @@ msgstr "" #: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" -msgstr "" +msgstr "Fejl!" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree2 @@ -2063,17 +2071,17 @@ msgstr "Forkert kredit eller debet værdi i posteringerne!" #: model:ir.actions.act_window,name:account.action_account_invoice_report_all #: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all msgid "Invoices Analysis" -msgstr "" +msgstr "Faktura analyse" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Wizard til at skrive Email" #. module: account #: model:ir.model,name:account.model_account_period_close msgid "period close" -msgstr "" +msgstr "Periode afslutning" #. module: account #: code:addons/account/account.py:1058 @@ -2086,12 +2094,12 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form msgid "Entries By Line" -msgstr "" +msgstr "Posteringer pr. linie" #. module: account #: field:account.vat.declaration,based_on:0 msgid "Based on" -msgstr "" +msgstr "Baseret på" #. module: account #: model:ir.actions.act_window,help:account.action_bank_statement_tree @@ -2114,19 +2122,19 @@ msgstr "" #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Standard firma valuta" #. module: account #: field:account.invoice,move_id:0 #: field:account.invoice,move_name:0 #: field:account.move.line,move_id:0 msgid "Journal Entry" -msgstr "" +msgstr "Postering" #. module: account #: view:account.invoice:0 msgid "Unpaid" -msgstr "" +msgstr "Ubetalt" #. module: account #: view:account.treasury.report:0 @@ -2134,18 +2142,18 @@ msgstr "" #: model:ir.model,name:account.model_account_treasury_report #: model:ir.ui.menu,name:account.menu_action_account_treasury_report_all msgid "Treasury Analysis" -msgstr "" +msgstr "Skatte analyse" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "" +msgstr "Salgs-/indkøbs journal" #. module: account #: view:account.analytic.account:0 #: field:account.invoice.tax,account_analytic_id:0 msgid "Analytic account" -msgstr "" +msgstr "Analytisk konto" #. module: account #: code:addons/account/account_bank_statement.py:406 @@ -2156,24 +2164,24 @@ msgstr "" #. module: account #: selection:account.entries.report,move_line_state:0 msgid "Valid" -msgstr "" +msgstr "Gyldig" #. module: account #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Followers" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal #: model:ir.model,name:account.model_account_print_journal msgid "Account Print Journal" -msgstr "" +msgstr "Print konto journal" #. module: account #: model:ir.model,name:account.model_product_category msgid "Product Category" -msgstr "" +msgstr "Produkt katagori" #. module: account #: code:addons/account/account.py:656 @@ -2186,19 +2194,19 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "" +msgstr "Aldersopdelt råbalance" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "Luk regnskabsår" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "Journal" #. module: account #: sql_constraint:account.fiscal.position.tax:0 @@ -2209,18 +2217,18 @@ msgstr "" #: view:account.tax:0 #: view:account.tax.template:0 msgid "Tax Definition" -msgstr "" +msgstr "Moms definition" #. module: account #: view:account.config.settings:0 #: model:ir.actions.act_window,name:account.action_account_config msgid "Configure Accounting" -msgstr "" +msgstr "Konfigurér Regnskab" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Reference enhed" #. module: account #: help:account.journal,allow_date:0 @@ -2234,12 +2242,12 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "" +msgstr "Godt gået!" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Styring af aktiver" #. module: account #: view:account.account:0 @@ -2253,7 +2261,7 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" -msgstr "" +msgstr "Leverandør konti" #. module: account #: constraint:account.move.line:0 @@ -2267,7 +2275,7 @@ msgstr "" #: view:account.invoice:0 #: view:report.invoice.created:0 msgid "Untaxed Amount" -msgstr "" +msgstr "Beløb før moms" #. module: account #: help:account.tax,active:0 @@ -2279,7 +2287,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "" +msgstr "Analytiske posteringer relateret til salgs-journal" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -2304,18 +2312,18 @@ msgstr "" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Draft" -msgstr "" +msgstr "Kladde" #. module: account #: field:account.move.reconcile,line_partial_ids:0 msgid "Partial Entry lines" -msgstr "" +msgstr "Delvise indtastninger" #. module: account #: view:account.fiscalyear:0 #: field:account.treasury.report,fiscalyear_id:0 msgid "Fiscalyear" -msgstr "" +msgstr "Regnskabsår" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:53 @@ -2327,17 +2335,17 @@ msgstr "" #: view:account.journal.select:0 #: view:project.account.analytic.line:0 msgid "Open Entries" -msgstr "" +msgstr "Åbne posteringer" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "Næste leverandør kreditnota nummer" #. module: account #: field:account.automatic.reconcile,account_ids:0 msgid "Accounts to Reconcile" -msgstr "" +msgstr "Konti til udligning/afstemning" #. module: account #: model:process.transition,note:account.process_transition_filestatement0 @@ -2347,7 +2355,7 @@ msgstr "" #. module: account #: model:process.node,name:account.process_node_importinvoice0 msgid "Import from invoice" -msgstr "" +msgstr "Import fra faktura" #. module: account #: selection:account.entries.report,month:0 @@ -2356,23 +2364,23 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "January" -msgstr "" +msgstr "Januar" #. module: account #: view:account.entries.report:0 msgid "This F.Year" -msgstr "" +msgstr "Dette finansår" #. module: account #: view:account.tax.chart:0 msgid "Account tax charts" -msgstr "" +msgstr "Momsoversigt konto" #. module: account #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "" +msgstr "30 dage netto" #. module: account #: code:addons/account/account_cash_statement.py:256 @@ -2383,7 +2391,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "Tjek total på leverandør fakturaer" #. module: account #: selection:account.invoice,state:0 @@ -2391,7 +2399,7 @@ msgstr "" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Pro-forma" -msgstr "" +msgstr "Proforma" #. module: account #: help:account.account.template,type:0 @@ -2407,12 +2415,12 @@ msgstr "" #. module: account #: view:account.chart.template:0 msgid "Search Chart of Account Templates" -msgstr "" +msgstr "Søg i konto-oversigter" #. module: account #: report:account.invoice:0 msgid "Customer Code" -msgstr "" +msgstr "Kundekode" #. module: account #: view:account.account.type:0 @@ -2429,26 +2437,26 @@ msgstr "" #: field:analytic.entries.report,name:0 #: field:report.invoice.created,name:0 msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. module: account #: field:account.tax,price_include:0 #: field:account.tax.template,price_include:0 msgid "Tax Included in Price" -msgstr "" +msgstr "Moms inkluderet i prisen" #. module: account #: view:account.subscription:0 #: selection:account.subscription,state:0 msgid "Running" -msgstr "" +msgstr "Kører" #. module: account #: view:account.chart.template:0 #: field:product.category,property_account_income_categ:0 #: field:product.template,property_account_income:0 msgid "Income Account" -msgstr "" +msgstr "Omsætnings konto" #. module: account #: help:account.config.settings,default_sale_tax:0 @@ -2460,12 +2468,12 @@ msgstr "" #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Entries Sorted By" -msgstr "" +msgstr "Posteringer sorteret efter" #. module: account #: field:account.change.currency,currency_id:0 msgid "Change to" -msgstr "" +msgstr "Ændre til" #. module: account #: view:account.entries.report:0 @@ -2475,7 +2483,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_product_template msgid "Product Template" -msgstr "" +msgstr "Produktskabelon" #. module: account #: report:account.account.balance:0 @@ -2515,7 +2523,7 @@ msgstr "" #: field:accounting.report,fiscalyear_id_cmp:0 #: model:ir.model,name:account.model_account_fiscalyear msgid "Fiscal Year" -msgstr "" +msgstr "Finans år" #. module: account #: help:account.aged.trial.balance,fiscalyear_id:0 @@ -2552,7 +2560,7 @@ msgstr "" #. module: account #: view:account.addtmpl.wizard:0 msgid "Create an Account Based on this Template" -msgstr "" +msgstr "Opret en konto med udgangspunkt i denne skabelon" #. module: account #: code:addons/account/account_invoice.py:933 @@ -2568,12 +2576,12 @@ msgstr "" #: view:account.move:0 #: model:ir.model,name:account.model_account_move msgid "Account Entry" -msgstr "" +msgstr "Konto indtastning" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 msgid "Main Sequence" -msgstr "" +msgstr "Hovedrækkefølge" #. module: account #: code:addons/account/account_bank_statement.py:478 @@ -2591,13 +2599,13 @@ msgstr "" #: field:account.payment.term.line,payment_id:0 #: model:ir.model,name:account.model_account_payment_term msgid "Payment Term" -msgstr "" +msgstr "Betalingsbetingelse" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form msgid "Fiscal Positions" -msgstr "" +msgstr "Regnskabs positioner" #. module: account #: code:addons/account/account_move_line.py:579 @@ -2613,33 +2621,33 @@ msgstr "" #. module: account #: view:account.common.report:0 msgid "Filters" -msgstr "" +msgstr "Filtre" #. module: account #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "" +msgstr "Faktura i kladde-stadie" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Konto egenskaber" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Opret en kladde-kreditnota" #. module: account #: view:account.partner.reconcile.process:0 msgid "Partner Reconciliation" -msgstr "" +msgstr "Partner afstemning" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "Finanskonto" #. module: account #: field:account.tax,tax_code_id:0 @@ -2656,7 +2664,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Unreconciled entries" -msgstr "" +msgstr "Ikke-udlignede posteringer" #. module: account #: field:account.invoice.tax,base_code_id:0 @@ -2686,7 +2694,7 @@ msgstr "Debet centralisering." #: view:account.invoice.confirm:0 #: model:ir.actions.act_window,name:account.action_account_invoice_confirm msgid "Confirm Draft Invoices" -msgstr "" +msgstr "Godkend fakturakladder" #. module: account #: field:account.entries.report,day:0 @@ -2695,12 +2703,12 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,day:0 msgid "Day" -msgstr "" +msgstr "Dag" #. module: account #: model:ir.actions.act_window,name:account.act_account_renew_view msgid "Accounts to Renew" -msgstr "" +msgstr "Konti der skal fornys" #. module: account #: model:ir.model,name:account.model_account_model_line @@ -2721,7 +2729,7 @@ msgstr "Leverandør moms" #. module: account #: view:res.partner:0 msgid "Bank Details" -msgstr "" +msgstr "Bankoplysninger" #. module: account #: model:ir.actions.act_window,help:account.action_move_journal_line @@ -2760,7 +2768,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "Næste leverandør fakturanummer" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2770,7 +2778,7 @@ msgstr "Vælg periode" #. module: account #: model:ir.ui.menu,name:account.menu_account_pp_statements msgid "Statements" -msgstr "" +msgstr "Kontoudtog" #. module: account #: report:account.analytic.account.journal:0 @@ -2791,7 +2799,7 @@ msgstr "" #: view:account.tax:0 #: model:ir.model,name:account.model_account_tax msgid "Tax" -msgstr "" +msgstr "Moms" #. module: account #: view:account.analytic.account:0 @@ -2803,13 +2811,13 @@ msgstr "" #: field:account.move.line,analytic_account_id:0 #: field:account.move.line.reconcile.writeoff,analytic_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analyse konto" #. module: account #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Standard indkøbsmoms" #. module: account #: view:account.account:0 @@ -2822,7 +2830,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_account_form #: model:ir.ui.menu,name:account.menu_analytic msgid "Accounts" -msgstr "" +msgstr "Konti" #. module: account #: code:addons/account/account.py:3541 @@ -2835,7 +2843,7 @@ msgstr "" #: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Konfigurationsfejl!" #. module: account #: code:addons/account/account_bank_statement.py:434 @@ -2847,7 +2855,7 @@ msgstr "" #: field:account.invoice.report,price_average:0 #: field:account.invoice.report,user_currency_price_average:0 msgid "Average Price" -msgstr "" +msgstr "Gennemsnits pris" #. module: account #: report:account.overdue:0 @@ -2863,7 +2871,7 @@ msgstr "" #. module: account #: view:res.partner.bank:0 msgid "Accounting Information" -msgstr "" +msgstr "Regnskabs information" #. module: account #: view:account.tax:0 @@ -2894,7 +2902,7 @@ msgstr "Ref" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Indkøbs moms" #. module: account #: help:account.move.line,tax_code_id:0 @@ -2910,12 +2918,12 @@ msgstr "" #: model:process.node,note:account.process_node_reconciliation0 #: model:process.node,note:account.process_node_supplierreconciliation0 msgid "Comparison between accounting and payment entries" -msgstr "Sammenligning mellem bogførings- og betalingsindtastninger" +msgstr "Sammenligning mellem regnskab- og betalingsindtastninger" #. module: account #: model:ir.ui.menu,name:account.menu_automatic_reconcile msgid "Automatic Reconciliation" -msgstr "" +msgstr "Automatisk udligning" #. module: account #: field:account.invoice,reconciled:0 @@ -2932,7 +2940,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_bank_statement_tree #: model:ir.ui.menu,name:account.menu_bank_statement_tree msgid "Bank Statements" -msgstr "" +msgstr "Bank kontoudtog" #. module: account #: model:ir.actions.act_window,help:account.action_account_fiscalyear @@ -2960,31 +2968,31 @@ msgstr "" #: view:account.move.line:0 #: view:accounting.report:0 msgid "Dates" -msgstr "" +msgstr "Datoer" #. module: account #: field:account.chart.template,parent_id:0 msgid "Parent Chart Template" -msgstr "" +msgstr "Hoved skabelon" #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 msgid "Parent Tax Account" -msgstr "" +msgstr "Hoved momskonto" #. module: account #: view:account.aged.trial.balance:0 #: model:ir.actions.act_window,name:account.action_account_aged_balance_view #: model:ir.ui.menu,name:account.menu_aged_trial_balance msgid "Aged Partner Balance" -msgstr "" +msgstr "Aldersopdelt partner balance" #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries" -msgstr "" +msgstr "Regnskabs indtastninger" #. module: account #: constraint:account.move.line:0 @@ -3009,13 +3017,13 @@ msgstr "" #. module: account #: field:account.move.line.reconcile,writeoff:0 msgid "Write-Off amount" -msgstr "" +msgstr "Tab/vind konto" #. module: account #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Ulæste beskeder" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3036,7 +3044,7 @@ msgstr "" #: view:report.account.sales:0 #: view:report.account_type.sales:0 msgid "Sales by Account" -msgstr "" +msgstr "Salg pr. konto" #. module: account #: code:addons/account/account.py:1449 @@ -3047,12 +3055,12 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Accounting Period" -msgstr "" +msgstr "Regnskabs periode" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "" +msgstr "Salgs journal" #. module: account #: code:addons/account/account.py:2346 @@ -3082,18 +3090,18 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_tax_code_list #: model:ir.ui.menu,name:account.menu_action_tax_code_list msgid "Tax codes" -msgstr "" +msgstr "Moms koder" #. module: account #: view:account.account:0 msgid "Unrealized Gains and losses" -msgstr "" +msgstr "Urealisterede tab/vind" #. module: account #: model:ir.ui.menu,name:account.menu_account_customer #: model:ir.ui.menu,name:account.menu_finance_receivables msgid "Customers" -msgstr "" +msgstr "Kunder" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -3109,12 +3117,12 @@ msgstr "Periode til" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "August" -msgstr "" +msgstr "August" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "Vis debit/kredit kolonner" #. module: account #: selection:account.entries.report,month:0 @@ -3123,7 +3131,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "October" -msgstr "" +msgstr "Oktober" #. module: account #: help:account.move.line,quantity:0 @@ -3136,7 +3144,7 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Fjern udligning fra transaktioner" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 @@ -3148,13 +3156,13 @@ msgstr "" #: field:product.category,property_account_expense_categ:0 #: field:product.template,property_account_expense:0 msgid "Expense Account" -msgstr "" +msgstr "Udgifts konto" #. module: account #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Sammendrag" #. module: account #: help:account.invoice,period_id:0 @@ -3180,7 +3188,7 @@ msgstr "" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "" +msgstr "Standard salgsmoms" #. module: account #: help:account.model.line,date_maturity:0 @@ -3193,12 +3201,12 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_accounting msgid "Financial Accounting" -msgstr "Finans" +msgstr "Finans regnskab" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "" +msgstr "Tab & vind" #. module: account #: view:account.fiscal.position:0 @@ -3212,7 +3220,7 @@ msgstr "" #: model:ir.model,name:account.model_account_fiscal_position #: field:res.partner,property_account_position:0 msgid "Fiscal Position" -msgstr "Nuværende position" +msgstr "Momskode" #. module: account #: code:addons/account/account_invoice.py:823 @@ -3231,7 +3239,7 @@ msgstr "En partner pr. side" #: field:account.account,child_parent_ids:0 #: field:account.account.template,child_parent_ids:0 msgid "Children" -msgstr "" +msgstr "Under-konti" #. module: account #: report:account.account.balance:0 @@ -3239,7 +3247,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_account_balance #: model:ir.ui.menu,name:account.menu_general_Balance_report msgid "Trial Balance" -msgstr "" +msgstr "Råbalance" #. module: account #: code:addons/account/account.py:431 @@ -3264,23 +3272,23 @@ msgstr "Vælg regnskabs år" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "Datointerval" #. module: account #: view:account.period:0 msgid "Search Period" -msgstr "" +msgstr "Søg periode" #. module: account #: view:account.change.currency:0 msgid "Invoice Currency" -msgstr "" +msgstr "Faktura valuta" #. module: account #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Konto rapporter" #. module: account #: field:account.payment.term,line_ids:0 @@ -3290,12 +3298,12 @@ msgstr "Betingelser" #. module: account #: field:account.chart.template,tax_template_ids:0 msgid "Tax Template List" -msgstr "" +msgstr "Moms skabelon liste" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "" +msgstr "Salgs/indkøbs journaler" #. module: account #: help:account.account,currency_mode:0 @@ -3328,33 +3336,33 @@ msgstr "Antal decimaler til brug for konto koden" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Leverandør betalingsbetingelse" #. module: account #: view:account.fiscalyear:0 msgid "Search Fiscalyear" -msgstr "" +msgstr "Søg regnskabsår" #. module: account #: selection:account.tax,applicable_type:0 msgid "Always" -msgstr "" +msgstr "Altid" #. module: account #: field:account.config.settings,module_account_accountant:0 msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." -msgstr "" +msgstr "Komplette regnskabs faciliteter: Journaler, kontoplan, tab & vind" #. module: account #: view:account.analytic.line:0 msgid "Total Quantity" -msgstr "" +msgstr "Total antal/sum" #. module: account #: field:account.move.line.reconcile.writeoff,writeoff_acc_id:0 msgid "Write-Off account" -msgstr "" +msgstr "Tab/Vind konto" #. module: account #: field:account.model.line,model_id:0 @@ -3391,32 +3399,32 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "" +msgstr "Proforma fakturaer" #. module: account #: model:process.node,name:account.process_node_electronicfile0 msgid "Electronic File" -msgstr "" +msgstr "Elektronisk fil/arkiv" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Udlignings-reference" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 msgid "Company has a chart of accounts" -msgstr "" +msgstr "Firma har en kontoplan" #. module: account #: model:ir.model,name:account.model_account_tax_code_template msgid "Tax Code Template" -msgstr "" +msgstr "Momskode skabelon" #. module: account #: model:ir.model,name:account.model_account_partner_ledger msgid "Account Partner Ledger" -msgstr "" +msgstr "Partner finans konto" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice @@ -3506,7 +3514,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Konto periode" #. module: account #: help:account.account,currency_id:0 @@ -3526,12 +3534,12 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_chart_template_form #: model:ir.ui.menu,name:account.menu_action_account_chart_template_form msgid "Chart of Accounts Templates" -msgstr "" +msgstr "Kontoplan skabeloner" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Transaktioner" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile @@ -3589,12 +3597,12 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_journals #: model:ir.ui.menu,name:account.menu_journals_report msgid "Journals" -msgstr "" +msgstr "Journaler" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 msgid "Remaining Partners" -msgstr "" +msgstr "Tilbageværende partnere" #. module: account #: view:account.subscription:0 @@ -3618,12 +3626,12 @@ msgstr "Indløb" #: view:account.installer:0 #: view:wizard.multi.charts.accounts:0 msgid "Accounting Application Configuration" -msgstr "Regnskabsmodulets konfigurering" +msgstr "Opsætning af regnskabsmodulet" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "konto momsopgørelse" #. module: account #: help:account.bank.statement,name:0 @@ -3646,26 +3654,26 @@ msgstr "" #: field:account.bank.statement,balance_start:0 #: field:account.treasury.report,starting_balance:0 msgid "Starting Balance" -msgstr "" +msgstr "Opstarts balance" #. module: account #: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" -msgstr "" +msgstr "Ingen partner angivet" #. module: account #: model:ir.actions.act_window,name:account.action_account_period_close #: model:ir.actions.act_window,name:account.action_account_period_tree #: model:ir.ui.menu,name:account.menu_action_account_period_close_tree msgid "Close a Period" -msgstr "" +msgstr "Luk en periode" #. module: account #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Åbnings subtotal" #. module: account #: constraint:account.move.line:0 @@ -3677,12 +3685,12 @@ msgstr "" #. module: account #: field:account.financial.report,display_detail:0 msgid "Display details" -msgstr "" +msgstr "Vis detaljer" #. module: account #: report:account.overdue:0 msgid "VAT:" -msgstr "" +msgstr "Moms" #. module: account #: help:account.analytic.line,amount_currency:0 @@ -3715,40 +3723,40 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_select msgid "Unreconcile Entries" -msgstr "" +msgstr "Uudlignede posteringer" #. module: account #: field:account.tax.code,notprintable:0 #: field:account.tax.code.template,notprintable:0 msgid "Not Printable in Invoice" -msgstr "" +msgstr "Ingen faktura der kan printes" #. module: account #: report:account.vat.declaration:0 #: field:account.vat.declaration,chart_tax_id:0 msgid "Chart of Tax" -msgstr "" +msgstr "moms oversigt" #. module: account #: view:account.journal:0 msgid "Search Account Journal" -msgstr "" +msgstr "Søg konto journal" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice msgid "Pending Invoice" -msgstr "" +msgstr "Afventende faktura" #. module: account #: view:account.invoice.report:0 #: selection:account.subscription,period_type:0 msgid "year" -msgstr "" +msgstr "år" #. module: account #: field:account.config.settings,date_start:0 msgid "Start date" -msgstr "" +msgstr "Startdato" #. module: account #: view:account.invoice.refund:0 @@ -3778,7 +3786,7 @@ msgstr "" #. module: account #: model:ir.actions.report.xml,name:account.account_transfers msgid "Transfers" -msgstr "" +msgstr "Overførsler" #. module: account #: field:account.config.settings,expects_chart_of_accounts:0 @@ -3788,7 +3796,7 @@ msgstr "" #. module: account #: view:account.chart:0 msgid "Account charts" -msgstr "" +msgstr "Konto oversigter" #. module: account #: view:cash.box.out:0 @@ -3799,7 +3807,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Tax Amount" -msgstr "" +msgstr "Momsbeløb" #. module: account #: view:account.move:0 @@ -3836,17 +3844,17 @@ msgstr "" #: view:account.invoice:0 #: model:process.node,name:account.process_node_draftinvoices0 msgid "Draft Invoice" -msgstr "" +msgstr "Proforma faktura" #. module: account #: view:account.config.settings:0 msgid "Options" -msgstr "" +msgstr "Optioner" #. module: account #: field:account.aged.trial.balance,period_length:0 msgid "Period Length (days)" -msgstr "" +msgstr "Perilde længde (dage)" #. module: account #: code:addons/account/account.py:1363 @@ -3859,7 +3867,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "" +msgstr "Udskriv salgs-/indkøbs journal" #. module: account #: view:account.installer:0 @@ -3870,7 +3878,7 @@ msgstr "Fortsæt" #: view:account.invoice.report:0 #: field:account.invoice.report,categ_id:0 msgid "Category of Product" -msgstr "" +msgstr "Produkt kategori" #. module: account #: code:addons/account/account.py:930 @@ -3879,12 +3887,14 @@ msgid "" "There is no fiscal year defined for this date.\n" "Please create one from the configuration of the accounting menu." msgstr "" +"Der er ikke oprettet nogen regnskabsperiode for denne dato.\n" +"Opret denne fra konfigureringen/opsætningen i regnskabs menuen." #. module: account #: view:account.addtmpl.wizard:0 #: model:ir.actions.act_window,name:account.action_account_addtmpl_wizard_form msgid "Create Account" -msgstr "" +msgstr "Opret konto" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:62 @@ -3895,17 +3905,17 @@ msgstr "" #. module: account #: field:account.invoice.tax,tax_amount:0 msgid "Tax Code Amount" -msgstr "" +msgstr "Momskode beløb" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "" +msgstr "Uudlignede posteringer" #. module: account #: selection:account.account.type,close_method:0 msgid "Detail" -msgstr "" +msgstr "Detalje" #. module: account #: help:account.config.settings,default_purchase_tax:0 @@ -3932,7 +3942,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_tree #: model:ir.ui.menu,name:account.menu_action_account_tree2 msgid "Chart of Accounts" -msgstr "Kontoplan" +msgstr "Posterings ark" #. module: account #: view:account.tax.chart:0 @@ -3947,7 +3957,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "" +msgstr "Udlignings proces partner for partner" #. module: account #: view:account.chart:0 @@ -3994,7 +4004,7 @@ msgstr "" #: selection:accounting.report,filter_cmp:0 #: field:analytic.entries.report,date:0 msgid "Date" -msgstr "" +msgstr "Dato" #. module: account #: view:account.move:0 @@ -4005,12 +4015,12 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile" -msgstr "" +msgstr "Fjern udligning" #. module: account #: view:account.chart.template:0 msgid "Chart of Accounts Template" -msgstr "" +msgstr "Kontooversigt skabelon" #. module: account #: code:addons/account/account.py:2358 @@ -4035,7 +4045,7 @@ msgstr "Alle" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reporting_budgets msgid "Budgets" -msgstr "" +msgstr "Budgetter" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -4054,18 +4064,18 @@ msgstr "" #: selection:accounting.report,filter:0 #: selection:accounting.report,filter_cmp:0 msgid "No Filters" -msgstr "" +msgstr "Ingen filtre" #. module: account #: view:account.invoice.report:0 #: model:res.groups,name:account.group_proforma_invoices msgid "Pro-forma Invoices" -msgstr "" +msgstr "proforma fakturaer" #. module: account #: view:res.partner:0 msgid "History" -msgstr "" +msgstr "Historik" #. module: account #: help:account.tax,applicable_type:0 @@ -4078,7 +4088,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "Tjek totalen på leverandør fakturaer" #. module: account #: view:account.tax:0 @@ -4097,7 +4107,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,product_qty:0 msgid "Qty" -msgstr "" +msgstr "Antal" #. module: account #: help:account.tax.code,sign:0 @@ -4115,7 +4125,7 @@ msgstr "" #. module: account #: field:res.partner,property_account_payable:0 msgid "Account Payable" -msgstr "" +msgstr "Kreditor" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:88 @@ -4126,7 +4136,7 @@ msgstr "" #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 msgid "Payment Order" -msgstr "" +msgstr "Betalings ordre" #. module: account #: help:account.account.template,reconcile:0 @@ -4153,17 +4163,17 @@ msgstr "" #. module: account #: view:account.state.open:0 msgid "Open Invoice" -msgstr "" +msgstr "Åben faktura" #. module: account #: field:account.invoice.tax,factor_tax:0 msgid "Multipication factor Tax code" -msgstr "" +msgstr "Multiplikationsfaktor for moms" #. module: account #: field:account.config.settings,complete_tax_set:0 msgid "Complete set of taxes" -msgstr "" +msgstr "Komplet sæt momskoder" #. module: account #: field:account.account,name:0 @@ -4175,7 +4185,7 @@ msgstr "" #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 msgid "Name" -msgstr "" +msgstr "Navn" #. module: account #: code:addons/account/installer.py:115 @@ -4191,7 +4201,7 @@ msgstr "" #. module: account #: field:account.move.line,date:0 msgid "Effective date" -msgstr "" +msgstr "Ikrafttrædelses dato" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:100 @@ -4203,23 +4213,23 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "" +msgstr "Opsætning bank konti" #. module: account #: xsl:account.transfer:0 msgid "Partner ID" -msgstr "" +msgstr "Partner ID" #. module: account #: help:account.bank.statement,message_ids:0 #: help:account.invoice,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Besked- og kommunikations historik" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "" +msgstr "Journal for analytiske posteringer" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4267,12 +4277,12 @@ msgstr "" #: view:product.template:0 #: view:res.partner:0 msgid "Accounting" -msgstr "" +msgstr "Regnskab" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current year" -msgstr "" +msgstr "Posteringer med datoer i indeværende år." #. module: account #: field:account.account,child_consol_ids:0 @@ -4284,7 +4294,7 @@ msgstr "" #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Utilstrækkelige data!" #. module: account #: help:account.account,unrealized_gain_loss:0 @@ -4296,7 +4306,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "General Accounting" -msgstr "" +msgstr "Regnskab" #. module: account #: help:account.fiscalyear.close,journal_id:0 @@ -4310,55 +4320,55 @@ msgstr "" #. module: account #: view:account.installer:0 msgid "title" -msgstr "" +msgstr "titel" #. module: account #: view:account.invoice:0 #: view:account.subscription:0 msgid "Set to Draft" -msgstr "" +msgstr "Sæt til udkast" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form msgid "Recurring Lines" -msgstr "" +msgstr "Gentagne linier" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "" +msgstr "Vis partnere" #. module: account #: view:account.invoice:0 msgid "Validate" -msgstr "" +msgstr "Validér" #. module: account #: model:account.financial.report,name:account.account_financial_report_assets0 msgid "Assets" -msgstr "" +msgstr "Aktiver" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "Regnskab & finans" #. module: account #: view:account.invoice.confirm:0 msgid "Confirm Invoices" -msgstr "" +msgstr "Bekræft fakturaer" #. module: account #: selection:account.account,currency_mode:0 msgid "Average Rate" -msgstr "" +msgstr "Gennemsnits rate" #. module: account #: field:account.balance.report,display_account:0 #: field:account.common.account.report,display_account:0 #: field:account.report.general.ledger,display_account:0 msgid "Display Accounts" -msgstr "" +msgstr "Vis konti" #. module: account #: view:account.state.open:0 @@ -4368,25 +4378,25 @@ msgstr "" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Faktura moms analyse konto" #. module: account #: field:account.chart,period_from:0 msgid "Start period" -msgstr "" +msgstr "Start periode" #. module: account #: field:account.tax,name:0 #: field:account.tax.template,name:0 #: report:account.vat.declaration:0 msgid "Tax Name" -msgstr "" +msgstr "Moms navn" #. module: account #: view:account.config.settings:0 #: model:ir.ui.menu,name:account.menu_finance_configuration msgid "Configuration" -msgstr "" +msgstr "Konfiguration" #. module: account #: model:account.payment.term,name:account.account_payment_term @@ -4398,7 +4408,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_analytic_balance #: model:ir.actions.report.xml,name:account.account_analytic_account_balance msgid "Analytic Balance" -msgstr "" +msgstr "Analytisk balance" #. module: account #: help:res.partner,property_payment_term:0 @@ -4406,6 +4416,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Denne betalingsbetingelse vil blive anvendt i stedet for den der er standard " +"på salgsordrer og fakturaer" #. module: account #: view:account.config.settings:0 @@ -4424,7 +4436,7 @@ msgstr "" #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "" +msgstr "Registrerede posteringer" #. module: account #: field:account.move.line,blocked:0 @@ -4434,12 +4446,12 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Search Tax Templates" -msgstr "" +msgstr "Søg moms skabeloner" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "" +msgstr "Kladde indtastninger" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4453,7 +4465,7 @@ msgstr "" #: field:account.account,shortcut:0 #: field:account.account.template,shortcut:0 msgid "Shortcut" -msgstr "" +msgstr "Genvej" #. module: account #: view:account.account:0 @@ -4469,7 +4481,7 @@ msgstr "" #: field:report.account.receivable,type:0 #: field:report.account_type.sales,user_type:0 msgid "Account Type" -msgstr "" +msgstr "Kontotype" #. module: account #: view:account.bank.statement:0 @@ -4479,7 +4491,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_invoice_cancel msgid "Cancel the Selected Invoices" -msgstr "" +msgstr "Fortryd valgte fakturaer" #. module: account #: code:addons/account/account_bank_statement.py:424 @@ -4493,6 +4505,8 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft supplier invoices." msgstr "" +"Analytiske omkostninger (tidsskemaer, nogle købte varer..) stammer fra " +"analytiske konti. Disse danner kladde leverandør fakturaer." #. module: account #: model:ir.actions.act_window,help:account.action_bank_tree @@ -4533,7 +4547,7 @@ msgstr "" #: field:report.account.sales,month:0 #: field:report.account_type.sales,month:0 msgid "Month" -msgstr "" +msgstr "Måned" #. module: account #: code:addons/account/account.py:668 @@ -4544,7 +4558,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Leverandør faktura bilagsrække" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4560,27 +4574,27 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Vare enhed" #. module: account #: field:res.company,paypal_account:0 msgid "Paypal Account" -msgstr "" +msgstr "Paypal konto" #. module: account #: view:account.entries.report:0 msgid "Acc.Type" -msgstr "" +msgstr "Konto type" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Bank og checks" #. module: account #: field:account.account.template,note:0 msgid "Note" -msgstr "" +msgstr "Notat" #. module: account #: selection:account.financial.report,sign:0 @@ -4592,7 +4606,7 @@ msgstr "" #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "" +msgstr "Balance (Gælds konto)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4603,7 +4617,7 @@ msgstr "" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Luknings subtotal" #. module: account #: field:account.tax,base_code_id:0 @@ -4642,12 +4656,12 @@ msgstr "" #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "" +msgstr "Alle bogførte posteringer" #. module: account #: field:report.aged.receivable,name:0 msgid "Month Range" -msgstr "" +msgstr "Måneds interval" #. module: account #: help:account.analytic.balance,empty_acc:0 @@ -4657,7 +4671,7 @@ msgstr "" #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Udligninger på åbningsposteringer" #. module: account #. openerp-web @@ -4674,7 +4688,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_importinvoice0 msgid "Statement from invoice or payment" -msgstr "" +msgstr "Kontoudtog fra faktura eller betaling" #. module: account #: code:addons/account/installer.py:115 @@ -4687,17 +4701,17 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart msgid "Set Your Accounting Options" -msgstr "" +msgstr "Angiv konto optioner" #. module: account #: model:ir.model,name:account.model_account_chart msgid "Account chart" -msgstr "" +msgstr "Konto oversigt" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "Betalings reference" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -4708,7 +4722,7 @@ msgstr "" #: report:account.analytic.account.balance:0 #: report:account.central.journal:0 msgid "Account Name" -msgstr "" +msgstr "Kontonavn" #. module: account #: help:account.fiscalyear.close,report_name:0 @@ -4718,12 +4732,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_invoice_report msgid "Invoices Statistics" -msgstr "" +msgstr "Faktura statistik" #. module: account #: field:account.account,exchange_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Omregnings kurs" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 @@ -4734,18 +4748,18 @@ msgstr "" #: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" -msgstr "" +msgstr "Udlign afskrivninger" #. module: account #: view:account.account.template:0 #: view:account.chart.template:0 msgid "Account Template" -msgstr "" +msgstr "Konto skabelon" #. module: account #: view:account.bank.statement:0 msgid "Closing Balance" -msgstr "" +msgstr "Luknings balance" #. module: account #: field:account.chart.template,visible:0 @@ -4760,18 +4774,18 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Credit Notes" -msgstr "" +msgstr "Kreditnotaer" #. module: account #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "Posteringer til udligning" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "Moms skabeloner" #. module: account #: sql_constraint:account.period:0 @@ -4786,7 +4800,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "Moms beregning" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4811,7 +4825,7 @@ msgstr "" #: field:account.account,reconcile:0 #: field:account.account.template,reconcile:0 msgid "Allow Reconciliation" -msgstr "" +msgstr "Tillad udligning" #. module: account #: constraint:account.account:0 @@ -4833,7 +4847,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Based On" -msgstr "" +msgstr "Baseret på" #. module: account #: code:addons/account/account.py:3204 @@ -4881,7 +4895,7 @@ msgstr "" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Cancelled" -msgstr "" +msgstr "Annulleret" #. module: account #: help:account.config.settings,group_proforma_invoices:0 @@ -4905,19 +4919,19 @@ msgstr "" #: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" -msgstr "" +msgstr "Købsmoms %.2f%%" #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate #: model:ir.ui.menu,name:account.menu_generate_subscription msgid "Generate Entries" -msgstr "" +msgstr "Dan posteringer" #. module: account #: help:account.vat.declaration,chart_tax_id:0 msgid "Select Charts of Taxes" -msgstr "" +msgstr "Vælg moms oversigter" #. module: account #: view:account.fiscal.position:0 @@ -4929,43 +4943,43 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Confirmed" -msgstr "" +msgstr "Bekræftet" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "" +msgstr "Annulleret faktura" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "Mine fakturaer" #. module: account #: selection:account.bank.statement,state:0 msgid "New" -msgstr "" +msgstr "Ny" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "Salgs moms" #. module: account #: field:account.tax,ref_tax_code_id:0 #: field:account.tax.template,ref_tax_code_id:0 msgid "Refund Tax Code" -msgstr "" +msgstr "Refusions momskode" #. module: account #: view:account.invoice:0 msgid "Invoice " -msgstr "" +msgstr "Faktura " #. module: account #: field:account.chart.template,property_account_income:0 msgid "Income Account on Product Template" -msgstr "" +msgstr "Omsætningskonto på vare skabelon" #. module: account #: help:account.journal.period,state:0 @@ -4997,7 +5011,7 @@ msgstr "Nyt regnskabsår" #: view:report.invoice.created:0 #: field:res.partner,invoice_ids:0 msgid "Invoices" -msgstr "" +msgstr "Fakturaer" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 @@ -5008,7 +5022,7 @@ msgstr "" #: model:account.account.type,name:account.conf_account_type_chk #: selection:account.bank.accounts.wizard,account_type:0 msgid "Check" -msgstr "" +msgstr "Tjek" #. module: account #: view:account.aged.trial.balance:0 @@ -5048,17 +5062,17 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "eller" #. module: account #: view:account.invoice.report:0 msgid "Invoiced" -msgstr "" +msgstr "Faktureret" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "" +msgstr "Bogført under posteringer" #. module: account #: view:account.use.model:0 @@ -5076,7 +5090,7 @@ msgstr "" #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 msgid "Partners Reconciled Today" -msgstr "" +msgstr "Partnere udlignet i dag" #. module: account #: help:account.invoice.tax,tax_code_id:0 @@ -5086,19 +5100,19 @@ msgstr "" #. module: account #: view:account.addtmpl.wizard:0 msgid "Add" -msgstr "" +msgstr "Tilføj" #. module: account #: selection:account.invoice,state:0 #: report:account.overdue:0 #: model:mail.message.subtype,name:account.mt_invoice_paid msgid "Paid" -msgstr "" +msgstr "Betalt" #. module: account #: field:account.invoice,tax_line:0 msgid "Tax Lines" -msgstr "" +msgstr "Moms linier" #. module: account #: help:account.move.line,statement_id:0 @@ -5108,7 +5122,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 msgid "Draft invoices are validated. " -msgstr "" +msgstr "Kladdefakturaer er godkendt. " #. module: account #: help:account.tax,account_collected_id:0 @@ -5121,23 +5135,23 @@ msgstr "" #: code:addons/account/account.py:890 #, python-format msgid "Opening Period" -msgstr "" +msgstr "Åbnings periode" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "" +msgstr "Posteringer til vurdering" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round Globally" -msgstr "" +msgstr "Global afrunding" #. module: account #: view:account.bank.statement:0 #: view:account.subscription:0 msgid "Compute" -msgstr "" +msgstr "Beregn" #. module: account #: field:account.tax,type_tax_use:0 @@ -5160,7 +5174,7 @@ msgstr "" #: field:account.payment.term,active:0 #: field:account.tax,active:0 msgid "Active" -msgstr "" +msgstr "Aktiv" #. module: account #: view:account.bank.statement:0 @@ -5175,22 +5189,22 @@ msgstr "" #: field:account.analytic.inverted.balance,date2:0 #: field:account.analytic.journal.report,date2:0 msgid "End of period" -msgstr "" +msgstr "Periode afslutning" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 msgid "Payment of invoices" -msgstr "" +msgstr "Betaling af fakturaer" #. module: account #: sql_constraint:account.invoice:0 msgid "Invoice Number must be unique per Company!" -msgstr "" +msgstr "Fakturanummer skal være unikt pr. firma" #. module: account #: model:ir.actions.act_window,name:account.action_account_receivable_graph msgid "Balance by Type of Account" -msgstr "" +msgstr "Balance pr. konto type" #. module: account #: code:addons/account/account_cash_statement.py:301 @@ -5201,7 +5215,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_user msgid "Accountant" -msgstr "" +msgstr "Bogholder" #. module: account #: model:ir.actions.act_window,help:account.action_account_treasury_report_all @@ -5213,17 +5227,17 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "Regnskabschef" #. module: account #: field:account.journal,group_invoice_lines:0 msgid "Group Invoice Lines" -msgstr "" +msgstr "Grupper fakturalinier" #. module: account #: view:account.automatic.reconcile:0 msgid "Close" -msgstr "" +msgstr "Luk" #. module: account #: field:account.bank.statement.line,move_ids:0 @@ -5239,7 +5253,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_vat_declaration msgid "Account Vat Declaration" -msgstr "" +msgstr "Momsopgørelse for konto" #. module: account #: help:account.config.settings,module_account_accountant:0 @@ -5251,27 +5265,27 @@ msgstr "" #. module: account #: view:account.period:0 msgid "To Close" -msgstr "" +msgstr "Skal lukkes" #. module: account #: field:account.treasury.report,date:0 msgid "Beginning of Period Date" -msgstr "" +msgstr "Dato for periodestart" #. module: account #: model:ir.ui.menu,name:account.account_template_folder msgid "Templates" -msgstr "" +msgstr "Skabeloner" #. module: account #: field:account.invoice.tax,name:0 msgid "Tax Description" -msgstr "" +msgstr "Moms beskrivelse" #. module: account #: field:account.tax,child_ids:0 msgid "Child Tax Accounts" -msgstr "" +msgstr "Under momskonti" #. module: account #: help:account.tax,price_include:0 @@ -5284,7 +5298,7 @@ msgstr "" #. module: account #: report:account.analytic.account.balance:0 msgid "Analytic Balance -" -msgstr "" +msgstr "Analytisk balance -" #. module: account #: report:account.account.balance:0 @@ -5332,19 +5346,19 @@ msgstr "" #. module: account #: field:account.subscription,period_type:0 msgid "Period Type" -msgstr "" +msgstr "Periode type" #. module: account #: view:account.invoice:0 #: field:account.invoice,payment_ids:0 #: selection:account.vat.declaration,based_on:0 msgid "Payments" -msgstr "" +msgstr "Betalinger" #. module: account #: field:account.subscription.line,move_id:0 msgid "Entry" -msgstr "" +msgstr "Indtastning" #. module: account #: field:account.tax,python_compute_inv:0 @@ -5357,7 +5371,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_payment_term_form #: model:ir.ui.menu,name:account.menu_action_payment_term_form msgid "Payment Terms" -msgstr "" +msgstr "Betalingsbetingelser" #. module: account #: help:account.chart.template,complete_tax_set:0 @@ -5372,7 +5386,7 @@ msgstr "" #: field:account.financial.report,children_ids:0 #: model:ir.model,name:account.model_account_financial_report msgid "Account Report" -msgstr "" +msgstr "Konto rapport" #. module: account #: field:account.entries.report,year:0 @@ -5385,7 +5399,7 @@ msgstr "" #: view:report.account_type.sales:0 #: field:report.account_type.sales,name:0 msgid "Year" -msgstr "" +msgstr "År" #. module: account #: help:account.invoice,sent:0 @@ -5409,48 +5423,48 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "" +msgstr "Proforma faktura " #. module: account #: selection:account.subscription,period_type:0 msgid "month" -msgstr "" +msgstr "måned" #. module: account #: view:account.move.line:0 #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "" +msgstr "Afstemning af næste partner" #. module: account #: field:account.invoice.tax,account_id:0 #: field:account.move.line,tax_code_id:0 msgid "Tax Account" -msgstr "" +msgstr "Moms konto" #. module: account #: model:account.financial.report,name:account.account_financial_report_balancesheet0 #: model:ir.actions.act_window,name:account.action_account_report_bs #: model:ir.ui.menu,name:account.menu_account_report_bs msgid "Balance Sheet" -msgstr "" +msgstr "Balance" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "" +msgstr "Tab & Vind (Indtægstkonto)" #. module: account #: field:account.journal,allow_date:0 msgid "Check Date in Period" -msgstr "" +msgstr "Tjek dato i perioden" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports msgid "Accounting Reports" -msgstr "" +msgstr "Regnskabs rapporter" #. module: account #: field:account.move,line_id:0 @@ -5462,7 +5476,7 @@ msgstr "Postering" #. module: account #: view:account.entries.report:0 msgid "This Period" -msgstr "" +msgstr "Denne periode" #. module: account #: view:account.tax.template:0 @@ -5491,7 +5505,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_automatic_reconcile msgid "Automatic Reconcile" -msgstr "" +msgstr "Automatisk udligning" #. module: account #: view:account.analytic.line:0 @@ -5526,7 +5540,7 @@ msgstr "" #: model:process.transition,name:account.process_transition_suppliervalidentries0 #: model:process.transition,name:account.process_transition_validentries0 msgid "Validation" -msgstr "" +msgstr "Validering" #. module: account #: help:account.bank.statement,message_summary:0 @@ -5556,7 +5570,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "" +msgstr "Tillad annullering af indtastninger" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -5580,12 +5594,12 @@ msgstr "(Konto / Kontakt) Navn" #. module: account #: field:account.partner.reconcile.process,progress:0 msgid "Progress" -msgstr "" +msgstr "Fremdrift" #. module: account #: field:wizard.multi.charts.accounts,bank_accounts_id:0 msgid "Cash and Banks" -msgstr "" +msgstr "Kasse og banker" #. module: account #: model:ir.model,name:account.model_account_installer @@ -5595,7 +5609,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Recompute taxes and total" -msgstr "" +msgstr "Genberegn moms og totaler" #. module: account #: code:addons/account/account.py:1116 @@ -5606,12 +5620,12 @@ msgstr "" #. module: account #: field:account.tax.template,include_base_amount:0 msgid "Include in Base Amount" -msgstr "" +msgstr "Inkludér i basisbeløb" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Leverandør fakturanummer" #. module: account #: help:account.payment.term.line,days:0 @@ -5623,7 +5637,7 @@ msgstr "" #. module: account #: view:account.payment.term.line:0 msgid "Amount Computation" -msgstr "" +msgstr "Beløbs beregning" #. module: account #: code:addons/account/account_move_line.py:1105 @@ -5649,7 +5663,7 @@ msgstr "(Holdes tom for at åbne nuværende situation)" #: field:account.analytic.inverted.balance,date1:0 #: field:account.analytic.journal.report,date1:0 msgid "Start of period" -msgstr "" +msgstr "Periode start" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 @@ -5672,13 +5686,13 @@ msgstr "" #: selection:account.period,state:0 #: selection:report.invoice.created,state:0 msgid "Open" -msgstr "" +msgstr "Åbn" #. module: account #: view:account.config.settings:0 #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" -msgstr "" +msgstr "Analytisk regnskab" #. module: account #: help:account.payment.term.line,value:0 @@ -5697,14 +5711,14 @@ msgstr "" #. module: account #: view:account.invoice.tax:0 msgid "Tax Codes" -msgstr "" +msgstr "Moms koder" #. module: account #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 #: selection:report.invoice.created,type:0 msgid "Customer Refund" -msgstr "" +msgstr "Kunde kreditnota" #. module: account #: field:account.tax,ref_tax_sign:0 @@ -5717,17 +5731,17 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_report_invoice_created msgid "Report of Invoices Created within Last 15 days" -msgstr "" +msgstr "Rapport over fakturaer dannet indenfor seneste 15 dage" #. module: account #: field:account.fiscalyear,end_journal_period_id:0 msgid "End of Year Entries Journal" -msgstr "" +msgstr "Årsafslutnings journal" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Kladde kreditnota " #. module: account #: view:cash.box.in:0 @@ -5738,7 +5752,7 @@ msgstr "" #: view:account.payment.term.line:0 #: field:account.payment.term.line,value_amount:0 msgid "Amount To Pay" -msgstr "" +msgstr "Beløb til betaling" #. module: account #: help:account.partner.reconcile.process,to_reconcile:0 @@ -5756,7 +5770,7 @@ msgstr "" #. module: account #: field:account.entries.report,quantity:0 msgid "Products Quantity" -msgstr "" +msgstr "Vare antal" #. module: account #: view:account.entries.report:0 @@ -5765,25 +5779,25 @@ msgstr "" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Unposted" -msgstr "" +msgstr "Ikke bogført" #. module: account #: view:account.change.currency:0 #: model:ir.actions.act_window,name:account.action_account_change_currency #: model:ir.model,name:account.model_account_change_currency msgid "Change Currency" -msgstr "" +msgstr "Skift valuta" #. module: account #: model:process.node,note:account.process_node_accountingentries0 #: model:process.node,note:account.process_node_supplieraccountingentries0 msgid "Accounting entries." -msgstr "" +msgstr "Konto registreringer" #. module: account #: view:account.invoice:0 msgid "Payment Date" -msgstr "" +msgstr "Betalingsdato" #. module: account #: view:account.bank.statement:0 @@ -5801,7 +5815,7 @@ msgstr "Analyse konto" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "Kunde fakturaer og kreditnotaer" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5814,7 +5828,7 @@ msgstr "Beløb Valuta" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "" +msgstr "Afrunding pr. linie" #. module: account #: report:account.analytic.account.balance:0 @@ -5839,7 +5853,7 @@ msgstr "" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Normal Text" -msgstr "" +msgstr "Normal tekst" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 @@ -5852,6 +5866,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Betalingsbetingelsen vil blive brugt i stedet for standardbetingelen på " +"indkøbsordrer og leverandørfakturaer." #. module: account #: help:account.automatic.reconcile,power:0 @@ -5875,14 +5891,14 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Kladde kreditnota" #. module: account #: view:account.analytic.chart:0 #: view:account.chart:0 #: view:account.tax.chart:0 msgid "Open Charts" -msgstr "" +msgstr "Åbn oversigter" #. module: account #: field:account.central.journal,amount_currency:0 @@ -5892,7 +5908,7 @@ msgstr "" #: field:account.print.journal,amount_currency:0 #: field:account.report.general.ledger,amount_currency:0 msgid "With Currency" -msgstr "" +msgstr "Med valuta" #. module: account #: view:account.bank.statement:0 @@ -5902,12 +5918,12 @@ msgstr "" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Automatic formatting" -msgstr "" +msgstr "Automatisk formattering" #. module: account #: view:account.move.line.reconcile:0 msgid "Reconcile With Write-Off" -msgstr "" +msgstr "Udlign med afskrivninger" #. module: account #: constraint:account.move.line:0 @@ -5929,7 +5945,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile msgid "Account Automatic Reconcile" -msgstr "" +msgstr "Automatisk udligning af konto" #. module: account #: view:account.move:0 @@ -5941,22 +5957,22 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "" +msgstr "Dan åbningsposteringer" #. module: account #: help:account.tax,type:0 msgid "The computation method for the tax amount." -msgstr "" +msgstr "Beregningsmetode for denne momskode." #. module: account #: view:account.payment.term.line:0 msgid "Due Date Computation" -msgstr "" +msgstr "Forfaldsdato beregning" #. module: account #: field:report.invoice.created,create_date:0 msgid "Create Date" -msgstr "" +msgstr "Opret dato" #. module: account #: view:account.analytic.journal:0 @@ -5964,12 +5980,12 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_form #: model:ir.ui.menu,name:account.account_def_analytic_journal msgid "Analytic Journals" -msgstr "" +msgstr "Analytiske journaler" #. module: account #: field:account.account,child_id:0 msgid "Child Accounts" -msgstr "" +msgstr "Under-konti" #. module: account #: code:addons/account/account_move_line.py:1117 @@ -5982,17 +5998,17 @@ msgstr "" #: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" -msgstr "" +msgstr "Afskrivning" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "" +msgstr "poster" #. module: account #: field:res.partner,debit:0 msgid "Total Payable" -msgstr "" +msgstr "Total skyldig" #. module: account #: model:account.account.type,name:account.data_account_type_income @@ -6017,7 +6033,7 @@ msgstr "Leverandør" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "March" -msgstr "" +msgstr "Marts" #. module: account #: report:account.analytic.account.journal:0 @@ -6040,7 +6056,7 @@ msgstr "Fri Reference" #: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" -msgstr "" +msgstr "Debitor og kreditor konti" #. module: account #: field:account.fiscal.position.account.template,position_id:0 @@ -6050,7 +6066,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Select Company" -msgstr "" +msgstr "Vælg firma" #. module: account #: model:ir.actions.act_window,name:account.action_account_state_open @@ -6061,13 +6077,13 @@ msgstr "" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Max Qty:" -msgstr "" +msgstr "Max antal" #. module: account #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.action_account_invoice_refund msgid "Refund Invoice" -msgstr "" +msgstr "Kreditnota" #. module: account #: model:ir.actions.act_window,help:account.action_account_entries_report_all @@ -6090,7 +6106,7 @@ msgstr "" #: field:report.account.sales,period_id:0 #: field:report.account_type.sales,period_id:0 msgid "Force Period" -msgstr "" +msgstr "Gennemtving periode" #. module: account #: model:ir.actions.act_window,help:account.action_account_form @@ -6138,7 +6154,7 @@ msgstr "" #: field:accounting.report,filter:0 #: field:accounting.report,filter_cmp:0 msgid "Filter by" -msgstr "" +msgstr "filtrer efter" #. module: account #: code:addons/account/account.py:2334 @@ -6159,13 +6175,13 @@ msgstr "" #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "Tabs konto" #. module: account #: field:account.tax,account_collected_id:0 #: field:account.tax.template,account_collected_id:0 msgid "Invoice Tax Account" -msgstr "" +msgstr "Faktura moms konto" #. module: account #: model:ir.actions.act_window,name:account.action_account_general_journal @@ -6186,7 +6202,7 @@ msgstr "" #. module: account #: field:account.payment.term.line,days:0 msgid "Number of Days" -msgstr "" +msgstr "Antal dage" #. module: account #: code:addons/account/account.py:1357 @@ -6199,7 +6215,7 @@ msgstr "" #. module: account #: view:account.financial.report:0 msgid "Report" -msgstr "" +msgstr "Rapport" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template @@ -6215,20 +6231,20 @@ msgstr "" #: report:account.analytic.account.cost_ledger:0 #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Printing date" -msgstr "" +msgstr "Udskrivningsdato" #. module: account #: selection:account.account.type,close_method:0 #: selection:account.tax,type:0 #: selection:account.tax.template,type:0 msgid "None" -msgstr "" +msgstr "Ingen" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree3 #: model:ir.ui.menu,name:account.menu_action_invoice_tree3 msgid "Customer Refunds" -msgstr "" +msgstr "Kunde kreditnotaer" #. module: account #: field:account.account,foreign_balance:0 @@ -6238,7 +6254,7 @@ msgstr "" #. module: account #: field:account.journal.period,name:0 msgid "Journal-Period Name" -msgstr "" +msgstr "Journal periode navn" #. module: account #: field:account.invoice.tax,factor_base:0 @@ -6248,12 +6264,12 @@ msgstr "" #. module: account #: help:account.journal,company_id:0 msgid "Company related to this journal" -msgstr "" +msgstr "Firma knyttet til denne konto" #. module: account #: help:account.config.settings,group_multi_currency:0 msgid "Allows you multi currency environment" -msgstr "" +msgstr "Tillader multi-valuta" #. module: account #: view:account.subscription:0 @@ -6287,18 +6303,18 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" -msgstr "" +msgstr "Analytisk postering" #. module: account #: view:res.company:0 #: field:res.company,overdue_msg:0 msgid "Overdue Payments Message" -msgstr "" +msgstr "Forfalden betalings besked" #. module: account #: field:account.entries.report,date_created:0 msgid "Date Created" -msgstr "" +msgstr "Dato oprettet" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form @@ -6316,7 +6332,7 @@ msgstr "" #: view:account.chart.template:0 #: field:account.chart.template,account_root_id:0 msgid "Root Account" -msgstr "" +msgstr "Oprindelses konto" #. module: account #: field:res.partner,last_reconciliation_date:0 @@ -6332,7 +6348,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Models" -msgstr "" +msgstr "Modeller" #. module: account #: code:addons/account/account_invoice.py:1124 @@ -6345,7 +6361,7 @@ msgstr "" #. module: account #: field:product.template,taxes_id:0 msgid "Customer Taxes" -msgstr "" +msgstr "Kunde moms" #. module: account #: help:account.model,name:0 @@ -6355,12 +6371,12 @@ msgstr "" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "" +msgstr "Salgsmoms" #. module: account #: view:account.tax.code:0 msgid "Reporting Configuration" -msgstr "" +msgstr "Rapporterings opsætning" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree4 @@ -6380,13 +6396,13 @@ msgstr "" #: field:account.tax,type:0 #: field:account.tax.template,type:0 msgid "Tax Type" -msgstr "" +msgstr "Moms type" #. module: account #: model:ir.actions.act_window,name:account.action_account_template_form #: model:ir.ui.menu,name:account.menu_action_account_template_form msgid "Account Templates" -msgstr "" +msgstr "Konto skabeloner" #. module: account #: help:account.config.settings,complete_tax_set:0 @@ -6401,17 +6417,17 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Tax Statement" -msgstr "" +msgstr "Moms kontoudtog" #. module: account #: model:ir.model,name:account.model_res_company msgid "Companies" -msgstr "" +msgstr "Firmaer" #. module: account #: view:account.invoice.report:0 msgid "Open and Paid Invoices" -msgstr "" +msgstr "Åbne og betalte fakturaer" #. module: account #: selection:account.financial.report,display_detail:0 @@ -6421,12 +6437,12 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "Bank og kasse" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 msgid "Select a fiscal year to close" -msgstr "" +msgstr "Vælg regnskabsår at lukke" #. module: account #: help:account.chart.template,tax_template_ids:0 @@ -6447,12 +6463,12 @@ msgstr "" #: field:account.chart,fiscalyear:0 #: view:account.fiscalyear:0 msgid "Fiscal year" -msgstr "" +msgstr "Regnskabsår" #. module: account #: view:account.move.reconcile:0 msgid "Partial Reconcile Entries" -msgstr "" +msgstr "Delvist udlignede poster" #. module: account #: view:account.aged.trial.balance:0 @@ -6491,7 +6507,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Cancel" -msgstr "" +msgstr "Annullér" #. module: account #: selection:account.account,type:0 @@ -6499,7 +6515,7 @@ msgstr "" #: model:account.account.type,name:account.data_account_type_receivable #: selection:account.entries.report,type:0 msgid "Receivable" -msgstr "" +msgstr "Kreditor" #. module: account #: constraint:account.move.line:0 @@ -6515,12 +6531,12 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Other Info" -msgstr "" +msgstr "Anden info" #. module: account #: field:account.journal,default_credit_account_id:0 msgid "Default Credit Account" -msgstr "" +msgstr "Standard krediterings konto" #. module: account #: help:account.analytic.line,currency_id:0 @@ -6531,7 +6547,7 @@ msgstr "" #: code:addons/account/installer.py:69 #, python-format msgid "Custom" -msgstr "" +msgstr "Tilpasset" #. module: account #: view:account.analytic.account:0 @@ -6547,12 +6563,12 @@ msgstr "" #: model:account.account.type,name:account.account_type_cash_equity #: model:account.account.type,name:account.conf_account_type_equity msgid "Equity" -msgstr "" +msgstr "Egenkapital" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "" +msgstr "Konto for interne flytninger" #. module: account #: code:addons/account/wizard/pos_box.py:32 @@ -6563,12 +6579,12 @@ msgstr "" #. module: account #: selection:account.tax,type:0 msgid "Percentage" -msgstr "" +msgstr "Procent" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "" +msgstr "Afrund globalt" #. module: account #: selection:account.report.general.ledger,sortby:0 @@ -6589,18 +6605,18 @@ msgstr "" #. module: account #: view:project.account.analytic.line:0 msgid "View Account Analytic Lines" -msgstr "" +msgstr "Vis kontoens analytiske poster" #. module: account #: field:account.invoice,internal_number:0 #: field:report.invoice.created,number:0 msgid "Invoice Number" -msgstr "" +msgstr "Fakturanummer" #. module: account #: field:account.bank.statement,difference:0 msgid "Difference" -msgstr "" +msgstr "Forskel" #. module: account #: help:account.tax,include_base_amount:0 @@ -6612,7 +6628,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile msgid "Reconciliation: Go to Next Partner" -msgstr "" +msgstr "Udligning: Gå til næste partner" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance @@ -6642,6 +6658,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Der er ikke defineret nogen åbnings-/lukningsperiode, opret en for at få en " +"åbningsbalance." #. module: account #: help:account.tax.template,sequence:0 @@ -6666,25 +6684,25 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "User Error!" -msgstr "" +msgstr "Brugerfejl !" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "Kasser" #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 #: view:account.journal:0 msgid "Liquidity" -msgstr "" +msgstr "Likviditet" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "" +msgstr "Analytisk journalposteringer" #. module: account #: field:account.config.settings,has_default_company:0 @@ -6702,7 +6720,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash msgid "Bank and Cash" -msgstr "" +msgstr "Bank og kasse" #. module: account #: model:ir.actions.act_window,help:account.action_analytic_entries_report @@ -6716,12 +6734,12 @@ msgstr "" #. module: account #: sql_constraint:account.journal:0 msgid "The name of the journal must be unique per company !" -msgstr "" +msgstr "Journalens navn skal være unik pr. firma !" #. module: account #: field:account.account.template,nocreate:0 msgid "Optional create" -msgstr "" +msgstr "Optionel oprettelse" #. module: account #: code:addons/account/account.py:686 @@ -6739,12 +6757,12 @@ msgstr "" #: selection:report.invoice.created,type:0 #, python-format msgid "Supplier Refund" -msgstr "" +msgstr "Leverandør kreditnota" #. module: account #: field:account.bank.statement,move_line_ids:0 msgid "Entry lines" -msgstr "" +msgstr "Indtastningslinier" #. module: account #: field:account.move.line,centralisation:0 @@ -6772,7 +6790,7 @@ msgstr "" #: view:account.tax.code.template:0 #: view:analytic.entries.report:0 msgid "Group By..." -msgstr "" +msgstr "Sorter efter" #. module: account #: code:addons/account/account.py:1024 @@ -6781,13 +6799,15 @@ msgid "" "There is no period defined for this date: %s.\n" "Please create one." msgstr "" +"Der er ikke oprettet nogen periode for denne dato: %s.\n" +"Venligst opret én." #. module: account #: field:account.analytic.line,product_uom_id:0 #: field:account.invoice.line,uos_id:0 #: field:account.move.line,product_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Enhed" #. module: account #: help:account.journal,group_invoice_lines:0 @@ -6816,12 +6836,12 @@ msgstr "" #: model:ir.model,name:account.model_account_analytic_journal #: model:ir.ui.menu,name:account.account_analytic_journal_print msgid "Analytic Journal" -msgstr "" +msgstr "Analytisk journal" #. module: account #: view:account.entries.report:0 msgid "Reconciled" -msgstr "" +msgstr "Udlignet/afstemt" #. module: account #: constraint:account.payment.term.line:0 @@ -6834,27 +6854,27 @@ msgstr "" #: report:account.invoice:0 #: field:account.invoice.tax,base:0 msgid "Base" -msgstr "" +msgstr "Basis" #. module: account #: field:account.model,name:0 msgid "Model Name" -msgstr "" +msgstr "Modelnavn" #. module: account #: field:account.chart.template,property_account_expense_categ:0 msgid "Expense Category Account" -msgstr "" +msgstr "Omkostningskonto" #. module: account #: sql_constraint:account.tax:0 msgid "Tax Name must be unique per company!" -msgstr "" +msgstr "Moms navn skal være unikt pr. firma !" #. module: account #: view:account.bank.statement:0 msgid "Cash Transactions" -msgstr "" +msgstr "Kasse-bevægelser" #. module: account #: view:account.unreconcile:0 @@ -6871,24 +6891,24 @@ msgstr "" #: field:account.fiscal.position,note:0 #: field:account.fiscal.position.template,note:0 msgid "Notes" -msgstr "" +msgstr "Noter" #. module: account #: model:ir.model,name:account.model_analytic_entries_report msgid "Analytic Entries Statistics" -msgstr "" +msgstr "Statistik over analytiske posteringer" #. module: account #: code:addons/account/account_analytic_line.py:142 #: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " -msgstr "" +msgstr "Posteringer " #. module: account #: help:res.partner.bank,currency_id:0 msgid "Currency of the related account journal." -msgstr "" +msgstr "Valuta på den relaterede kontojournal." #. module: account #: constraint:account.move.line:0 @@ -6907,27 +6927,27 @@ msgstr "Sandt" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Balance (aktiver)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 msgid "State is draft" -msgstr "" +msgstr "I \"kladde\" status" #. module: account #: view:account.move.line:0 msgid "Total debit" -msgstr "" +msgstr "Total debit" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "" +msgstr "Ingen partner posteringer at udligne" #. module: account #: report:account.invoice:0 msgid "Fax :" -msgstr "" +msgstr "Fax :" #. module: account #: help:res.partner,property_account_receivable:0 @@ -6950,7 +6970,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current period" -msgstr "" +msgstr "Posteringer med dato i indeværende periode" #. module: account #: help:account.journal,update_posted:0 @@ -6962,42 +6982,42 @@ msgstr "" #. module: account #: view:account.fiscalyear.close:0 msgid "Create" -msgstr "" +msgstr "Opret" #. module: account #: model:process.transition.action,name:account.process_transition_action_createentries0 msgid "Create entry" -msgstr "" +msgstr "Indtast" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "" +msgstr "Tab & Vind (udgiftskonto)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "" +msgstr "Totale posteringer" #. module: account #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." -msgstr "" +msgstr "Du kan ikke fjerne en konto der indeholder posteringer" #. module: account #: code:addons/account/account.py:1024 #: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" -msgstr "" +msgstr "Fejl!" #. module: account #: field:account.financial.report,style_overwrite:0 msgid "Financial Report Style" -msgstr "" +msgstr "Finans rapport opsætning" #. module: account #: selection:account.financial.report,sign:0 @@ -7009,33 +7029,33 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "" +msgstr "Moms rapport" #. module: account #: selection:account.journal.period,state:0 msgid "Printed" -msgstr "" +msgstr "Udskrevet" #. module: account #: view:account.analytic.line:0 msgid "Project line" -msgstr "" +msgstr "Projektlinie" #. module: account #: field:account.invoice.tax,manual:0 msgid "Manual" -msgstr "" +msgstr "Manuel" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Annulér: opret kreditnota og udlign" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "You must set a start date." -msgstr "" +msgstr "Du skal angive en startdato" #. module: account #: view:account.automatic.reconcile:0 @@ -7051,7 +7071,7 @@ msgstr "" #: view:account.move:0 #: field:account.move,to_check:0 msgid "To Review" -msgstr "" +msgstr "Til gennemgang" #. module: account #: help:account.partner.ledger,initial_balance:0 @@ -7069,18 +7089,18 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "" +msgstr "Posteringer" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 #, python-format msgid "No period found on the invoice." -msgstr "" +msgstr "Ingen periode angivet på fakturaen" #. module: account #: help:account.partner.ledger,page_split:0 msgid "Display Ledger Report with One partner per page" -msgstr "" +msgstr "Vis finansrapport med én partner pr. side" #. module: account #: report:account.general.ledger:0 @@ -7115,17 +7135,17 @@ msgstr "Ja" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "" +msgstr "Alle indtastninger" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "" +msgstr "Du kan kun afstemme posteringer fra den samme partner." #. module: account #: view:account.journal.select:0 msgid "Journal Select" -msgstr "" +msgstr "Journal udvælgelse" #. module: account #: view:account.bank.statement:0 @@ -7133,12 +7153,12 @@ msgstr "" #: code:addons/account/account.py:434 #, python-format msgid "Opening Balance" -msgstr "" +msgstr "Åbningsbalance" #. module: account #: model:ir.model,name:account.model_account_move_reconcile msgid "Account Reconciliation" -msgstr "" +msgstr "Kontoafstemning" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax @@ -7153,12 +7173,12 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_general_ledger_landscape #: model:ir.ui.menu,name:account.menu_general_ledger msgid "General Ledger" -msgstr "" +msgstr "Finans" #. module: account #: model:process.transition,note:account.process_transition_paymentorderbank0 msgid "The payment order is sent to the bank." -msgstr "" +msgstr "Betalingsordre sendt til banken." #. module: account #: help:account.move,to_check:0 @@ -7171,7 +7191,7 @@ msgstr "" #: field:account.chart.template,complete_tax_set:0 #: field:wizard.multi.charts.accounts,complete_tax_set:0 msgid "Complete Set of Taxes" -msgstr "" +msgstr "Komplet sæt momskoder" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:61 @@ -7183,12 +7203,12 @@ msgstr "" #. module: account #: view:account.chart.template:0 msgid "Properties" -msgstr "" +msgstr "Egenskaber" #. module: account #: model:ir.model,name:account.model_account_tax_chart msgid "Account tax chart" -msgstr "" +msgstr "Konto momsoversigt" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -7200,7 +7220,7 @@ msgstr "" #: report:account.journal.period.print.sale.purchase:0 #: report:account.partner.balance:0 msgid "Total:" -msgstr "" +msgstr "Total:" #. module: account #: constraint:account.journal:0 @@ -7208,6 +7228,8 @@ msgid "" "Configuration error!\n" "The currency chosen should be shared by the default accounts too." msgstr "" +"Konfigurations fejl!\n" +"Den valgte valuta skal være delt med standard kontoen." #. module: account #: code:addons/account/account.py:2304 @@ -7226,12 +7248,12 @@ msgstr "" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Paypal Url" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Håndtér kunde betalinger" #. module: account #: help:report.invoice.created,origin:0 @@ -7242,7 +7264,7 @@ msgstr "" #: field:account.tax.code,child_ids:0 #: field:account.tax.code.template,child_ids:0 msgid "Child Codes" -msgstr "" +msgstr "Under-koder" #. module: account #: constraint:account.fiscalyear:0 @@ -7254,23 +7276,23 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "" +msgstr "Moms anvendt i salg" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "" +msgstr "Kunde fakturaer" #. module: account #: view:account.tax:0 msgid "Misc" -msgstr "" +msgstr "Diverse" #. module: account #: view:account.analytic.line:0 msgid "Sales" -msgstr "" +msgstr "Salg" #. module: account #: selection:account.invoice.report,state:0 @@ -7278,7 +7300,7 @@ msgstr "" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Done" -msgstr "" +msgstr "Udført" #. module: account #: code:addons/account/account.py:1319 @@ -7292,7 +7314,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "" +msgstr "Et udtog med manuelle posteringer bliver et kladde-udtog" #. module: account #: view:account.aged.trial.balance:0 @@ -7310,7 +7332,7 @@ msgstr "" #: field:account.invoice.line,origin:0 #: field:report.invoice.created,origin:0 msgid "Source Document" -msgstr "" +msgstr "Kilde dokument" #. module: account #: help:account.config.settings,company_footer:0 @@ -7328,17 +7350,17 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_accounting_report msgid "Accounting Report" -msgstr "" +msgstr "Regnskabs rapport" #. module: account #: field:account.analytic.line,currency_id:0 msgid "Account Currency" -msgstr "" +msgstr "Konto valuta" #. module: account #: report:account.invoice:0 msgid "Taxes:" -msgstr "" +msgstr "Moms" #. module: account #: code:addons/account/account_invoice.py:458 @@ -7356,29 +7378,29 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy msgid "Financial Reports Hierarchy" -msgstr "" +msgstr "Hierarki af finansrapporter" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation msgid "Monthly Turnover" -msgstr "" +msgstr "Omsætning pr. måned" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Analytic Lines" -msgstr "" +msgstr "Analytiske linier" #. module: account #: field:account.analytic.journal,line_ids:0 #: field:account.tax.code,line_ids:0 msgid "Lines" -msgstr "" +msgstr "Linier" #. module: account #: view:account.tax.template:0 msgid "Account Tax Template" -msgstr "" +msgstr "Konto momsskabelon" #. module: account #: view:account.journal.select:0 @@ -7393,22 +7415,22 @@ msgstr "" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "" +msgstr "Udgiftsrapport over åbningsposteringer" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Kunde Reference" #. module: account #: field:account.account.template,parent_id:0 msgid "Parent Account Template" -msgstr "" +msgstr "Hoved kontoskabelon" #. module: account #: report:account.invoice:0 msgid "Price" -msgstr "" +msgstr "Pris" #. module: account #: view:account.bank.statement:0 @@ -7422,7 +7444,7 @@ msgstr "" #: field:account.move.line,statement_id:0 #: model:process.process,name:account.process_process_statementprocess0 msgid "Statement" -msgstr "" +msgstr "Kontoudtog" #. module: account #: help:account.journal,default_debit_account_id:0 @@ -7432,7 +7454,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Bogførte posteringer" #. module: account #: help:account.payment.term.line,value_amount:0 @@ -7450,42 +7472,42 @@ msgstr "Faktura dato" #. module: account #: view:account.invoice.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Sorter efter år ud fra fakturadato" #. module: account #: field:account.config.settings,purchase_tax_rate:0 msgid "Purchase tax (%)" -msgstr "" +msgstr "Indkøbs moms (%)" #. module: account #: help:res.partner,credit:0 msgid "Total amount this customer owes you." -msgstr "" +msgstr "Totalbeløb denne kunde skylder dig." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "" +msgstr "Posteringer i ubalance" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules msgid "Chart Templates" -msgstr "" +msgstr "Oversigts skabeloner" #. module: account #: field:account.journal.period,icon:0 msgid "Icon" -msgstr "" +msgstr "Ikon" #. module: account #: view:account.use.model:0 msgid "Ok" -msgstr "" +msgstr "OK" #. module: account #: field:account.chart.template,tax_code_root_id:0 msgid "Root Tax Code" -msgstr "" +msgstr "Basis momskode" #. module: account #: help:account.journal,centralisation:0 @@ -7503,27 +7525,27 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "Bank kontoudtogslinie" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "" +msgstr "Standard indkøbsmoms" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Omsætningskonto for åbningsposteringer" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "" +msgstr "Tillad proforma fakturaer" #. module: account #: view:account.bank.statement:0 msgid "Confirm" -msgstr "" +msgstr "Bekræft" #. module: account #: help:account.tax,domain:0 @@ -7537,17 +7559,17 @@ msgstr "" #: field:account.invoice,reference:0 #: field:account.invoice.line,invoice_id:0 msgid "Invoice Reference" -msgstr "" +msgstr "Faktura reference" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "" +msgstr "Navn på nye indtastninger" #. module: account #: view:account.use.model:0 msgid "Create Entries" -msgstr "" +msgstr "Opret indtastninger" #. module: account #: model:ir.model,name:account.model_cash_box_out @@ -7557,12 +7579,12 @@ msgstr "" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "Hovedvaluta for firmaet" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports msgid "Reporting" -msgstr "" +msgstr "Rapportering" #. module: account #. openerp-web @@ -7570,29 +7592,29 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" -msgstr "" +msgstr "Advarsel!" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "" +msgstr "Kontrakter/analytiske konti" #. module: account #: view:account.journal:0 #: field:res.partner.bank,journal_id:0 msgid "Account Journal" -msgstr "" +msgstr "Konto journal" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "" +msgstr "Momsafrundings-metode" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 #: model:process.node,name:account.process_node_supplierpaidinvoice0 msgid "Paid invoice" -msgstr "" +msgstr "Betalt faktura" #. module: account #: view:account.invoice.refund:0 @@ -7615,7 +7637,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 msgid "Comment" -msgstr "" +msgstr "Kommentar" #. module: account #: field:account.tax,domain:0 @@ -7641,12 +7663,12 @@ msgstr "" #: field:account.invoice.tax,invoice_id:0 #: model:ir.model,name:account.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Faktura linie" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Kunde og leverandør kreditnotaer" #. module: account #: field:account.financial.report,sign:0 @@ -7677,7 +7699,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_view msgid "Root/View" -msgstr "" +msgstr "Basis/oversigt" #. module: account #: code:addons/account/account.py:3206 @@ -7689,30 +7711,30 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "" +msgstr "PRO-FORMA" #. module: account #: selection:account.entries.report,move_line_state:0 #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "" +msgstr "Ikke i balance" #. module: account #: selection:account.move.line,centralisation:0 msgid "Normal" -msgstr "" +msgstr "Normal" #. module: account #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "" +msgstr "Email Templates" #. module: account #: view:account.move.line:0 msgid "Optional Information" -msgstr "" +msgstr "Valgfri information" #. module: account #: view:account.analytic.line:0 @@ -7727,7 +7749,7 @@ msgstr "Bruger" #. module: account #: selection:account.account,currency_mode:0 msgid "At Date" -msgstr "" +msgstr "På dato" #. module: account #: help:account.move.line,date_maturity:0 @@ -7739,23 +7761,23 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "" +msgstr "Multi-valuta" #. module: account #: field:account.model.line,date_maturity:0 msgid "Maturity Date" -msgstr "" +msgstr "Modenheds dato" #. module: account #: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "" +msgstr "Salgs journal" #. module: account #: model:ir.model,name:account.model_account_invoice_tax msgid "Invoice Tax" -msgstr "" +msgstr "Faktura moms" #. module: account #: code:addons/account/account_move_line.py:1185 @@ -7767,7 +7789,7 @@ msgstr "" #: view:account.financial.report:0 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy msgid "Account Reports Hierarchy" -msgstr "" +msgstr "Konto rapport hierarki" #. module: account #: help:account.account.template,chart_template_id:0 @@ -7782,7 +7804,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "" +msgstr "Ikke-bogførte posteringer" #. module: account #: help:account.invoice.refund,date:0 @@ -7794,7 +7816,7 @@ msgstr "" #. module: account #: view:product.template:0 msgid "Sales Properties" -msgstr "" +msgstr "Salgs egenskaber" #. module: account #: code:addons/account/account.py:3541 @@ -7807,36 +7829,36 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile msgid "Manual Reconciliation" -msgstr "" +msgstr "Manuel afstemning/udligning" #. module: account #: report:account.overdue:0 msgid "Total amount due:" -msgstr "" +msgstr "Totalf forfaldende beløb:" #. module: account #: field:account.analytic.chart,to_date:0 #: field:project.account.analytic.line,to_date:0 msgid "To" -msgstr "" +msgstr "Til" #. module: account #: selection:account.move.line,centralisation:0 #: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" -msgstr "" +msgstr "Vauta justering" #. module: account #: field:account.fiscalyear.close,fy_id:0 msgid "Fiscal Year to close" -msgstr "" +msgstr "Finansår til afslutning" #. module: account #: view:account.invoice.cancel:0 #: model:ir.actions.act_window,name:account.action_account_invoice_cancel msgid "Cancel Selected Invoices" -msgstr "" +msgstr "Fortryd valgte fakturaer" #. module: account #: help:account.account.type,report_type:0 @@ -7851,7 +7873,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "May" -msgstr "" +msgstr "Maj" #. module: account #: code:addons/account/account_invoice.py:820 @@ -7862,7 +7884,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_chart_template msgid "Templates for Account Chart" -msgstr "" +msgstr "Skabeloner for kontooversigter" #. module: account #: help:account.model.line,sequence:0 @@ -7874,12 +7896,12 @@ msgstr "" #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "Tilbageværende valutabeløb" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 msgid "Credit note sequence" -msgstr "" +msgstr "Kreditnota bilagsrækkefølge" #. module: account #: model:ir.actions.act_window,name:account.action_validate_account_move @@ -7888,7 +7910,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "" +msgstr "Efterposteringer" #. module: account #: selection:account.bank.statement.line,type:0 @@ -7898,12 +7920,12 @@ msgstr "" #: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" -msgstr "" +msgstr "Kunde" #. module: account #: field:account.financial.report,name:0 msgid "Report Name" -msgstr "" +msgstr "Rapport navn" #. module: account #: model:account.account.type,name:account.data_account_type_cash @@ -7914,13 +7936,13 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Cash" -msgstr "" +msgstr "Kontanter" #. module: account #: field:account.fiscal.position.account,account_dest_id:0 #: field:account.fiscal.position.account.template,account_dest_id:0 msgid "Account Destination" -msgstr "" +msgstr "Konto destination" #. module: account #: help:account.invoice.refund,filter_refund:0 @@ -7940,22 +7962,22 @@ msgstr "" #: field:account.tax.code,sequence:0 #: field:account.tax.template,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Rækkefølge" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "Paypal konto" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Journalindtastnings nummer" #. module: account #: view:account.financial.report:0 msgid "Parent Report" -msgstr "" +msgstr "Hoved rapport" #. module: account #: constraint:account.account:0 @@ -7964,6 +7986,8 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Fejl!\n" +"Du kan ikke oprette rekursive konti." #. module: account #: model:ir.model,name:account.model_cash_box_in @@ -7973,7 +7997,7 @@ msgstr "" #. module: account #: help:account.invoice,move_id:0 msgid "Link to the automatically generated Journal Items." -msgstr "" +msgstr "Link til automatisk oprettede posteringer" #. module: account #: model:ir.model,name:account.model_account_config_settings @@ -7984,24 +8008,24 @@ msgstr "" #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "Monthly" -msgstr "" +msgstr "Månedlig" #. module: account #: model:account.account.type,name:account.data_account_type_asset msgid "Asset" -msgstr "" +msgstr "Aktiv" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "" +msgstr "Beregnet Balance" #. module: account #. openerp-web #: code:addons/account/static/src/js/account_move_reconciliation.js:89 #, python-format msgid "You must choose at least one record." -msgstr "" +msgstr "Du skal vælge mindst en post." #. module: account #: field:account.account,parent_id:0 @@ -8013,7 +8037,7 @@ msgstr "Forrige" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Profit" -msgstr "" +msgstr "Fortjeneste" #. module: account #: help:account.payment.term.line,days2:0 @@ -8029,7 +8053,7 @@ msgstr "" #. module: account #: view:account.move.line.reconcile:0 msgid "Reconciliation Transactions" -msgstr "" +msgstr "Udlignings transaktioner" #. module: account #: model:ir.ui.menu,name:account.menu_finance_legal_statement @@ -8067,7 +8091,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other #: model:ir.ui.menu,name:account.menu_account_partner_ledger msgid "Partner Ledger" -msgstr "" +msgstr "Partner regnskab" #. module: account #: selection:account.tax.template,type:0 @@ -8087,17 +8111,17 @@ msgstr "Advarsel !" #: help:account.bank.statement,message_unread:0 #: help:account.invoice,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Hvis afmærket, kræver nye beskeder din attention" #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "" +msgstr "Moms afrundingsmetode" #. module: account #: field:account.entries.report,move_line_state:0 msgid "State of Move Line" -msgstr "" +msgstr "Status på flytte-linie" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile @@ -8108,12 +8132,12 @@ msgstr "" #: view:account.subscription.generate:0 #: model:ir.model,name:account.model_account_subscription_generate msgid "Subscription Compute" -msgstr "" +msgstr "Abonnements beregning" #. module: account #: view:account.move.line.unreconcile.select:0 msgid "Open for Unreconciliation" -msgstr "" +msgstr "Åben af af-udligning" #. module: account #: field:account.bank.statement.line,partner_id:0 @@ -8138,23 +8162,23 @@ msgstr "" #: model:ir.model,name:account.model_res_partner #: field:report.invoice.created,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: account #: help:account.change.currency,currency_id:0 msgid "Select a currency to apply on the invoice" -msgstr "" +msgstr "Vælg en valuta til fakturaen" #. module: account #: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" -msgstr "" +msgstr "Ingen faktura linier !" #. module: account #: view:account.financial.report:0 msgid "Report Type" -msgstr "" +msgstr "Rapport type" #. module: account #: help:account.open.closed.fiscalyear,fyear_id:0 @@ -8190,7 +8214,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Automatic entry" -msgstr "" +msgstr "Automatisk postering" #. module: account #: help:account.account,reconcile:0 @@ -8213,12 +8237,12 @@ msgstr "" #: view:account.analytic.line:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form msgid "Analytic Entries" -msgstr "" +msgstr "Analytiske posteringer" #. module: account #: view:account.analytic.account:0 msgid "Associated Partner" -msgstr "" +msgstr "Tilknyttet partner" #. module: account #: code:addons/account/account_invoice.py:1465 @@ -8235,7 +8259,7 @@ msgstr "Yderligere information" #: field:account.invoice.report,residual:0 #: field:account.invoice.report,user_currency_residual:0 msgid "Total Residual" -msgstr "" +msgstr "Totalt tilbageværende" #. module: account #: view:account.bank.statement:0 @@ -8246,7 +8270,7 @@ msgstr "" #: model:process.node,note:account.process_node_invoiceinvoice0 #: model:process.node,note:account.process_node_supplierinvoiceinvoice0 msgid "Invoice's state is Open" -msgstr "" +msgstr "Fakturaens status er Åben" #. module: account #: view:account.analytic.account:0 @@ -8275,17 +8299,17 @@ msgstr "Status" #: model:ir.actions.act_window,name:account.action_account_analytic_cost #: model:ir.actions.report.xml,name:account.account_analytic_account_cost_ledger msgid "Cost Ledger" -msgstr "" +msgstr "Omkostnings konto" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Intet regnskabsår er oprettet for dette firma" #. module: account #: view:account.invoice:0 msgid "Proforma" -msgstr "" +msgstr "Proforma" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -8305,13 +8329,13 @@ msgstr "" #: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "" +msgstr "Indkøbs kreditnota journal" #. module: account #: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Vælg en bilagsserie på journalen" #. module: account #: help:account.tax.template,amount:0 @@ -8321,17 +8345,17 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Current Accounts" -msgstr "" +msgstr "Nuværende konti" #. module: account #: view:account.invoice.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "Sorter efter faktura dato" #. module: account #: help:account.journal,user_id:0 msgid "The user responsible for this journal" -msgstr "" +msgstr "Brugeren er ansvarlig for denne journal" #. module: account #: help:account.config.settings,module_account_followup:0 @@ -8382,32 +8406,32 @@ msgstr "Net Total:" #: code:addons/account/wizard/account_report_common.py:158 #, python-format msgid "Select a starting and an ending period." -msgstr "" +msgstr "Vælg en start- og slutperiode." #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "Næste faktura nummer" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting msgid "Generic Reporting" -msgstr "" +msgstr "Generisk rapportering" #. module: account #: field:account.move.line.reconcile.writeoff,journal_id:0 msgid "Write-Off Journal" -msgstr "" +msgstr "Afskrivnings journal" #. module: account #: field:account.chart.template,property_account_income_categ:0 msgid "Income Category Account" -msgstr "" +msgstr "Omsætnings kategori konto" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "" +msgstr "Justeret balance" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form @@ -8459,24 +8483,24 @@ msgstr "Firma valuta" #: field:account.vat.declaration,chart_account_id:0 #: field:accounting.report,chart_account_id:0 msgid "Chart of Account" -msgstr "" +msgstr "Konto oversigt" #. module: account #: model:process.node,name:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_reconcilepaid0 msgid "Payment" -msgstr "" +msgstr "Betaling" #. module: account #: view:account.automatic.reconcile:0 msgid "Reconciliation Result" -msgstr "" +msgstr "Afstemnings/udlignings resultat" #. module: account #: field:account.bank.statement,balance_end_real:0 #: field:account.treasury.report,ending_balance:0 msgid "Ending Balance" -msgstr "" +msgstr "Afslutnings balance" #. module: account #: field:account.journal,centralisation:0 @@ -8520,7 +8544,7 @@ msgstr "" #. module: account #: model:process.transition,name:account.process_transition_filestatement0 msgid "Automatic import of the bank sta" -msgstr "" +msgstr "Automatisk import af bank-udtog" #. module: account #: code:addons/account/account_invoice.py:381 @@ -8536,7 +8560,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Tilføj" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8575,12 +8599,12 @@ msgstr "" #: model:process.node,name:account.process_node_supplierreconciliation0 #, python-format msgid "Reconciliation" -msgstr "" +msgstr "Udlingning/afstemning" #. module: account #: view:account.tax.template:0 msgid "Keep empty to use the income account" -msgstr "" +msgstr "Efterlad tom for at anvende omsætningskontoen" #. module: account #: view:account.invoice:0 @@ -8615,12 +8639,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "" +msgstr "Regnskabsår luknings status" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "" +msgstr "Krediterings journal" #. module: account #: report:account.account.balance:0 @@ -8630,7 +8654,7 @@ msgstr "" #: report:account.general.ledger_landscape:0 #: report:account.partner.balance:0 msgid "Filter By" -msgstr "" +msgstr "Sorter efter" #. module: account #: code:addons/account/wizard/account_period_close.py:51 @@ -8638,18 +8662,19 @@ msgstr "" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"For at lukke en periode, skal du først bogføre relaterede bogføringskladder." #. module: account #: view:account.entries.report:0 #: view:board.board:0 #: model:ir.actions.act_window,name:account.action_company_analysis_tree msgid "Company Analysis" -msgstr "" +msgstr "Firma analyse" #. module: account #: help:account.invoice,account_id:0 msgid "The partner account used for this invoice." -msgstr "" +msgstr "Partner konto bag denne faktura." #. module: account #: code:addons/account/account.py:3391 @@ -8662,28 +8687,28 @@ msgstr "" #: view:account.tax.code.template:0 #: field:account.tax.code.template,parent_id:0 msgid "Parent Code" -msgstr "" +msgstr "Basis kode" #. module: account #: model:ir.model,name:account.model_account_payment_term_line msgid "Payment Term Line" -msgstr "" +msgstr "Betalingsbetingelse linie" #. module: account #: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" -msgstr "" +msgstr "Indkøbs journal" #. module: account #: field:account.invoice,amount_untaxed:0 msgid "Subtotal" -msgstr "" +msgstr "Subtotal" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "" +msgstr "Udskriv moms oversigt" #. module: account #: view:account.model.line:0 @@ -8703,12 +8728,12 @@ msgstr "Forfaldsdato" #: model:ir.ui.menu,name:account.menu_account_supplier #: model:ir.ui.menu,name:account.menu_finance_payables msgid "Suppliers" -msgstr "" +msgstr "Leverandører" #. module: account #: view:account.journal:0 msgid "Accounts Type Allowed (empty for no control)" -msgstr "" +msgstr "Tilladte konto typer (tom hvis ingen kontrol)" #. module: account #: help:account.move.line,amount_residual:0 @@ -8720,13 +8745,13 @@ msgstr "" #. module: account #: view:account.tax.code:0 msgid "Statistics" -msgstr "" +msgstr "Statistik" #. module: account #: field:account.analytic.chart,from_date:0 #: field:project.account.analytic.line,from_date:0 msgid "From" -msgstr "" +msgstr "Fra" #. module: account #: help:accounting.report,debit_credit:0 @@ -8739,7 +8764,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close msgid "Fiscalyear Close" -msgstr "" +msgstr "Regnskabsår lukning" #. module: account #: sql_constraint:account.account:0 @@ -8756,12 +8781,12 @@ msgstr "" #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened msgid "Unpaid Invoices" -msgstr "" +msgstr "Ubetalte fakturaer" #. module: account #: field:account.move.line.reconcile,debit:0 msgid "Debit amount" -msgstr "" +msgstr "Debit beløb" #. module: account #: view:account.aged.trial.balance:0 @@ -8773,29 +8798,29 @@ msgstr "" #: view:account.common.report:0 #: view:account.invoice:0 msgid "Print" -msgstr "" +msgstr "Udskriv" #. module: account #: view:account.period.close:0 msgid "Are you sure?" -msgstr "" +msgstr "Er du sikker?" #. module: account #: view:account.journal:0 msgid "Accounts Allowed (empty for no control)" -msgstr "" +msgstr "Tilladte konti (tom hvis ingen kontrol)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Salgs moms (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 #: model:ir.actions.act_window,name:account.action_account_analytic_chart #: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Chart of Analytic Accounts" -msgstr "" +msgstr "Analytisk konto oversigt" #. module: account #: model:ir.actions.act_window,help:account.action_subscription_form @@ -8818,36 +8843,36 @@ msgstr "" #: view:account.journal:0 #: model:ir.ui.menu,name:account.menu_configuration_misc msgid "Miscellaneous" -msgstr "" +msgstr "Diverse" #. module: account #: help:res.partner,debit:0 msgid "Total amount you have to pay to this supplier." -msgstr "" +msgstr "Total beløb du skal betale denne leverandør." #. module: account #: model:process.node,name:account.process_node_analytic0 #: model:process.node,name:account.process_node_analyticcost0 msgid "Analytic Costs" -msgstr "" +msgstr "Analytiske omkostninger" #. module: account #: field:account.analytic.journal,name:0 #: report:account.general.journal:0 #: field:account.journal,name:0 msgid "Journal Name" -msgstr "" +msgstr "Journal navn" #. module: account #: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" -msgstr "" +msgstr "Indtastning \"%s\" er ikke valid !" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Smallest Text" -msgstr "" +msgstr "Mindste skrift" #. module: account #: help:account.config.settings,module_account_check_writing:0 @@ -8920,7 +8945,7 @@ msgstr "" #: field:res.partner.bank,currency_id:0 #: field:wizard.multi.charts.accounts,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Valuta" #. module: account #: help:account.invoice.refund,journal_id:0 @@ -8939,35 +8964,35 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_validentries0 msgid "Accountant validates the accounting entries coming from the invoice." -msgstr "" +msgstr "Bogholder godkender kontoregistreringer der oprinder fra fakturaen." #. module: account #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open msgid "Reconciled entries" -msgstr "" +msgstr "Udlignede posteringer" #. module: account #: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" -msgstr "" +msgstr "Forkert model !" #. module: account #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Moms skabelon" #. module: account #: field:account.invoice.refund,period:0 msgid "Force period" -msgstr "" +msgstr "Gennemtving periode" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "" +msgstr "Udskriv partner balance" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -8991,7 +9016,7 @@ msgstr "" #. module: account #: field:res.partner,contract_ids:0 msgid "Contracts" -msgstr "" +msgstr "Kontrakter" #. module: account #: field:account.cashbox.line,bank_statement_id:0 @@ -9000,14 +9025,14 @@ msgstr "" #: field:account.financial.report,credit:0 #: field:account.financial.report,debit:0 msgid "unknown" -msgstr "" +msgstr "ukendt" #. module: account #: field:account.fiscalyear.close,journal_id:0 #: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" -msgstr "" +msgstr "Åbnings journal" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 @@ -9018,14 +9043,14 @@ msgstr "" #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Er en \"follower\"" #. module: account #: view:account.move:0 #: field:account.move,narration:0 #: field:account.move.line,narration:0 msgid "Internal Note" -msgstr "" +msgstr "Intern note" #. module: account #: constraint:account.account:0 @@ -9038,7 +9063,7 @@ msgstr "" #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "Firmaet har et regnskabsår" #. module: account #: help:account.tax,child_depend:0 @@ -9052,34 +9077,34 @@ msgstr "" #: code:addons/account/account.py:634 #, python-format msgid "You cannot deactivate an account that contains journal items." -msgstr "" +msgstr "Du kan ikke in-aktivere en konto med posteringer." #. module: account #: selection:account.tax,applicable_type:0 msgid "Given by Python Code" -msgstr "" +msgstr "Styret af Python programmering" #. module: account #: field:account.analytic.journal,code:0 msgid "Journal Code" -msgstr "" +msgstr "Journal kode" #. module: account #: view:account.invoice:0 #: field:account.move.line,amount_residual:0 msgid "Residual Amount" -msgstr "" +msgstr "Tilbageværende beløb" #. module: account #: field:account.invoice,move_lines:0 #: field:account.move.reconcile,line_id:0 msgid "Entry Lines" -msgstr "" +msgstr "Indtastnings linier" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button msgid "Open Journal" -msgstr "" +msgstr "Åben journal" #. module: account #: report:account.analytic.account.journal:0 @@ -9091,24 +9116,24 @@ msgstr "" #: report:account.analytic.account.journal:0 #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Period from" -msgstr "" +msgstr "Periode fra" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Valuta" #. module: account #: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" -msgstr "" +msgstr "Salgs kredit journal" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Information" -msgstr "" +msgstr "Information" #. module: account #: view:account.invoice.confirm:0 @@ -9123,22 +9148,22 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_bankstatement0 msgid "Registered payment" -msgstr "" +msgstr "Registreret betaling" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "" +msgstr "Luk status på regnskabsår og perioder" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Indkøbs kredit journal" #. module: account #: view:account.analytic.line:0 msgid "Product Information" -msgstr "" +msgstr "Produktinformation" #. module: account #: report:account.analytic.account.journal:0 @@ -9146,29 +9171,29 @@ msgstr "" #: view:account.move.line:0 #: model:ir.ui.menu,name:account.next_id_40 msgid "Analytic" -msgstr "" +msgstr "Analytisk" #. module: account #: model:process.node,name:account.process_node_invoiceinvoice0 #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 msgid "Create Invoice" -msgstr "" +msgstr "Dan faktura" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Opsæt regnskabs data" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "" +msgstr "Indkøbs moms(%)" #. module: account #: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." -msgstr "" +msgstr "Venligst opret faktura linier." #. module: account #: code:addons/account/wizard/pos_box.py:36 @@ -9181,7 +9206,7 @@ msgstr "" #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "Vis detaljer" #. module: account #: code:addons/account/account.py:3203 @@ -9200,7 +9225,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "" +msgstr "Mine indtastninger" #. module: account #: help:account.invoice,state:0 @@ -9220,7 +9245,7 @@ msgstr "" #: field:account.period,date_stop:0 #: model:ir.ui.menu,name:account.menu_account_end_year_treatments msgid "End of Period" -msgstr "" +msgstr "Slut på periode" #. module: account #: field:account.account,financial_report_ids:0 @@ -9229,7 +9254,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_report #: model:ir.ui.menu,name:account.menu_account_reports msgid "Financial Reports" -msgstr "" +msgstr "Finans rapporter" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 @@ -9262,7 +9287,7 @@ msgstr "" #: field:accounting.report,period_from:0 #: field:accounting.report,period_from_cmp:0 msgid "Start Period" -msgstr "" +msgstr "Start periode" #. module: account #: model:ir.actions.report.xml,name:account.account_central_journal @@ -9277,12 +9302,12 @@ msgstr "" #. module: account #: field:res.partner,ref_companies:0 msgid "Companies that refers to partner" -msgstr "" +msgstr "Firmaer med relation til partneren" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "Udbed kreditnota" #. module: account #: view:account.move.line:0 @@ -9297,28 +9322,28 @@ msgstr "" #. module: account #: field:account.subscription,period_total:0 msgid "Number of Periods" -msgstr "" +msgstr "Antal perioder" #. module: account #: report:account.overdue:0 msgid "Document: Customer account statement" -msgstr "" +msgstr "Dokument: Kunde konto udtog" #. module: account #: view:account.account.template:0 msgid "Receivale Accounts" -msgstr "" +msgstr "Debitor konti" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Leverandør kreditnota bilagsserie" #. module: account #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "Fakturaen er allerede udlignet." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9334,13 +9359,13 @@ msgstr "" #. module: account #: xsl:account.transfer:0 msgid "Document" -msgstr "" +msgstr "Dokument" #. module: account #: view:account.chart.template:0 #: field:account.chart.template,property_account_receivable:0 msgid "Receivable Account" -msgstr "" +msgstr "Debitor konto" #. module: account #: code:addons/account/account_move_line.py:771 @@ -9348,6 +9373,8 @@ msgstr "" #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" +"For at udligne/afstemme posteringerne skal firma være det samme på alle " +"posteringer." #. module: account #: field:account.account,balance:0 @@ -9373,18 +9400,18 @@ msgstr "" #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 msgid "Balance" -msgstr "" +msgstr "Balance" #. module: account #: model:process.node,note:account.process_node_supplierbankstatement0 msgid "Manually or automatically entered in the system" -msgstr "" +msgstr "Manuelt indtastet eller automatisk genereret i systemet" #. module: account #: report:account.account.balance:0 #: report:account.general.ledger_landscape:0 msgid "Display Account" -msgstr "" +msgstr "Vis Konto" #. module: account #: selection:account.account,type:0 @@ -9413,13 +9440,13 @@ msgstr "" #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "" +msgstr "Opret regnskabsår åbningsposteringer" #. module: account #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Filters By" -msgstr "" +msgstr "Filtrér efter" #. module: account #: field:account.cashbox.line,number_closing:0 @@ -9431,7 +9458,7 @@ msgstr "" #: model:process.node,note:account.process_node_manually0 #: model:process.transition,name:account.process_transition_invoicemanually0 msgid "Manual entry" -msgstr "" +msgstr "Manuel indtastning" #. module: account #: report:account.general.ledger:0 @@ -9442,19 +9469,19 @@ msgstr "" #: view:account.move.line:0 #: field:analytic.entries.report,move_id:0 msgid "Move" -msgstr "" +msgstr "Flytning" #. module: account #: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Ulovlig handling!" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "Dato / Periode" #. module: account #: report:account.central.journal:0 @@ -9464,7 +9491,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement msgid "Bank statements" -msgstr "" +msgstr "Bank kontoudtog" #. module: account #: constraint:account.period:0 @@ -9477,7 +9504,7 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Kunden har intet forfaldent." #. module: account #: help:account.tax,account_paid_id:0 @@ -9495,12 +9522,12 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Source" -msgstr "" +msgstr "Kilde" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Date of the day" -msgstr "" +msgstr "Dagens dato" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -9520,7 +9547,7 @@ msgstr "" #. module: account #: field:account.invoice,sent:0 msgid "Sent" -msgstr "" +msgstr "Sendt" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu @@ -9531,12 +9558,12 @@ msgstr "" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Standard salgs moms" #. module: account #: report:account.overdue:0 msgid "Balance :" -msgstr "" +msgstr "Balance :" #. module: account #: code:addons/account/account.py:1587 @@ -9547,19 +9574,19 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Periodisk behandling" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "" +msgstr "Kunde og leverandør fakturaer" #. module: account #: model:process.node,note:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_paymentorderbank0 #: model:process.transition,name:account.process_transition_paymentreconcile0 msgid "Payment entries" -msgstr "" +msgstr "Betalings posteringer" #. module: account #: selection:account.entries.report,month:0 @@ -9568,22 +9595,22 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "July" -msgstr "" +msgstr "Juli" #. module: account #: view:account.account:0 msgid "Chart of accounts" -msgstr "Kontoplan" +msgstr "Posterings ark" #. module: account #: field:account.subscription.line,subscription_id:0 msgid "Subscription" -msgstr "" +msgstr "Abonnement" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "" +msgstr "Balance for analytisk konto" #. module: account #: report:account.account.balance:0 @@ -9611,23 +9638,23 @@ msgstr "" #: field:accounting.report,period_to:0 #: field:accounting.report,period_to_cmp:0 msgid "End Period" -msgstr "" +msgstr "Slut periode" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 msgid "Expense View" -msgstr "" +msgstr "Omkostnings visning" #. module: account #: field:account.move.line,date_maturity:0 msgid "Due date" -msgstr "" +msgstr "Forfaldsdato" #. module: account #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Straks betaling" #. module: account #: code:addons/account/account.py:1502 @@ -9649,17 +9676,17 @@ msgstr "" #: view:account.subscription:0 #: model:ir.model,name:account.model_account_subscription msgid "Account Subscription" -msgstr "" +msgstr "Konto for abonnement" #. module: account #: report:account.overdue:0 msgid "Maturity date" -msgstr "" +msgstr "Forældelses dato" #. module: account #: view:account.subscription:0 msgid "Entry Subscription" -msgstr "" +msgstr "Abonnements indtastning" #. module: account #: report:account.account.balance:0 @@ -9689,7 +9716,7 @@ msgstr "" #: field:accounting.report,date_from:0 #: field:accounting.report,date_from_cmp:0 msgid "Start Date" -msgstr "" +msgstr "Start dato" #. module: account #: help:account.invoice,reconciled:0 @@ -9703,31 +9730,31 @@ msgstr "" #: view:account.invoice.report:0 #: model:process.node,name:account.process_node_supplierdraftinvoices0 msgid "Draft Invoices" -msgstr "" +msgstr "Faktura kladder" #. module: account #: view:cash.box.in:0 #: model:ir.actions.act_window,name:account.action_cash_box_in msgid "Put Money In" -msgstr "" +msgstr "Læg penge i" #. module: account #: selection:account.account.type,close_method:0 #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "" +msgstr "Uudlignet" #. module: account #: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" -msgstr "" +msgstr "Forkert total !" #. module: account #: field:account.journal,sequence_id:0 msgid "Entry Sequence" -msgstr "" +msgstr "Bilagsserie" #. module: account #: model:ir.actions.act_window,help:account.action_account_period_tree @@ -9744,29 +9771,29 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Pending" -msgstr "" +msgstr "Afventer" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_cost_ledger_journal #: model:ir.actions.report.xml,name:account.account_analytic_account_quantity_cost_ledger msgid "Cost Ledger (Only quantities)" -msgstr "" +msgstr "Omkostnings konto (kun antal)" #. module: account #: model:process.transition,name:account.process_transition_analyticinvoice0 #: model:process.transition,name:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts" -msgstr "" +msgstr "Fra analytiske konti" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Opsæt dit regnskabsår" #. module: account #: field:account.period,name:0 msgid "Period Name" -msgstr "" +msgstr "Periode navn" #. module: account #: code:addons/account/wizard/account_invoice_state.py:68 @@ -9801,7 +9828,7 @@ msgstr "" #. module: account #: view:accounting.report:0 msgid "Comparison" -msgstr "" +msgstr "Sammenligning" #. module: account #: code:addons/account/account_move_line.py:1119 @@ -9837,19 +9864,19 @@ msgstr "" #. module: account #: field:account.period,special:0 msgid "Opening/Closing Period" -msgstr "" +msgstr "Åbnings-/luknings periode" #. module: account #: field:account.account,currency_id:0 #: field:account.account.template,currency_id:0 #: field:account.bank.accounts.wizard,currency_id:0 msgid "Secondary Currency" -msgstr "" +msgstr "Sekundær valuta" #. module: account #: model:ir.model,name:account.model_validate_account_move msgid "Validate Account Move" -msgstr "" +msgstr "Godkend konto flytning" #. module: account #: field:account.account,credit:0 @@ -9873,12 +9900,12 @@ msgstr "" #: report:account.vat.declaration:0 #: field:report.account.receivable,credit:0 msgid "Credit" -msgstr "" +msgstr "Kredit" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "Proforma faktura " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -9888,7 +9915,7 @@ msgstr "" #. module: account #: view:account.model:0 msgid "Journal Entry Model" -msgstr "" +msgstr "Journal indtastnings model" #. module: account #: code:addons/account/account.py:1073 @@ -9915,7 +9942,7 @@ msgstr "" #: field:account.invoice.report,price_total:0 #: field:account.invoice.report,user_currency_price_total:0 msgid "Total Without Tax" -msgstr "" +msgstr "Total før moms" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -9946,12 +9973,12 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_account_period #: model:ir.ui.menu,name:account.next_id_23 msgid "Periods" -msgstr "" +msgstr "Perioder" #. module: account #: field:account.invoice.report,currency_rate:0 msgid "Currency Rate" -msgstr "" +msgstr "Valuta kurs" #. module: account #: field:account.account,tax_ids:0 @@ -9959,7 +9986,7 @@ msgstr "" #: field:account.account.template,tax_ids:0 #: view:account.chart.template:0 msgid "Default Taxes" -msgstr "" +msgstr "Standard moms" #. module: account #: selection:account.entries.report,month:0 @@ -9968,12 +9995,12 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "April" -msgstr "" +msgstr "April" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 msgid "Profit (Loss) to report" -msgstr "" +msgstr "Tab/vind til rapportering" #. module: account #: code:addons/account/account_invoice.py:379 @@ -9984,7 +10011,7 @@ msgstr "" #. module: account #: view:account.move.line.reconcile.select:0 msgid "Open for Reconciliation" -msgstr "" +msgstr "Åben for udligning" #. module: account #: field:account.account,parent_left:0 @@ -10000,7 +10027,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree2 #: model:ir.ui.menu,name:account.menu_action_invoice_tree2 msgid "Supplier Invoices" -msgstr "" +msgstr "Leverandør fakturaer" #. module: account #: view:account.analytic.line:0 @@ -10016,7 +10043,7 @@ msgstr "" #: field:report.account.sales,product_id:0 #: field:report.account_type.sales,product_id:0 msgid "Product" -msgstr "" +msgstr "Vare" #. module: account #: model:ir.actions.act_window,help:account.action_validate_account_move @@ -10029,19 +10056,19 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_period msgid "Account period" -msgstr "" +msgstr "Konto periode" #. module: account #: view:account.subscription:0 msgid "Remove Lines" -msgstr "" +msgstr "Fjern linier" #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 #: selection:account.entries.report,type:0 msgid "Regular" -msgstr "" +msgstr "Almindelig" #. module: account #: view:account.account:0 @@ -10050,17 +10077,17 @@ msgstr "" #: field:account.account.template,type:0 #: field:account.entries.report,type:0 msgid "Internal Type" -msgstr "" +msgstr "Intern type" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Dan posteringer før" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running msgid "Running Subscriptions" -msgstr "" +msgstr "Aktive abonnementer" #. module: account #: view:account.analytic.balance:0 @@ -10068,7 +10095,7 @@ msgstr "" #: view:account.analytic.inverted.balance:0 #: view:account.analytic.journal.report:0 msgid "Select Period" -msgstr "" +msgstr "Vælg periode" #. module: account #: view:account.entries.report:0 @@ -10077,7 +10104,7 @@ msgstr "" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Posted" -msgstr "" +msgstr "Posteret" #. module: account #: report:account.account.balance:0 @@ -10106,7 +10133,7 @@ msgstr "" #: field:accounting.report,date_to:0 #: field:accounting.report,date_to_cmp:0 msgid "End Date" -msgstr "" +msgstr "Slut dato" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -10153,12 +10180,12 @@ msgstr "" #: help:product.category,property_account_income_categ:0 #: help:product.template,property_account_income:0 msgid "This account will be used to value outgoing stock using sale price." -msgstr "" +msgstr "Denne konto bruge til at værdiansætte udgående lager til salgspris." #. module: account #: field:account.invoice,check_total:0 msgid "Verification Total" -msgstr "" +msgstr "Afstemnings total" #. module: account #: report:account.analytic.account.balance:0 @@ -10170,7 +10197,7 @@ msgstr "" #: field:report.account_type.sales,amount_total:0 #: field:report.invoice.created,amount_total:0 msgid "Total" -msgstr "" +msgstr "Total" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:109 @@ -10181,7 +10208,7 @@ msgstr "" #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Moms refusion analytisk konto" #. module: account #: view:account.move.bank.reconcile:0 @@ -10235,24 +10262,24 @@ msgstr "Åben bank afstemning" #: field:analytic.entries.report,company_id:0 #: field:wizard.multi.charts.accounts,company_id:0 msgid "Company" -msgstr "" +msgstr "Firma" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form msgid "Define Recurring Entries" -msgstr "" +msgstr "Definer gentagne posteringer" #. module: account #: field:account.entries.report,date_maturity:0 msgid "Date Maturity" -msgstr "" +msgstr "Forældelses dato" #. module: account #: field:account.invoice.refund,description:0 #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "Årsag" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10260,7 +10287,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "" +msgstr "Uudlignede posteringer" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10273,7 +10300,7 @@ msgstr "" #. module: account #: view:account.fiscalyear:0 msgid "Create Monthly Periods" -msgstr "" +msgstr "Opret månedlige perioder" #. module: account #: field:account.tax.code.template,sign:0 @@ -10283,12 +10310,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_balance_report msgid "Trial Balance Report" -msgstr "" +msgstr "Råbalance rapport" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree msgid "Draft statements" -msgstr "" +msgstr "Kladde oversigter" #. module: account #: model:process.transition,note:account.process_transition_statemententries0 @@ -10322,12 +10349,12 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Invoice lines" -msgstr "" +msgstr "Faktura linier" #. module: account #: field:account.chart,period_to:0 msgid "End period" -msgstr "" +msgstr "Slut periode" #. module: account #: sql_constraint:account.journal:0 @@ -10345,28 +10372,28 @@ msgstr "" #. module: account #: view:account.partner.reconcile.process:0 msgid "Go to Next Partner" -msgstr "" +msgstr "Gå til næste partner" #. module: account #: view:account.automatic.reconcile:0 #: view:account.move.line.reconcile.writeoff:0 msgid "Write-Off Move" -msgstr "" +msgstr "Afskrivnings flytning" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 msgid "Invoice's state is Done" -msgstr "" +msgstr "Fakturaens status er Udført" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Styr kundebetalings opfølgning" #. module: account #: model:ir.model,name:account.model_report_account_sales msgid "Report of the Sales by Account" -msgstr "" +msgstr "Salgsrapport pr. konto" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account @@ -10383,7 +10410,7 @@ msgstr "" #: selection:report.invoice.created,type:0 #, python-format msgid "Supplier Invoice" -msgstr "" +msgstr "Leverandør faktura" #. module: account #: field:account.account,debit:0 @@ -10407,7 +10434,7 @@ msgstr "" #: report:account.vat.declaration:0 #: field:report.account.receivable,debit:0 msgid "Debit" -msgstr "" +msgstr "Debet" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -10418,22 +10445,22 @@ msgstr "" #: view:account.invoice:0 #: field:account.invoice,invoice_line:0 msgid "Invoice Lines" -msgstr "" +msgstr "Faktura linier" #. module: account #: help:account.model.line,quantity:0 msgid "The optional quantity on entries." -msgstr "" +msgstr "De optionelle antal på posteringer" #. module: account #: field:account.automatic.reconcile,reconciled:0 msgid "Reconciled transactions" -msgstr "" +msgstr "Udlignings posteringer" #. module: account #: model:ir.model,name:account.model_report_account_receivable msgid "Receivable accounts" -msgstr "" +msgstr "Kreditor konti" #. module: account #: code:addons/account/account_move_line.py:783 @@ -10449,7 +10476,7 @@ msgstr "Partners betalings betingelse" #. module: account #: field:temp.range,name:0 msgid "Range" -msgstr "" +msgstr "Interval" #. module: account #: view:account.analytic.line:0 @@ -10473,17 +10500,17 @@ msgstr "" #: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" -msgstr "" +msgstr "Med flytninger" #. module: account #: view:account.tax.code.template:0 msgid "Account Tax Code Template" -msgstr "" +msgstr "Konto momskode skabelon" #. module: account #: model:process.node,name:account.process_node_manually0 msgid "Manually" -msgstr "" +msgstr "Manuelt" #. module: account #: help:account.move,balance:0 @@ -10498,24 +10525,25 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "December" -msgstr "" +msgstr "December" #. module: account #: view:account.invoice.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Sorter på måned efter faktura datoen" #. module: account #: code:addons/account/account_analytic_line.py:99 #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." msgstr "" +"Der er ikke angivet nogen indtægtskonto for denne vare: \"%s\" (id:%d)." #. module: account #: model:ir.actions.act_window,name:account.action_aged_receivable_graph #: view:report.aged.receivable:0 msgid "Aged Receivable" -msgstr "" +msgstr "Forfalden debitorsaldo" #. module: account #: field:account.tax,applicable_type:0 @@ -10536,33 +10564,33 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing msgid "Billing" -msgstr "" +msgstr "Fakturering" #. module: account #: view:account.account:0 #: view:account.analytic.account:0 msgid "Parent Account" -msgstr "" +msgstr "Basis konto" #. module: account #: view:report.account.receivable:0 msgid "Accounts by Type" -msgstr "" +msgstr "Konti pr. type" #. module: account #: model:ir.model,name:account.model_account_analytic_chart msgid "Account Analytic Chart" -msgstr "" +msgstr "Analytisk kontooversigt" #. module: account #: help:account.invoice,residual:0 msgid "Remaining amount due." -msgstr "" +msgstr "Tilbageværende forfaldent beløb" #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "" +msgstr "Posteringer sorteret efter" #. module: account #: code:addons/account/account_invoice.py:1546 @@ -10602,7 +10630,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "November" -msgstr "" +msgstr "November" #. module: account #: model:ir.actions.act_window,help:account.action_account_moves_all_a @@ -10629,7 +10657,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Installer flere oversigts skabeloner" #. module: account #: report:account.general.journal:0 @@ -10640,7 +10668,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Search Invoice" -msgstr "" +msgstr "Søg faktura" #. module: account #: report:account.invoice:0 @@ -10649,28 +10677,28 @@ msgstr "" #: code:addons/account/account_invoice.py:1159 #, python-format msgid "Refund" -msgstr "" +msgstr "Tilbagebetaling" #. module: account #: model:ir.model,name:account.model_res_partner_bank msgid "Bank Accounts" -msgstr "" +msgstr "Bankkonti" #. module: account #: field:res.partner,credit:0 msgid "Total Receivable" -msgstr "" +msgstr "Total debitor beløb" #. module: account #: view:account.move.line:0 msgid "General Information" -msgstr "" +msgstr "Generelle oplysninger" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Accounting Documents" -msgstr "" +msgstr "Regnskabs dokumenter" #. module: account #: code:addons/account/account.py:641 @@ -10683,7 +10711,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_validate_account_move_lines msgid "Validate Account Move Lines" -msgstr "" +msgstr "Godkend konto flytnings linier" #. module: account #: help:res.partner,property_account_position:0 @@ -10694,28 +10722,28 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 msgid "Invoice's state is Done." -msgstr "" +msgstr "Fakturaens status er Udført" #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 msgid "As soon as the reconciliation is done, the invoice can be paid." -msgstr "" +msgstr "Så snart afstemning er udført, kan fakturaen betales." #. module: account #: code:addons/account/wizard/account_change_currency.py:59 #, python-format msgid "New currency is not configured properly." -msgstr "" +msgstr "Ny valuta er ikke konfigureret korrekt." #. module: account #: view:account.account.template:0 msgid "Search Account Templates" -msgstr "" +msgstr "Søg konto skabeloner" #. module: account #: view:account.invoice.tax:0 msgid "Manual Invoice Taxes" -msgstr "" +msgstr "Manuel faktura moms" #. module: account #: code:addons/account/account_invoice.py:573 @@ -10734,7 +10762,7 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "Aldrig" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard @@ -10750,19 +10778,19 @@ msgstr "" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Partner's" -msgstr "" +msgstr "Partnere" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "Interne noter" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear #: view:ir.sequence:0 #: model:ir.ui.menu,name:account.menu_action_account_fiscalyear msgid "Fiscal Years" -msgstr "" +msgstr "Finans år" #. module: account #: help:account.analytic.journal,active:0 @@ -10774,19 +10802,19 @@ msgstr "" #. module: account #: field:account.analytic.line,ref:0 msgid "Ref." -msgstr "" +msgstr "Ref." #. module: account #: field:account.use.model,model:0 #: model:ir.model,name:account.model_account_model msgid "Account Model" -msgstr "" +msgstr "Konto model" #. module: account #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "Tab" #. module: account #: selection:account.entries.report,month:0 @@ -10795,7 +10823,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "February" -msgstr "" +msgstr "Februar" #. module: account #: view:account.bank.statement:0 @@ -10810,7 +10838,7 @@ msgstr "" #: field:account.invoice,partner_bank_id:0 #: field:account.invoice.report,partner_bank_id:0 msgid "Bank Account" -msgstr "" +msgstr "Bank konto" #. module: account #: model:ir.actions.act_window,name:account.action_account_central_journal @@ -10821,17 +10849,17 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "Maturity" -msgstr "" +msgstr "Forældelse" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 msgid "Future" -msgstr "" +msgstr "Fremtidig" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "" +msgstr "Søg i journal posteringer" #. module: account #: help:account.tax,base_sign:0 @@ -10853,12 +10881,12 @@ msgstr "" #. module: account #: field:account.chart.template,property_account_expense:0 msgid "Expense Account on Product Template" -msgstr "" +msgstr "Vareforbrugskonto på Produkt skabelon" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Kunde betalings betingelse" #. module: account #: help:accounting.report,label_filter:0 @@ -11120,3 +11148,6 @@ msgstr "" #~ msgid "last month" #~ msgstr "sidste måned" + +#~ msgid "Reference Number" +#~ msgstr "Referencenummer" diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index 801d0af40e4..a795bf798c4 100644 --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:25+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -35,7 +35,7 @@ msgid "" "Generic Reporting \\ Taxes \\ Taxes Report'" msgstr "" "Legen Sie die Reihenfolge der Anzeige im Bericht 'Finanzen \\ Berichte \\ " -"Standard Auswertungen \\ Steuern \\ Umsatzsteuer Anmeldung' fest" +"Standard Auswertungen \\ Steuern \\ Umsatzsteuer-Anmeldung' fest" #. module: account #: view:account.move.reconcile:0 @@ -96,7 +96,7 @@ msgid "" "You cannot create recursive account templates." msgstr "" "Fehler!\n" -"Es dürfen keine rekursiven Kontoplan Vorlagen erstellt werden." +"Es dürfen keine rekursiven Kontenplan-Vorlagen erstellt werden." #. module: account #. openerp-web @@ -157,7 +157,7 @@ msgstr "Achtung!" #: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "\"verschiedenes\" Journal" +msgstr "\"Verschiedenes\"-Journal" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -167,8 +167,8 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" -"Zur Buchung der Jahreseröffnungsbuchungen müssen Sie ein Jahreswechsel " -"Journal hinterlegen." +"Für Jahreseröffnungsbuchungen müssen Sie ein Jahreswechsel-Journal " +"hinterlegen." #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -221,7 +221,7 @@ msgid "" msgstr "" "Definieren Sie den Kostenstellentyp. Wenn durch einen Beleg (z.B. eine " "Rechnung) zusätzlich zu den Finanzbuchungen auch Kostenstellen gebucht " -"werden sollen, prüft OpenERP ob ein Kostenstellen Journal der gleichen Art " +"werden sollen, prüft OpenERP ob ein Kostenstellen-Journal der gleichen Art " "(z.B. Verkauf) vorliegt." #. module: account @@ -238,7 +238,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_tax_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_template_form msgid "Tax Templates" -msgstr "Umsatzsteuer Vorlagen" +msgstr "Umsatzsteuer-Vorlagen" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_select @@ -263,7 +263,7 @@ msgstr "Bestätigt" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "Erlöse Ansicht" +msgstr "Erlöseansicht" #. module: account #: help:account.account,user_type:0 @@ -288,7 +288,7 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" -"Ermöglicht erfassen und buchen Ihrer Bankbelege, Kassenquittungen, Belege " +"Ermöglicht Erfassen und Buchen Ihrer Bankbelege, Kassenquittungen, Belege " "für Verkauf, Einkauf, Spesen, Gutschriften etc.\n" " Hierdurch installieren Sie das Modul account_voucher." @@ -300,12 +300,12 @@ msgstr "Wiederkehrende Buchungen (Manuell)" #. module: account #: field:account.automatic.reconcile,allow_write_off:0 msgid "Allow write off" -msgstr "Erlaube Abschreibung" +msgstr "Abschreibung erlauben" #. module: account #: view:account.analytic.chart:0 msgid "Select the Period for Analysis" -msgstr "Auswahl Periode" +msgstr "Periode für Analyse auswählen" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree3 @@ -379,7 +379,7 @@ msgstr "Multiwährungsfunktion aktivieren" #: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "Sie müssen ein Kostenstellen Journal vom Typ '%s' definieren!" +msgstr "Sie müssen ein Kostenstellen-Journal vom Typ '%s' definieren!" #. module: account #: selection:account.entries.report,month:0 @@ -513,7 +513,7 @@ msgstr "" "gerundet, um abschließend die Steuer des Auftrags über die Summe der " "einzelnen Auftragszeilen zu berechnen. Bei Auswahl 'Global Runden': Die " "Steuern werden je Zeile berechnet, summiert und abschließend global für den " -"gesamten Auftrag gerundet. Falls Sie zu Brutto Preisen inklusive Steuern " +"gesamten Auftrag gerundet. Falls Sie zu Bruttopreisen inklusive Steuern " "verkaufen möchten, sollten Sie 'Runden pro Zeile' einstellen, um " "sicherzustellen dass der Gesamtbetrag des Auftrags der Summe aller einzelnen " "Auftragszeilen entspricht." @@ -531,7 +531,7 @@ msgstr "In alternativer Währung dargestellter Betrag" #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "Bargeld Stückelung" +msgstr "Bargeldstückelung" #. module: account #: field:accounting.report,enable_filter:0 @@ -584,7 +584,7 @@ msgstr "Oberkonto" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "Anzeigerreihenfolge der Rechnungspositionen" +msgstr "Anzeigereihenfolge der Rechnungspositionen" #. module: account #: field:account.bank.statement,account_id:0 @@ -635,7 +635,7 @@ msgstr "Gegenbuchung" #: field:account.fiscal.position,tax_ids:0 #: field:account.fiscal.position.template,tax_ids:0 msgid "Tax Mapping" -msgstr "Steuer Zuordnung" +msgstr "Steuerzuordnung" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state @@ -691,7 +691,7 @@ msgstr "" #: view:account.fiscal.position:0 #: view:account.fiscal.position.template:0 msgid "Taxes Mapping" -msgstr "Steuern Zuordnung" +msgstr "Steuerzuordnung" #. module: account #: report:account.central.journal:0 @@ -725,7 +725,7 @@ msgstr "Keine oder meherere Perioden für dieses Datum gefunden." #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "Auswertung Verkauf nach Kontentyp" +msgstr "Auswertung: Verkauf nach Kontentyp" #. module: account #: code:addons/account/account.py:3201 @@ -817,7 +817,7 @@ msgid "" "change the date or remove this constraint from the journal." msgstr "" "Das Datum Ihrer Buchung fällt nicht in die festgelegte Periode. Sie müssen " -"das Datum anpassen, oder diese Einschränkung vom Bericht entfernen." +"das Datum anpassen oder diese Einschränkung vom Bericht entfernen." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger @@ -914,7 +914,7 @@ msgid "" "Click on compute button." msgstr "" "Steuern fehlen!\n" -"Drücken Sie auf den \"aktualisieren\" Knopf" +"Drücken Sie auf den \"Aktualisieren\"-Button" #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -947,12 +947,12 @@ msgstr "Stornierung des OP-Ausgleichs" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "Kostenstellen Journal" +msgstr "Kostenstellenjournal" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "E-mail senden" +msgstr "Per E-Mail versenden" #. module: account #: help:account.central.journal,amount_currency:0 @@ -1137,7 +1137,7 @@ msgid "" msgstr "" "Wenn das Steuerkonto auch Bestandteil des Steuerkontenplans ist, weist " "dieses Konto auch einen Betrag im Feld Steuern auf. Dieses Feld weist in " -"diesem Fall dann den Messbetrag, i.d.R. den Netto Rechnungsbetrag auf, der " +"diesem Fall dann den Messbetrag, i.d.R. den Netto-Rechnungsbetrag auf, der " "dann die Basis für die Steuerberechnung ist." #. module: account @@ -1180,7 +1180,7 @@ msgstr "Funktionen" #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "Kein Kostenstellen Journal" +msgstr "Kein Kostenstellen-Journal" #. module: account #: report:account.partner.balance:0 @@ -1188,7 +1188,7 @@ msgstr "Kein Kostenstellen Journal" #: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance #: model:ir.ui.menu,name:account.menu_account_partner_balance_report msgid "Partner Balance" -msgstr "Partner Saldenliste" +msgstr "Partner-Saldenliste" #. module: account #: model:ir.actions.act_window,help:account.action_account_gain_loss @@ -1223,7 +1223,7 @@ msgstr "" #. module: account #: field:account.bank.accounts.wizard,acc_name:0 msgid "Account Name." -msgstr "Konto Bezeichnung" +msgstr "Kontenbezeichnung" #. module: account #: field:account.journal,with_last_closing_balance:0 @@ -1295,7 +1295,7 @@ msgstr "Barkassen" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "Kundengutschriften Journal" +msgstr "Kundengutschriften-Journal" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1321,7 +1321,7 @@ msgstr "" "Barzahlungen.\n" " Alle täglichen Ein- und Auszahlungen können aufgezeichnet " "werden. \n" -" Das Bargeld kann gezählt werden, Einzahlungen von " +" Das Barbestand kann erfasstt werden, Einzahlungen von " "Wechselgeld sowie \n" " Entnahmen der Tageseinnahmen können gebucht werden . \n" "

\n" @@ -1348,7 +1348,7 @@ msgstr "Gutschriften" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "Bestätige Bankauszug" +msgstr "Bankauszug bestätigen" #. module: account #: view:account.tax:0 @@ -1361,7 +1361,7 @@ msgid "" "Total amount (in Secondary currency) for transactions held in secondary " "currency for this account." msgstr "" -"Gesamtbetrag der Buchungen in Alternativwährung in der Alternativwährung " +"Gesamtbetrag der Buchungen (in Alternativwährung) in der Alternativwährung " "dieses Kontos ausgegeben." #. module: account @@ -1452,7 +1452,7 @@ msgstr "Buchungstext" #: help:account.invoice,origin:0 #: help:account.invoice.line,origin:0 msgid "Reference of the document that produced this invoice." -msgstr "Referenz Dokumente der Rechnung" +msgstr "Referenzdokumente der Rechnung" #. module: account #: view:account.analytic.line:0 @@ -1516,7 +1516,7 @@ msgstr "Ebene" #, python-format msgid "You can only change currency for Draft Invoice." msgstr "" -"Die Währung kann nur bei einer Rechnung im Entwurf Zustand geändert werden" +"Die Währung kann nur bei einer Rechnung im Entwurfszustand geändert werden" #. module: account #: report:account.invoice:0 @@ -1619,7 +1619,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "Status Rechnung" +msgstr "Rechnungsstatus" #. module: account #: view:account.bank.statement:0 @@ -1660,7 +1660,7 @@ msgid "" "There is no default debit account defined \n" "on journal \"%s\"." msgstr "" -"Es fehlt noch der Standard Debitor \n" +"Es fehlt noch der Standard-Debitor \n" "für das Buchungsjournal \"%s\" ." #. module: account @@ -1671,7 +1671,7 @@ msgstr "Suche Steuern" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger msgid "Account Analytic Cost Ledger" -msgstr "Kostenstellen Buchhaltung" +msgstr "Kostenstellen-Buchhaltung" #. module: account #: view:account.model:0 @@ -1728,12 +1728,12 @@ msgstr "Gutschrift" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "eRechnung & Zahlungen" +msgstr "E-Rechnungen & Zahlungen" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 msgid "Cost Ledger for Period" -msgstr "Kostenstellen Umsatz der Periode" +msgstr "Kostenstellen-Umsatz der Periode" #. module: account #: view:account.entries.report:0 @@ -1764,7 +1764,7 @@ msgstr "Lieferanten Gutschriften" #: field:account.tax.code,code:0 #: field:account.tax.code.template,code:0 msgid "Case Code" -msgstr "Vorgang Nummer" +msgstr "Vorgangsnummer" #. module: account #: field:account.config.settings,company_footer:0 @@ -1820,7 +1820,7 @@ msgstr "Bankauszüge durchsuchen" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Nicht Verbuchte Journaleinträge" +msgstr "Nicht verbuchte Journaleinträge" #. module: account #: view:account.chart.template:0 @@ -1880,9 +1880,9 @@ msgid "" " " msgstr "" "

\n" -" Klicken Sie um einen neuen Kontotyp zu erstellen.\n" +" Klicken Sie um einen neuen Kontentyp zu erstellen.\n" "

\n" -" Der Kontotyp legt fest, wie ein Konto in einem " +" Der Kontentyp legt fest, wie ein Konto in einem " "Buchungsjournal \n" " angewendet wird. Die Abgrenzungs-Methode eines Kontos " "bestimmt\n" @@ -1946,7 +1946,7 @@ msgstr "" "gerundet, um abschließend die Steuer des Auftrags über die Summe der " "einzelnen Auftragszeilen zu berechnen. Bei Auswahl 'Global Runden': Die " "Steuern werden je Zeile berechnet, summiert und abschließend global für den " -"gesamten Auftrag gerundet. Falls Sie zu Brutto Preisen inklusive Steuern " +"gesamten Auftrag gerundet. Falls Sie zu Bruttopreisen inklusive Steuern " "verkaufen möchten, sollten Sie 'Runden pro Zeile' einstellen, um " "sicherzustellen dass der Gesamtbetrag des Auftrags der Summe aller einzelnen " "Auftragszeilen entspricht." @@ -1955,7 +1955,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all #: view:report.account_type.sales:0 msgid "Sales by Account Type" -msgstr "Verkäufe nach Kontotypen" +msgstr "Verkäufe nach Kontentypen" #. module: account #: model:account.payment.term,name:account.account_payment_term_15days @@ -2110,7 +2110,7 @@ msgstr "Rechnung bestätigt" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "Lieferantenzahlung durch Scheck" +msgstr "" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -2301,7 +2301,7 @@ msgstr "" #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "Standard Währung" +msgstr "Standardwährung" #. module: account #: field:account.invoice,move_id:0 @@ -2351,7 +2351,7 @@ msgstr "Gültig" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "Followers" +msgstr "Follower" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal @@ -2377,7 +2377,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "Auswertung Altersstruktur Forderungen" +msgstr "Auswertung Alter der Forderungen" #. module: account #: view:account.fiscalyear.close.state:0 @@ -2522,7 +2522,7 @@ msgstr "Geschäftsjahr" #: code:addons/account/wizard/account_move_bank_reconcile.py:53 #, python-format msgid "Standard Encoding" -msgstr "Standard Eingabe" +msgstr "Standardeingabe" #. module: account #: view:account.journal.select:0 @@ -2573,7 +2573,7 @@ msgstr "Kontenplan Umsatzsteuer" #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "30 Tage Netto" +msgstr "30 Tage netto" #. module: account #: code:addons/account/account_cash_statement.py:256 @@ -2741,7 +2741,7 @@ msgstr "Geschäftsjahr" #: help:accounting.report,fiscalyear_id:0 #: help:accounting.report,fiscalyear_id_cmp:0 msgid "Keep empty for all open fiscal year" -msgstr "Lasse leer für alle offenen Geschäftsjahre" +msgstr "Leer lassen für alle offenen Geschäftsjahre" #. module: account #: code:addons/account/account.py:653 @@ -2761,7 +2761,7 @@ msgstr "Kontobuchung" #. module: account #: view:account.addtmpl.wizard:0 msgid "Create an Account Based on this Template" -msgstr "Erstelle ein Konto auf Basis der Vorlage" +msgstr "Erstellt ein Konto auf Basis der Vorlage" #. module: account #: code:addons/account/account_invoice.py:933 @@ -2787,7 +2787,7 @@ msgstr "Buchungssatz" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 msgid "Main Sequence" -msgstr "Haupt Sequenz" +msgstr "Hauptsequenz" #. module: account #: code:addons/account/account_bank_statement.py:478 @@ -2796,7 +2796,7 @@ msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" -"Um einen Bankauszug zu löschen müssen Sie diesen zuerst Stornieren, um die " +"Um einen Bankauszug zu löschen müssen Sie diesen zuerst stornieren, um die " "dazugehörigen Buchungen zu löschen." #. module: account @@ -2819,7 +2819,7 @@ msgstr "Steuerzuordnung" #: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "Sie können das abgeschlossene Konto %s %s nicht mehr buchen." +msgstr "Sie können in das abgeschlossene Konto %s %s nicht mehr buchen." #. module: account #: field:account.period.close,sure:0 @@ -2850,7 +2850,7 @@ msgstr "Gutschriftsentwurf anlegen" #. module: account #: view:account.partner.reconcile.process:0 msgid "Partner Reconciliation" -msgstr "Offene Posten Ausgleich bei Partnern" +msgstr "Offene Postenausgleich bei Partnern" #. module: account #: view:account.analytic.line:0 @@ -2964,7 +2964,7 @@ msgstr "" "

\n" " Ein Buchungssatz besteht aus mehreren Buchungszeilen, die " "entweder \n" -" Soll- oder Haben Buchungen sein können . \n" +" Soll- oder Haben-Buchungen sein können. \n" "

\n" " OpenERP erstellt automatisch Buchungssätze für folgende " "Geschäftsvorfälle: \n" @@ -3136,7 +3136,7 @@ msgstr "" #. module: account #: sql_constraint:account.model.line:0 msgid "Wrong credit or debit value in model, they must be positive!" -msgstr "Soll und Haben Beträge müssen positiv sein" +msgstr "Soll- und Haben-Beträge müssen positiv sein" #. module: account #: model:process.node,note:account.process_node_reconciliation0 @@ -3212,7 +3212,7 @@ msgstr "Daten" #. module: account #: field:account.chart.template,parent_id:0 msgid "Parent Chart Template" -msgstr "Übergeordnete Kontenplan Vorlage" +msgstr "Übergeordnete Kontenplanvorlage" #. module: account #: field:account.tax,parent_id:0 @@ -3317,7 +3317,7 @@ msgstr "Verkauf Journal" #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" -msgstr "Sie müssen ein Kostenstellen Journal im '%s' Journal definieren!" +msgstr "Sie müssen ein Kostenstellenjournal im '%s' Journal definieren!" #. module: account #: code:addons/account/account.py:781 @@ -3336,8 +3336,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" -"Sie benötigen ein Jahreswechsel Journal mit der Einstellung " -"\"Zentralisierung Gegenkonto\" für die Buchung der Jahreseröffnung." +"Sie benötigen ein Jahreswechseljournal mit der Einstellung \"Zentralisierung " +"Gegenkonto\" für die Buchung der Jahreseröffnung." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3405,7 +3405,7 @@ msgstr "Nicht abgestimmte Buchungen" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "Es ist nur eine Kontoplan Vorlage verfügbar" +msgstr "Es ist nur eine Kontoplanvorlage verfügbar" #. module: account #: view:account.chart.template:0 @@ -3437,7 +3437,7 @@ msgstr "" #. module: account #: field:account.config.settings,date_stop:0 msgid "End date" -msgstr "Ende Datum" +msgstr "Enddatum" #. module: account #: field:account.invoice.tax,base_amount:0 @@ -3447,7 +3447,7 @@ msgstr "Steuergrundlage Betrag" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "Standard Steuer Verkauf" +msgstr "Standardsteuer Verkauf" #. module: account #: help:account.model.line,date_maturity:0 @@ -3578,7 +3578,7 @@ msgid "" "software system you may have to use the rate at date. Incoming transactions " "always use the rate at date." msgstr "" -"Dies bestimmt,wie der Wechselkurs für ausgehende Transaktionen berechnet " +"Dies bestimmt, wie der Wechselkurs für ausgehende Transaktionen berechnet " "wird. In den meisten Ländern ist \"Durchschnitt\" die legale Methode, aber " "nur wenige Systeme können dies. Für Importe von anderen Systemen muss daher " "ggf. der Tageskurs verwendet werden. Eingehende Transkationen verwenden " @@ -3639,7 +3639,7 @@ msgstr "Modell" #. module: account #: help:account.invoice.tax,base_code_id:0 msgid "The account basis of the tax declaration." -msgstr "Das Basis Konto für die Steuererklärung" +msgstr "Das Basiskonto für die Steuererklärung" #. module: account #: selection:account.account,type:0 @@ -3659,7 +3659,7 @@ msgstr "BNK" #. module: account #: field:account.move.line,analytic_lines:0 msgid "Analytic lines" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellen-Buchungen" #. module: account #: view:account.invoice:0 @@ -3917,7 +3917,7 @@ msgstr "" "werden.\n" "'Saldo' bedeutet, dass ein aktueller Saldo zum Stichtag des Jahreswechsels " "als Eröffnung im Folgejahr gebucht wird (z.B. bei Kasse, Bank).\n" -"'Alle Buchungen' bedeutet dass ausnahmslos, alle Buchungen auf dem Konto in " +"'Alle Buchungen' bedeutet, dass ausnahmslos alle Buchungen auf dem Konto in " "das Folgejahr transferiert werden.\n" "'Offene Posten' kopiert alle Journalbuchungen, die nicht ausgegelichen sind " "auf den ersten Tag der ersten Periode des neuen Geschäftsjahres." @@ -4079,8 +4079,8 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" -"Paypal Konto (E-Mail) für den Empfang von Online Zahlungen (Kreditkarte " -"etc.) Durch Hinterlegen des Paypal Kontos kann ein Kunde durch einfachen " +"Paypal-Konto (E-Mail) für den Empfang von Online Zahlungen (Kreditkarte " +"etc.) Durch Hinterlegen des Paypal-Kontos kann ein Kunde durch einfachen " "Klick auf den Button \"Bezahlen mit Paypal\" die offenen Positionen auf dem " "Konto einsehen und begleichen." @@ -4110,7 +4110,7 @@ msgstr "OP-Ausgleich stornieren" #: field:account.tax.code,notprintable:0 #: field:account.tax.code.template,notprintable:0 msgid "Not Printable in Invoice" -msgstr "Nicht Druckbar in Rechnung" +msgstr "Nicht druckbar in Rechnung" #. module: account #: report:account.vat.declaration:0 @@ -4151,7 +4151,7 @@ msgstr "" "Sie können folgendermassen vorgehen:\n" " Direkt Gutschrift buchen oder zuerst im " "Entwurf belassen, \n" -" um zuerst den Original Beleg von\n" +" um zuerst den Originalbeleg von\n" " Ihrem Kunden / Lieferanten zu erhalten." #. module: account @@ -4228,7 +4228,7 @@ msgstr "" "

\n" " Der elektronische Rechnungsversand erleichtert und " "beschleunigt nochmals den \n" -" Zahlungsausgleich. Ihre Kunden bekommen per E-Mail " +" Zahlungsausgleich. Ihre Kunden bekommen per E-Mail-" "Rechnungen gesendet, die\n" " dann auf schnellem Weg Online bezahlt werden können und/oder " "in das eigene \n" @@ -4298,7 +4298,7 @@ msgid "" "Please create one from the configuration of the accounting menu." msgstr "" "Für dieses Datum wurde noch kein Geschäftsjahr angelegt:\n" -"Bitte erstellen Sie ein Datum über das Konfiguration Menü der Finanzen." +"Bitte erstellen Sie ein Datum über das Konfigurationsmenü der Finanzen." #. module: account #: view:account.addtmpl.wizard:0 @@ -4636,7 +4636,7 @@ msgstr "Datum" #, python-format msgid "The journal must have default credit and debit account." msgstr "" -"Das Journal sollte mindestens ein Standard Konto für Soll / Haben Buchungen " +"Das Journal sollte mindestens ein Standardkonto für Soll-/ Haben-Buchungen " "beinhalten." #. module: account @@ -4659,7 +4659,7 @@ msgstr "Nachrichten und Kommunikations-Historie" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "Kostenstellen Journal" +msgstr "Kostenstellen-Journal" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4752,9 +4752,9 @@ msgid "" "debit/credit accounts, of type 'situation' and with a centralized " "counterpart." msgstr "" -"Der beste Ansatz ist die Auswahl eines Jahreswechsel Journals, damit alle " +"Der beste Ansatz ist die Auswahl eines Jahreswechsel-Journals, damit alle " "Eröffnungs- und Abschlussbuchungen in einem Journal zentral gebucht werden " -"können. Beachten Sie zu diesem Zweck beim Journal Soll / Haben Konten des " +"können. Beachten Sie zu diesem Zweck beim Journal Soll-/ Haben-Konten des " "Typs 'Jahreswechsel' zu hinterlegen, sowie 'Zentralisierung Gegenkonto' zu " "aktivieren." @@ -4767,7 +4767,7 @@ msgstr "Titel" #: view:account.invoice:0 #: view:account.subscription:0 msgid "Set to Draft" -msgstr "Setze auf Entwurf" +msgstr "Auf 'Entwurf' setzen" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form @@ -4777,7 +4777,7 @@ msgstr "Wiederkehrende Buchungen" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "Anzeige Partner" +msgstr "Partner anzeigen" #. module: account #: view:account.invoice:0 @@ -4833,7 +4833,7 @@ msgstr "Start Periode" #: field:account.tax.template,name:0 #: report:account.vat.declaration:0 msgid "Tax Name" -msgstr "Steuer Bezeichnung" +msgstr "Steuerbezeichnung" #. module: account #: view:account.config.settings:0 @@ -4907,9 +4907,9 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" -"Eine Nachkommastellen Genauigkeit von 2 ermöglicht Buchungen mit auf 2 " +"Eine Nachkommastellengenauigkeit von 2 ermöglicht Buchungen mit auf 2 " "Stellen auf- oder abgerundeten Beträgen wie z.B. 9,99 EUR, eine " -"Nachkommastellen Genauigkeit von 4 ermöglicht Buchungen wie z.B.: 0,0231 EUR." +"Nachkommastellengenauigkeit von 4 ermöglicht Buchungen wie z.B.: 0,0231 EUR." #. module: account #: field:account.account,shortcut:0 @@ -4948,7 +4948,7 @@ msgstr "Storniere die ausgewählten Rechnungen" #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" -"Sie müssen ein Kostenstellen Journal für das Journal '%s' hinterlegen!" +"Sie müssen ein Kostenstellenjournal für das Journal '%s' hinterlegen!" #. module: account #: model:process.transition,note:account.process_transition_supplieranalyticcost0 @@ -5038,8 +5038,8 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" -"Kontenplan kann nicht gefunden werden, sie sollten diesen über Einstellungen " -"/ Konfiguration / Finanzen anlegen." +"Kontenplan kann nicht gefunden werden, Sie sollten diesen über " +"Einstellungen/ Konfiguration/ Finanzen anlegen." #. module: account #: field:account.entries.report,product_uom_id:0 @@ -5202,7 +5202,7 @@ msgstr "Haupt Titel 1 (fett, unterstrichen)" #: report:account.analytic.account.balance:0 #: report:account.central.journal:0 msgid "Account Name" -msgstr "Konto Bezeichnung" +msgstr "Kontenbezeichnung" #. module: account #: help:account.fiscalyear.close,report_name:0 @@ -5234,7 +5234,7 @@ msgstr "Storniere Abschreibung" #: view:account.account.template:0 #: view:account.chart.template:0 msgid "Account Template" -msgstr "Konto Vorlage" +msgstr "Kontenvorlage" #. module: account #: view:account.bank.statement:0 @@ -5369,12 +5369,12 @@ msgstr "Wechselgeld" #. module: account #: field:account.journal,type_control_ids:0 msgid "Type Controls" -msgstr "Kontoarten Auswahl" +msgstr "Kontenarten-Auswahl" #. module: account #: help:account.journal,default_credit_account_id:0 msgid "It acts as a default account for credit amount" -msgstr "Fungiert als Standardkonto für die Haben Buchung in diesem Journal" +msgstr "Fungiert als Standardkonto für die Haben-Buchung in diesem Journal" #. module: account #: view:cash.box.out:0 @@ -5391,7 +5391,7 @@ msgstr "Abgebrochen" #. module: account #: help:account.config.settings,group_proforma_invoices:0 msgid "Allows you to put invoices in pro-forma state." -msgstr "Ermöglicht Pro-Forma Abrechnung" +msgstr "Ermöglicht Pro-Forma-Abrechnung" #. module: account #: view:account.journal:0 @@ -5419,7 +5419,7 @@ msgstr "Vorsteuer %.2f%%" #: model:ir.actions.act_window,name:account.action_account_subscription_generate #: model:ir.ui.menu,name:account.menu_generate_subscription msgid "Generate Entries" -msgstr "Buchungen (Automatisch)" +msgstr "Buchungen (automatisch)" #. module: account #: help:account.vat.declaration,chart_tax_id:0 @@ -5462,7 +5462,7 @@ msgstr "Umsatzsteuer" #: field:account.tax,ref_tax_code_id:0 #: field:account.tax.template,ref_tax_code_id:0 msgid "Refund Tax Code" -msgstr "Gutschrift Umsatzsteuer" +msgstr "Gutschrift für Umsatzsteuer" #. module: account #: view:account.invoice:0 @@ -5481,8 +5481,9 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" -"Die Periodenstatus ist jetzt 'Offen'. Durch die \"Druckausgabe\" ändert sich " -"dadurch der Status." +"Die Periodenstatus ist jetzt \"Offen\". Durch die \"Druckausgabe\" ändert " +"sich dadurch der Status auf 'Gedruckt'. Wenn alle Transaktionen " +"abgeschlossen sind wird er zu 'Abgeschlossen (done)'." #. module: account #: code:addons/account/account.py:3205 @@ -5506,7 +5507,7 @@ msgstr "Neues Geschäftsjahr" #: view:report.invoice.created:0 #: field:res.partner,invoice_ids:0 msgid "Invoices" -msgstr "Rechnung" +msgstr "Rechnungen" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 @@ -5572,7 +5573,7 @@ msgstr "Buchungssätze" #. module: account #: view:account.use.model:0 msgid "Use Model" -msgstr "Benutze Modellvorlage" +msgstr "Buchungsvorlage verwenden" #. module: account #: help:account.invoice,partner_bank_id:0 @@ -5657,7 +5658,7 @@ msgstr "Berechne" #. module: account #: field:account.tax,type_tax_use:0 msgid "Tax Application" -msgstr "Steuer Anwendung" +msgstr "Steueranwendung" #. module: account #: code:addons/account/account_invoice.py:922 @@ -5693,7 +5694,7 @@ msgstr "Bargeld zählen" #: field:account.analytic.inverted.balance,date2:0 #: field:account.analytic.journal.report,date2:0 msgid "End of period" -msgstr "Ende Periode" +msgstr "Periodenende" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 @@ -5738,12 +5739,12 @@ msgstr "Finanzmanager" #. module: account #: field:account.journal,group_invoice_lines:0 msgid "Group Invoice Lines" -msgstr "Zusammenfassen Rechnungszeilen" +msgstr "Rechnungszeilen zusammenfassen" #. module: account #: view:account.automatic.reconcile:0 msgid "Close" -msgstr "Fertig" +msgstr "Schließen" #. module: account #: field:account.bank.statement.line,move_ids:0 @@ -5767,7 +5768,7 @@ msgid "" "If you do not check this box, you will be able to do invoicing & payments, " "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" -"Bei Deaktivierung, können Sie abrechnen und Zahlungen ausgleichen aber nicht " +"Bei Deaktivierung können Sie abrechnen und Zahlungen ausgleichen aber nicht " "buchen (Journale, Kontenplan, ...)" #. module: account @@ -5891,7 +5892,7 @@ msgid "" "encode the sale and purchase rates or choose from list of taxes. This last " "choice assumes that the set of tax defined on this template is complete" msgstr "" -"Hier können Sie entscheiden, ob Sie Einkaufs und Verkaufssteuern selbst " +"Hier können Sie entscheiden, ob Sie Einkaufs- und Verkaufssteuern selbst " "einrichten wollen oder aus einer Liste auswählen. Letzeres setzt voraus, " "dass die Vorlage komplett ist." @@ -5918,7 +5919,7 @@ msgstr "Jahr" #. module: account #: help:account.invoice,sent:0 msgid "It indicates that the invoice has been sent." -msgstr "Unter der Annahme Rechnung gesendet wurde" +msgstr "Unter der Annahme, dass die Rechnung gesendet wurde" #. module: account #: field:account.tax.template,description:0 @@ -5940,7 +5941,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "Pro Form Rechnung " +msgstr "Pro Forma-Rechnung " #. module: account #: selection:account.subscription,period_type:0 @@ -5976,7 +5977,7 @@ msgstr "Gewinn & Verlust (Erträge)" #. module: account #: field:account.journal,allow_date:0 msgid "Check Date in Period" -msgstr "Prüfe Datum in Periode" +msgstr "Datum in Periode prüfen" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports @@ -5998,7 +5999,7 @@ msgstr "Diese Periode" #. module: account #: view:account.tax.template:0 msgid "Compute Code (if type=code)" -msgstr "Berechne Quellcode (if type=code)" +msgstr "Quellcode (if type=code) berechnen" #. module: account #: code:addons/account/account_invoice.py:508 @@ -6006,7 +6007,7 @@ msgstr "Berechne Quellcode (if type=code)" msgid "" "Cannot find a chart of accounts for this company, you should create one." msgstr "" -"Es existiert noch kein Kontenplan für dieses Unternehmen, sie sollten einen " +"Es existiert noch kein Kontenplan für dieses Unternehmen. Sie sollten einen " "anlegen." #. module: account @@ -6097,7 +6098,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "Storno erlauben?" +msgstr "Storno erlauben" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -6109,7 +6110,7 @@ msgid "" msgstr "" "Fälligkeitsdatum der Buchung, die durch die wiederkehrende Buchungsvorlage " "'%s' auf Basis der Zahlungsbedingungen des Partners ermittelt wird. Bitte " -"weisen Sie Ihren Partnern gültigen Zahlungsbedngungen zu." +"weisen Sie Ihren Partnern gültigen Zahlungsbedingungen zu." #. module: account #: field:account.tax.code,sign:0 @@ -6157,7 +6158,7 @@ msgstr "In Grundbetrag einbeziehen" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "Eingangsrechnung Nummer" +msgstr "Eingangsrechnungs-Nummer" #. module: account #: help:account.payment.term.line,days:0 @@ -6231,7 +6232,7 @@ msgstr "Offen" #: view:account.config.settings:0 #: model:ir.ui.menu,name:account.menu_analytic_accounting msgid "Analytic Accounting" -msgstr "Kostenstellen Auswertungen" +msgstr "Kostenstellen-Auswertungen" #. module: account #: help:account.payment.term.line,value:0 @@ -6249,7 +6250,7 @@ msgstr "" #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "Inkludiere Eröffnungsbilanz" +msgstr "Eröffnungsbilanz einbeziehen" #. module: account #: view:account.invoice.tax:0 @@ -6269,7 +6270,7 @@ msgstr "Kundengutschrift" #: field:account.tax.template,ref_tax_sign:0 #: field:account.tax.template,tax_sign:0 msgid "Tax Code Sign" -msgstr "Steuer Vorzeichen" +msgstr "Steuervorzeichen" #. module: account #: model:ir.model,name:account.model_report_invoice_created @@ -6279,12 +6280,12 @@ msgstr "Rechnungen der letzten 15 Tage" #. module: account #: field:account.fiscalyear,end_journal_period_id:0 msgid "End of Year Entries Journal" -msgstr "Journal Eröffnungsbuchungen" +msgstr "Journal-Eröffnungsbuchungen" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "Entwurf Gutschrift " +msgstr "Gutschriftsentwurf " #. module: account #: view:cash.box.in:0 @@ -6316,7 +6317,7 @@ msgstr "Automatische Buchungen" #. module: account #: field:account.entries.report,quantity:0 msgid "Products Quantity" -msgstr "Produkt Menge" +msgstr "Produktmenge" #. module: account #: view:account.entries.report:0 @@ -6332,7 +6333,7 @@ msgstr "Nicht gebucht" #: model:ir.actions.act_window,name:account.action_account_change_currency #: model:ir.model,name:account.model_account_change_currency msgid "Change Currency" -msgstr "Ändere Währung" +msgstr "Währung ändern" #. module: account #: model:process.node,note:account.process_node_accountingentries0 @@ -6349,7 +6350,7 @@ msgstr "Zahlungsdatum" #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "Öffne Kassenbeleg" +msgstr "Kassenbeleg öffnen" #. module: account #: view:account.analytic.account:0 @@ -6361,7 +6362,7 @@ msgstr "Kostenstellenkonten" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "Kunden Rechnungen und Gutschriften" +msgstr "Kundenrechnungen und Gutschriften" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -6374,7 +6375,7 @@ msgstr "Währungsbetrag" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "Runden in Zeile" +msgstr "In Zeile runden" #. module: account #: report:account.analytic.account.balance:0 @@ -6423,7 +6424,7 @@ msgid "" "be chosen as the power of the automatic reconciliation" msgstr "" "Anzahl der maximalen Teilbeträge die für einen gegenseitigen Ausgleich von " -"Rechnungen und Zahlungen kombiniert werden dürfen, um automatisch eine " +"Rechnungen und Zahlungen kombiniert werden dürfen, um automatisch einen " "Saldenausgleich für das ausgewählte Konto herbeizuführen." #. module: account @@ -6436,7 +6437,7 @@ msgstr "Sie müssen eine Periode einstellen, die größer als \"0\" ist." #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 msgid "Fiscal Position Template" -msgstr "Steuerzuordnung Vorlage" +msgstr "Steuerzuordnung-Vorlage" #. module: account #: view:account.invoice:0 @@ -6448,7 +6449,7 @@ msgstr "Neue Gutschrift" #: view:account.chart:0 #: view:account.tax.chart:0 msgid "Open Charts" -msgstr "Öffne Kontenplan" +msgstr "Kontenplan öffnen" #. module: account #: field:account.central.journal,amount_currency:0 @@ -6463,7 +6464,7 @@ msgstr "Mit Währung" #. module: account #: view:account.bank.statement:0 msgid "Open CashBox" -msgstr "Öffne Barkasse" +msgstr "Barkasse öffnen" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -6478,7 +6479,7 @@ msgstr "Ausgleichen durch Abschreibung" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." -msgstr "Es darf nicht auf Ansicht Konten gebucht werden." +msgstr "Es darf nicht in Ansicht auf Konten gebucht werden." #. module: account #: selection:account.payment.term.line,value:0 @@ -6497,19 +6498,19 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile msgid "Account Automatic Reconcile" -msgstr "Automatischer Offene Posten Ausgleich" +msgstr "Automatischer Offene Posten-Ausgleich" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "Journal Buchung" +msgstr "Journalbuchung" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "Erstelle Vortragsbuchungen" +msgstr "Vortragsbuchungen erstellen" #. module: account #: help:account.tax,type:0 @@ -6524,7 +6525,7 @@ msgstr "Berechnung der Fälligkeit" #. module: account #: field:report.invoice.created,create_date:0 msgid "Create Date" -msgstr "Datum Erstellung" +msgstr "Erstelldatum" #. module: account #: view:account.analytic.journal:0 @@ -6532,18 +6533,18 @@ msgstr "Datum Erstellung" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_form #: model:ir.ui.menu,name:account.account_def_analytic_journal msgid "Analytic Journals" -msgstr "Kostenstellen Journale" +msgstr "Kostenstellen-Journale" #. module: account #: field:account.account,child_id:0 msgid "Child Accounts" -msgstr "untergeordnete Konten" +msgstr "Untergeordnete Konten" #. module: account #: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" -msgstr "Buchung Bezeichnung (id): %s (%s)" +msgstr "Buchungs-Bezeichnung (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 @@ -6613,7 +6614,7 @@ msgstr "Debitoren und Kreditoren" #. module: account #: field:account.fiscal.position.account.template,position_id:0 msgid "Fiscal Mapping" -msgstr "Steuer Umschlüsselung" +msgstr "Steuer-Umschlüsselung" #. module: account #: view:account.config.settings:0 @@ -6646,8 +6647,8 @@ msgid "" msgstr "" "Durch diese Ansicht erhalten Sie mehrdimensionale Ansichten auf Ihre " "Finanzkonten. Diese Perspektive zeigt Ihnen Ihre Salden und Verkehrszahlen " -"sowie diverse andere Kriterien und Werte die im Auswahldialog gewählt werden " -"können." +"sowie diverse andere Kriterien und Werte, die im Auswahldialog gewählt " +"werden können." #. module: account #: help:account.partner.reconcile.process,progress:0 @@ -6666,7 +6667,7 @@ msgstr "" #: field:report.account.sales,period_id:0 #: field:report.account_type.sales,period_id:0 msgid "Force Period" -msgstr "Erzwinge Periode" +msgstr "Periode erzwingen" #. module: account #: model:ir.actions.act_window,help:account.action_account_form @@ -6728,7 +6729,7 @@ msgstr "(aktualisieren)" #: field:accounting.report,filter:0 #: field:accounting.report,filter_cmp:0 msgid "Filter by" -msgstr "Filter durch" +msgstr "Filter nach" #. module: account #: code:addons/account/account.py:2334 @@ -6791,7 +6792,7 @@ msgid "" "belong to chart of accounts \"%s\"." msgstr "" "Es kann keine Journalbuchung erfolgen, da das Konto \"%s\" bislang nicht zum " -"Kontoplan \"%s\" zugewiesen wurde." +"Kontenplan \"%s\" zugewiesen wurde." #. module: account #: view:account.financial.report:0 @@ -6801,7 +6802,7 @@ msgstr "Bericht" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template msgid "Template Tax Fiscal Position" -msgstr "Steuer Zuordnung Vorlage" +msgstr "Steuerzuordnung Vorlage" #. module: account #: help:account.tax,name:0 @@ -6835,7 +6836,7 @@ msgstr "Fremdwährung Saldo" #. module: account #: field:account.journal.period,name:0 msgid "Journal-Period Name" -msgstr "Journal Periode Bezeichnung" +msgstr "Journal Periodenbezeichnung" #. module: account #: field:account.invoice.tax,factor_base:0 @@ -6867,7 +6868,7 @@ msgstr "Hinweis Steuerzuordnung" #: model:ir.actions.act_window,name:account.action_analytic_entries_report #: model:ir.ui.menu,name:account.menu_action_analytic_entries_report msgid "Analytic Entries Analysis" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellen-Buchungen" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -6885,7 +6886,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" -msgstr "Kostenstellen Buchung" +msgstr "Kostenstellen-Buchung" #. module: account #: view:res.company:0 @@ -6910,7 +6911,7 @@ msgid "" "(i.e. paid) in the system." msgstr "" "Sobald der Zahlungsausgleich erfolgt ist, wechselt der Status der Rechnung " -"zu 'Erledigt' (d. h. Bezahlt)." +"zu 'Erledigt' (d. h. bezahlt)." #. module: account #: view:account.chart.template:0 @@ -6927,7 +6928,7 @@ msgstr "Letztmaliger Ausgleich Offener Posten" #: view:account.analytic.line:0 #: model:ir.model,name:account.model_account_analytic_line msgid "Analytic Line" -msgstr "Kostenstellen Buchung" +msgstr "Kostenstellen-Buchung" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form @@ -6999,7 +7000,7 @@ msgstr "Steuerart" #: model:ir.actions.act_window,name:account.action_account_template_form #: model:ir.ui.menu,name:account.menu_action_account_template_form msgid "Account Templates" -msgstr "Konto Vorlagen" +msgstr "Kontenvorlagen" #. module: account #: help:account.config.settings,complete_tax_set:0 @@ -7027,12 +7028,12 @@ msgstr "Unternehmen" #. module: account #: view:account.invoice.report:0 msgid "Open and Paid Invoices" -msgstr "Offene und Bezahlte Rechnungen" +msgstr "Offene und bezahlte Rechnungen" #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children flat" -msgstr "Zeige abhängige Konten in flacher Liste" +msgstr "Abhängige Konten in flacher Liste anzeigen" #. module: account #: view:account.config.settings:0 @@ -7042,12 +7043,12 @@ msgstr "Bank & Kasse" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 msgid "Select a fiscal year to close" -msgstr "Wähle abzuschließendes Geschäftsjahr" +msgstr "Abzuschließendes Geschäftsjahr wählen" #. module: account #: help:account.chart.template,tax_template_ids:0 msgid "List of all the taxes that have to be installed by the wizard" -msgstr "Liste der Steuern die durch den Assistenten installiert werden" +msgstr "Liste der Steuern, die durch den Assistenten installiert werden" #. module: account #: model:ir.actions.report.xml,name:account.account_intracom @@ -7128,17 +7129,17 @@ msgstr "Sie können keine bereits abgeschlossene Konten buchen." msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" "Das Unternehmen des gebuchten Kontos der Rechnungszeile und der " -"Rechnungsaussteller stimmt nicht überein." +"Rechnungsaussteller stimmen nicht überein." #. module: account #: view:account.invoice:0 msgid "Other Info" -msgstr "Weitere Info" +msgstr "Weitere Infos" #. module: account #: field:account.journal,default_credit_account_id:0 msgid "Default Credit Account" -msgstr "Standard Habenkonto" +msgstr "Standard-Haben-Konto" #. module: account #: help:account.analytic.line,currency_id:0 @@ -7202,12 +7203,12 @@ msgstr "Maximum Ausgleichspositionen" #: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." -msgstr "Kann keinen nicht verwendeten Journal Code erzeugen." +msgstr "Kann keinen nicht verwendeten Journalcode erzeugen." #. module: account #: view:project.account.analytic.line:0 msgid "View Account Analytic Lines" -msgstr "Ansicht Kostenstellen Buchungen" +msgstr "Ansicht Kostenstellen-Buchungen" #. module: account #: field:account.invoice,internal_number:0 @@ -7226,8 +7227,8 @@ msgid "" "Indicates if the amount of tax must be included in the base amount for the " "computation of the next taxes" msgstr "" -"Anzeige, inwieweit diese Steuer im Grundbetrag für die weitere Berechnung " -"enthalten sein muß, oder nicht." +"Anzeige, inwieweit diese Steuer im Steuergrundbetrag für die weitere " +"Berechnung inbegriffen ist oder nicht." #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile @@ -7238,7 +7239,7 @@ msgstr "Ausgleich Offener Posten: Gehe zu nächstem Partner" #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance #: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance msgid "Inverted Analytic Balance" -msgstr "Kostenstellen - Kostenarten Analyse" +msgstr "Kostenstellen - Kostenarten-Analyse" #. module: account #: field:account.tax.template,applicable_type:0 @@ -7258,7 +7259,7 @@ msgstr "" "automatisch bei der Erzeugung der Buchungssätze berechnet. Die " "Zahlungsbedingung kann mehrere Fälligkeitsdaten berechnen, z.B. bei " "Fälligkeit von 50% sofort und 50% in 30 Tagen. Wenn Sie jedoch ein " -"Fälligkeitsdatum manuell setzen möchten, stellen Sie sicher das keine " +"Fälligkeitsdatum manuell setzen möchten, stellen Sie sicher, dass keine " "Zahlungsbedingung ausgewählt ist. Wenn Sie sowohl Zahlungsbedingung als auch " "das Fälligkeitsdatum frei lassen, wird die Rechnung sofort fällig gesetzt." @@ -7269,7 +7270,7 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" -"Es wurde noch keine spezifische Jahreswechsel Periode definiert. \r\n" +"Es wurde noch keine spezifische Jahreswechselperiode definiert. \r\n" "Bitte erstellen Sie diese Perioden für die Erstellung einer Eröffnungsbilanz." #. module: account @@ -7316,7 +7317,7 @@ msgstr "Finanzmittel" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellen-Buchungen" #. module: account #: field:account.config.settings,has_default_company:0 @@ -7331,7 +7332,7 @@ msgid "" "it will simply replace the old opening entries with the new ones." msgstr "" "Dieser Assistent generiert die Abschlussbuchungen für das ausgewählte " -"Geschäftsjahr. Beachten Sie dabei, daß Sie diesen Assistenten mehrmals " +"Geschäftsjahr. Beachten Sie dabei, dass Sie diesen Assistenten mehrmals " "durchführen können. Der ursprünglich vorgetragene Betrag wird dann dabei " "einfach aktualisiert." @@ -7443,7 +7444,7 @@ msgstr "Durch diese Auswahl werden Buchungszeilen der Rechnungen verdichtet." #. module: account #: field:account.installer,has_default_company:0 msgid "Has Default Company" -msgstr "Hat Standard Unternehmen" +msgstr "Hat Standardunternehmen" #. module: account #: model:ir.model,name:account.model_account_sequence_fiscalyear @@ -7460,7 +7461,7 @@ msgstr "account.sequence.fiscalyear" #: model:ir.model,name:account.model_account_analytic_journal #: model:ir.ui.menu,name:account.account_analytic_journal_print msgid "Analytic Journal" -msgstr "Kostenstellen Journal" +msgstr "Kostenstellenjournal" #. module: account #: view:account.entries.report:0 @@ -7485,7 +7486,7 @@ msgstr "Steuergrundbetrag" #. module: account #: field:account.model,name:0 msgid "Model Name" -msgstr "Buchungsvorlage Bezeichnung" +msgstr "Bezeichnung der Buchungsvorlage" #. module: account #: field:account.chart.template,property_account_expense_categ:0 @@ -7508,8 +7509,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" -"Wenn Sie die Kontenabstimmung rückgängig machen wollen, stellen Sie sicher " -"das alle auf diese Buchungen bezogenen Aktionen rückgängig gemacht wurden, " +"Wenn Sie die Kontenabstimmung rückgängig machen wollen, stellen Sie sicher, " +"dass alle auf diese Buchungen bezogenen Aktionen rückgängig gemacht wurden, " "da sie nicht automatisiert zurückgesetzt werden" #. module: account @@ -7525,7 +7526,7 @@ msgstr "Bemerkungen" #. module: account #: model:ir.model,name:account.model_analytic_entries_report msgid "Analytic Entries Statistics" -msgstr "Statistik Kostenstellen Buchungen" +msgstr "Statistik Kostenstellenbuchungen" #. module: account #: code:addons/account/account_analytic_line.py:142 @@ -7622,7 +7623,7 @@ msgstr "Erzeuge" #. module: account #: model:process.transition.action,name:account.process_transition_action_createentries0 msgid "Create entry" -msgstr "Erzeuge Buchung" +msgstr "Buchung anlegen" #. module: account #: selection:account.account.type,report_type:0 @@ -7665,7 +7666,7 @@ msgstr "Saldo mit existierendem Vorzeichen" #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "Umsatzsteuer Anmeldung" +msgstr "Umsatzsteuer-Anmeldung" #. module: account #: selection:account.journal.period,state:0 @@ -7675,7 +7676,7 @@ msgstr "Gedruckt" #. module: account #: view:account.analytic.line:0 msgid "Project line" -msgstr "Budget Projekt" +msgstr "Projektbudget" #. module: account #: field:account.invoice.tax,manual:0 @@ -7713,7 +7714,7 @@ msgstr "" #: view:account.move:0 #: field:account.move,to_check:0 msgid "To Review" -msgstr "Zu Prüfen" +msgstr "Zu prüfen" #. module: account #: help:account.partner.ledger,initial_balance:0 @@ -7723,7 +7724,7 @@ msgid "" "row to display the amount of debit/credit/balance that precedes the filter " "you've set." msgstr "" -"Wenn ein Filter nach Datum oder Periode gewählt wird, können sie mit diesem " +"Wenn ein Filter nach Datum oder Periode gewählt wird, können Sie mit diesem " "Kennzeichen steuern, ob eine Zeile mit Soll/Haben/Saldo der Ausgabe " "vorangestellt wird." @@ -7785,12 +7786,12 @@ msgstr "Alle Einträge" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "Sie können lediglich Buchungssätze des selben Partners ausgleichen" +msgstr "Sie können lediglich Buchungssätze desselben Partners ausgleichen" #. module: account #: view:account.journal.select:0 msgid "Journal Select" -msgstr "Wähle Journal" +msgstr "Journal wählen" #. module: account #: view:account.bank.statement:0 @@ -7877,7 +7878,7 @@ msgid "" "The currency chosen should be shared by the default accounts too." msgstr "" "Konfigurationsfehler !\n" -"Die ausgewählte Währung sollte auch bei den verwendeten Standard Konten " +"Die ausgewählte Währung sollte auch bei den verwendeten Standardkonten " "zugelassen werden." #. module: account @@ -7921,7 +7922,7 @@ msgstr "Belegreferenz für diese Rechnung" #: field:account.tax.code,child_ids:0 #: field:account.tax.code.template,child_ids:0 msgid "Child Codes" -msgstr "untergeordnete Schlüssel" +msgstr "Untergeordnete Schlüssel" #. module: account #: constraint:account.fiscalyear:0 @@ -7930,8 +7931,7 @@ msgid "" "The start date of a fiscal year must precede its end date." msgstr "" "Fehler !\n" -"Das Startdatum sollte nach dem Ende Datum des laufenden Geschäftsjahres " -"enden." +"Das Startdatum sollte nach dem Enddatum des laufenden Geschäftsjahres enden." #. module: account #: view:account.tax.template:0 @@ -8070,7 +8070,7 @@ msgstr "Monatlicher Umsatz" #: view:account.move:0 #: view:account.move.line:0 msgid "Analytic Lines" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellenbuchungen" #. module: account #: field:account.analytic.journal,line_ids:0 @@ -8081,7 +8081,7 @@ msgstr "Positionen" #. module: account #: view:account.tax.template:0 msgid "Account Tax Template" -msgstr "Umsatzsteuer Vorlage" +msgstr "Umsatzsteuer-Vorlage" #. module: account #: view:account.journal.select:0 @@ -8153,7 +8153,7 @@ msgstr "Datum Rechnung" #. module: account #: view:account.invoice.report:0 msgid "Group by year of Invoice Date" -msgstr "Gruppiere nach Rechnungsjahr" +msgstr "Nach Rechnungsjahr Gruppieren" #. module: account #: field:account.config.settings,purchase_tax_rate:0 @@ -8188,7 +8188,7 @@ msgstr "OK" #. module: account #: field:account.chart.template,tax_code_root_id:0 msgid "Root Tax Code" -msgstr "Basis Steuerschlüssel" +msgstr "Basis-Steuerschlüssel" #. module: account #: help:account.journal,centralisation:0 @@ -8213,7 +8213,7 @@ msgstr "Positionen auf Bankauszug" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "Standard Steuer Einkauf" +msgstr "Standardsteuer Einkauf" #. module: account #: field:account.chart.template,property_account_income_opening:0 @@ -8223,7 +8223,7 @@ msgstr "Eröffnungsbilanz Erlöskonto" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "Ermöglicht Pro-Form Rechnung" +msgstr "Ermöglicht Pro-Forma Rechnung" #. module: account #: view:account.bank.statement:0 @@ -8282,13 +8282,13 @@ msgstr "Warnung" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "Verträge/Analyse Konten" +msgstr "Verträge/Kostenstellenkonten" #. module: account #: view:account.journal:0 #: field:res.partner.bank,journal_id:0 msgid "Account Journal" -msgstr "Finanzen Journal" +msgstr "Finanz-Journal" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 @@ -8340,7 +8340,7 @@ msgstr "Domain" #. module: account #: model:ir.model,name:account.model_account_use_model msgid "Use model" -msgstr "Benutze Buchungsvorlage" +msgstr "Buchungsvorlage benutzen" #. module: account #: code:addons/account/account.py:1490 @@ -8349,7 +8349,7 @@ msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" -"Es wurde noch kein Standard Habenkonto für das Journal\n" +"Es wurde noch kein Standard-Habenkonto für das Journal\n" "%s erstellt." #. module: account @@ -8362,7 +8362,7 @@ msgstr "Rechungsposition" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "Kunden und Lieferanten Gutschriften" +msgstr "Kunden- und Lieferantengutschriften" #. module: account #: field:account.financial.report,sign:0 @@ -8392,7 +8392,7 @@ msgstr "" "

\n" " Klicken Sie zur Erstellung einer Kostenstelle.\n" "

\n" -" Im Normalfall wird ein Standard Kontenplan durch die " +" Im Normalfall wird ein Standard-Kontenplan durch die " "Finanzbehörden\n" " eines Landes empfohlen oder vorgegeben. Der " "Kostenstellenplan sollte \n" @@ -8425,14 +8425,14 @@ msgstr "EB" #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "PROFORMA" +msgstr "PRO-FORMA" #. module: account #: selection:account.entries.report,move_line_state:0 #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "Nicht Ausgeglichen" +msgstr "Nicht ausgeglichen" #. module: account #: selection:account.move.line,centralisation:0 @@ -8443,12 +8443,12 @@ msgstr "Normal" #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "EMail Vorlagen" +msgstr "E-Mail-Vorlagen" #. module: account #: view:account.move.line:0 msgid "Optional Information" -msgstr "Informationen (Optional)" +msgstr "Informationen (optional)" #. module: account #: view:account.analytic.line:0 @@ -8489,7 +8489,7 @@ msgstr "Fälligkeitsdatum" #: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "Verkauf Journal" +msgstr "Verkaufs-Journal" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -8517,16 +8517,16 @@ msgid "" "few new accounts (You don't need to define the whole structure that is " "common to both several times)." msgstr "" -"Dieses wahlfreie Feld ermöglicht Ihnen eine Konten-Vorlage von einer " -"Kontenplan-Vorlage abzuleiten, wobei sich die Konten vom Stamm-Kontenplan " -"unterscheiden können. So können Sie eine Kontenplan-Vorlage festlegen, die " -"eine Andere, ggf. auch nur geringfügig, erweitert. (Sie brauchen also nicht " -"die beiden gemeinsamen Strukturen mehrfach zu definieren)." +"Dieses optione Feld ermöglicht Ihnen eine Kontenvorlage von einer Kontenplan-" +"Vorlage abzuleiten, wobei sich die Konten vom Stamm-Kontenplan unterscheiden " +"können. So können Sie eine Kontenplan-Vorlage festlegen, die eine andere, " +"ggf. auch nur geringfügig, erweitert. (Sie brauchen also nicht die beiden " +"gemeinsamen Strukturen mehrfach zu definieren.)" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "Buchungssatz Vorschläge" +msgstr "Buchungssatz-Vorschläge" #. module: account #: help:account.invoice.refund,date:0 @@ -8640,7 +8640,7 @@ msgstr "Gutschrift Nummernfolge" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "Quittiere Buchungen" +msgstr "Buchungen quittieren" #. module: account #: selection:account.bank.statement.line,type:0 @@ -8672,7 +8672,7 @@ msgstr "Barkasse" #: field:account.fiscal.position.account,account_dest_id:0 #: field:account.fiscal.position.account.template,account_dest_id:0 msgid "Account Destination" -msgstr "Kontozuordnung" +msgstr "Kontenzuordnung" #. module: account #: help:account.invoice.refund,filter_refund:0 @@ -8681,7 +8681,7 @@ msgid "" "already reconciled" msgstr "" "Diese Auswahl legt fest, wie die Gutschrift vorgenommen wird. Sie können die " -"Rechnung nicht Abbrechen oder Modifizieren, wenn die Rechnung bereits " +"Rechnung nicht abbrechen oder modifizieren, wenn die Rechnung bereits " "beglichen wurde." #. module: account @@ -8700,7 +8700,7 @@ msgstr "Nummernfolge" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "Paypal Konto" +msgstr "Paypal-Konto" #. module: account #: selection:account.print.journal,sort_selection:0 @@ -8779,9 +8779,9 @@ msgid "" "positive, it gives the day of the next month. Set 0 for net days (otherwise " "it's based on the beginning of the month)." msgstr "" -"Tag des Monats, setze -1 für den letzten Tag des laufenden Monats. Bei " -"positivem Wert wird der Tag des nächsten Monats angenommen. Setze 0 für " -"Nettotage (oder es wird der Monatsanfang genommen)." +"Tag des Monats, setzen Sie '-1' für den letzten Tag des laufenden Monats. " +"Bei positivem Wert wird der Tag des nächsten Monats angenommen. Setzen Sie " +"'0' für Nettotage (oder es wird der Monatsanfang genommen)." #. module: account #: view:account.move.line.reconcile:0 @@ -8813,7 +8813,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_cashbox_line msgid "CashBox Line" -msgstr "Barkasse Buchungen" +msgstr "Barkassenbuchung" #. module: account #: field:account.installer,charts:0 @@ -8828,7 +8828,7 @@ msgstr "Finanzbuchhaltung" #: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other #: model:ir.ui.menu,name:account.menu_account_partner_ledger msgid "Partner Ledger" -msgstr "Partner Kontoauszug" +msgstr "Partner-Kontoauszug" #. module: account #: selection:account.tax.template,type:0 @@ -8874,7 +8874,7 @@ msgstr "Wiederkehrende Buchungen berechnen" #. module: account #: view:account.move.line.unreconcile.select:0 msgid "Open for Unreconciliation" -msgstr "Öffne Storno Ausgleich" +msgstr "Storno-Ausgleich öffnen" #. module: account #: field:account.bank.statement.line,partner_id:0 @@ -8904,7 +8904,7 @@ msgstr "Partner" #. module: account #: help:account.change.currency,currency_id:0 msgid "Select a currency to apply on the invoice" -msgstr "Wähle eine Währung für diese Rechnung" +msgstr "Eine Währung für diese Rechnung wählen" #. module: account #: code:addons/account/account_invoice.py:901 @@ -8923,7 +8923,7 @@ msgid "" "Select Fiscal Year which you want to remove entries for its End of year " "entries journal" msgstr "" -"Wähle das Geschäftsjahr aus dessen Jahres-Abschlussbericht und dessen " +"Wählen Sie das Geschäftsjahr aus dessen Jahres-Abschlussbericht und dessen " "Abschluss-Salden entfernt werden sollen" #. module: account @@ -8978,7 +8978,7 @@ msgstr "Wurde dieser Ausgleich durch eine Jahreseröffnung erzeugt ?" #: view:account.analytic.line:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form msgid "Analytic Entries" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellenbuchungen" #. module: account #: view:account.analytic.account:0 @@ -9005,13 +9005,13 @@ msgstr "Restbetrag" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "Öffne Kassenprotokoll" +msgstr "Kassenprotokoll öffnen" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 #: model:process.node,note:account.process_node_supplierinvoiceinvoice0 msgid "Invoice's state is Open" -msgstr "Rechnungsstatus ist Offen" +msgstr "Rechnungsstatus ist 'Offen'" #. module: account #: view:account.analytic.account:0 @@ -9050,7 +9050,7 @@ msgstr "Es ist noch kein Geschäftsjahr für das Unternehmen angelegt" #. module: account #: view:account.invoice:0 msgid "Proforma" -msgstr "Proforma" +msgstr "Pro-Forma" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -9082,13 +9082,13 @@ msgstr "Bitte definieren Sie eine Nummernfolge für das Journal." #: help:account.tax.template,amount:0 msgid "For Tax Type percent enter % ratio between 0-1." msgstr "" -"Für den Typ Prozent erfassen Sie einen Wert zwischen 0 und 1, z. B. 0.19 für " -"19%" +"Für den Typ 'Prozent' erfassen Sie einen Wert zwischen 0 und 1, z. B. 0.19 " +"für 19%" #. module: account #: view:account.analytic.account:0 msgid "Current Accounts" -msgstr "aktuelle Konten" +msgstr "Aktuelle Konten" #. module: account #: view:account.invoice.report:0 @@ -9164,7 +9164,7 @@ msgstr "Nächste Rechnungsnummer" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting msgid "Generic Reporting" -msgstr "Standard Auswertungen" +msgstr "Standardauswertungen" #. module: account #: field:account.move.line.reconcile.writeoff,journal_id:0 @@ -9179,7 +9179,7 @@ msgstr "Erlöskonto" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "korrigierter Saldo" +msgstr "Korrigierter Saldo" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form @@ -9190,7 +9190,7 @@ msgstr "Steuerzuordnung Vorlage" #. module: account #: view:account.entries.report:0 msgid "Int.Type" -msgstr "Kontotyp" +msgstr "Kontentyp" #. module: account #: field:account.move.line,tax_amount:0 @@ -9204,7 +9204,7 @@ msgid "" "year. Note that you can run this wizard many times for the same fiscal year." msgstr "" "Dieser Assistent entfernt die Jahresabschlußbuchungen für das ausgewählte " -"Geschäftsjahr. Beachten Sie dass der Assistent für den Jahresabschluß " +"Geschäftsjahr. Beachten Sie, dass der Assistent für den Jahresabschluß " "beliebig oft wiederholt werden kann." #. module: account @@ -9324,7 +9324,7 @@ msgstr "Anwenden" #: model:ir.actions.act_window,name:account.action_account_type_form #: model:ir.ui.menu,name:account.menu_action_account_type_form msgid "Account Types" -msgstr "Kontoartkonfiguration" +msgstr "Kontentypkonfiguration" #. module: account #: model:email.template,subject:account.email_template_edi_invoice @@ -9364,7 +9364,7 @@ msgstr "Ausgleichen offener Posten" #. module: account #: view:account.tax.template:0 msgid "Keep empty to use the income account" -msgstr "Leer lassen um das Erlöskonto zu nutzen" +msgstr "Leer lassen, um das Erlöskonto zu nutzen" #. module: account #: view:account.invoice:0 @@ -9376,11 +9376,11 @@ msgid "" "You should press this button to re-open it and let it continue its normal " "process after having resolved the eventual exceptions it may have created." msgstr "" -"Diese Schaltfläche gibt es nur, wenn die Rechnung bezahlt und voll " -"ausgeglichen ist, aber das ermittelte Ausgleichskennzeichen falsch ist. " -"D.h. der Ausgleich wurde Rückgängig gemacht. Damit kann die Rechnung wieder " -"auf offen gesetzt werden und im normalen Arbeitsfluss weiter behandelt " -"werden, nachdem eventuelle Ausnahmen bearbeitet wurden." +"Diesen Button gibt es nur, wenn die Rechnung bezahlt und voll ausgeglichen " +"ist, aber das ermittelte Ausgleichskennzeichen falsch ist. D.h. der " +"Ausgleich wurde rückgängig gemacht. Damit kann die Rechnung wieder auf offen " +"gesetzt werden und im normalen Workflow weiter behandelt werden, nachdem " +"eventuelle Ausnahmen bearbeitet wurden." #. module: account #: model:ir.actions.act_window,help:account.action_account_journal_form @@ -9401,7 +9401,7 @@ msgid "" " " msgstr "" "

\n" -" Klicken Sie um ein Journal hinzuzufügen.\n" +" Klicken Sie, um ein Journal hinzuzufügen.\n" "

\n" " In einem Journal werden alle Geschäftsvorfälle in " "chronologischer Reihenfolge aufgezeichnet und gebucht.\n" @@ -9421,7 +9421,7 @@ msgstr "Status Geschäftsjahr" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "Journal Gutschriften" +msgstr "Journal-Gutschriften" #. module: account #: report:account.account.balance:0 @@ -9447,12 +9447,12 @@ msgstr "" #: view:board.board:0 #: model:ir.actions.act_window,name:account.action_company_analysis_tree msgid "Company Analysis" -msgstr "Analyse Unternehmen" +msgstr "Unternehmensanalyse" #. module: account #: help:account.invoice,account_id:0 msgid "The partner account used for this invoice." -msgstr "Partner Finanzkonto dieser Rechnung." +msgstr "Partner-Finanzkonto dieser Rechnung." #. module: account #: code:addons/account/account.py:3391 @@ -9486,7 +9486,7 @@ msgstr "Zwischensumme" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "Drucke Umsatzsteueranmeldung" +msgstr "Umsatzsteueranmeldung drucken" #. module: account #: view:account.model.line:0 @@ -9511,7 +9511,7 @@ msgstr "Lieferanten" #. module: account #: view:account.journal:0 msgid "Accounts Type Allowed (empty for no control)" -msgstr "zugelassene Kontoarten (leer = alle)" +msgstr "Zugelassene Kontenarten (leer = alle)" #. module: account #: help:account.move.line,amount_residual:0 @@ -9658,7 +9658,7 @@ msgstr "Kostenstellen" #: report:account.general.journal:0 #: field:account.journal,name:0 msgid "Journal Name" -msgstr "Journal Bezeichnung" +msgstr "Journalbezeichnung" #. module: account #: code:addons/account/account_move_line.py:829 @@ -9794,12 +9794,12 @@ msgstr "Steuern Vorlage" #. module: account #: field:account.invoice.refund,period:0 msgid "Force period" -msgstr "Erzwinge Periode" +msgstr "Periode erzwingen" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "Drucke Partner-Saldenliste" +msgstr "Drucke Partner Saldenliste" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9873,8 +9873,8 @@ msgid "" "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" "Konfigurationsfehler !\n" -"Sie können für Konten mit der Kontoart Debitor / Kreditor nur den Kontotyp " -"\"Offene Posten\" für die Jahreswechsel Methode auswählen." +"Sie können für Konten mit der Kontenart Debitor / Kreditor nur den " +"Kontentyp \"Offene Posten\" für die Jahreswechsel-Methode auswählen." #. module: account #: field:account.config.settings,has_fiscal_year:0 @@ -9917,12 +9917,12 @@ msgstr "Restbetrag" #: field:account.invoice,move_lines:0 #: field:account.move.reconcile,line_id:0 msgid "Entry Lines" -msgstr "Erfasse Buchungen" +msgstr "Buchungen erfassen" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button msgid "Open Journal" -msgstr "Öffne Journal" +msgstr "Journal öffnen" #. module: account #: report:account.analytic.account.journal:0 @@ -9970,12 +9970,12 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_bankstatement0 msgid "Registered payment" -msgstr "Erfassung Zahlungseingang" +msgstr "Zahlungseingang erfassen" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "Beende Status für Geschäftsjahr und Perioden" +msgstr "Status für Geschäftsjahr und Perioden beenden" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 @@ -9999,7 +9999,7 @@ msgstr "Kostenstelle" #: model:process.node,name:account.process_node_invoiceinvoice0 #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 msgid "Create Invoice" -msgstr "Erzeuge Rechnung" +msgstr "Rechnung erzeugen" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer @@ -10015,7 +10015,7 @@ msgstr "Steuer Einkauf (%)" #: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." -msgstr "Bitte erstellen Sie Rechnungspositionen" +msgstr "Bitte erstellen Sie Rechnungspositionen." #. module: account #: code:addons/account/wizard/pos_box.py:36 @@ -10030,7 +10030,7 @@ msgstr "" #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "Zeige Detail" +msgstr "Detail anzeigen" #. module: account #: code:addons/account/account.py:3203 @@ -10180,7 +10180,7 @@ msgstr "Nummernfolge Lieferantengutschrift" #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "Rechnung ist bereits ausgeglichen" +msgstr "Rechnung ist bereits ausgeglichen." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -10194,10 +10194,10 @@ msgid "" msgstr "" "Sie können Zahlungsaufträge erstellen und verwalten , um\n" "* diese als Grundlage für externe Erweiterungen zur Automatisierung von " -"Zahlungen zu nutzen. \n" +"Zahlungen zu nutzen, \n" "* dadurch den Rechnungsausgleich von Lieferanten und andere Kreditoren " "durchzuführen.\n" -"* Es erfolgt eine Installation des Moduls account_payment." +"Es erfolgt eine Installation des Moduls account_payment." #. module: account #: xsl:account.transfer:0 @@ -10253,7 +10253,7 @@ msgstr "Händisch oder automatisch im System erfasst." #: report:account.account.balance:0 #: report:account.general.ledger_landscape:0 msgid "Display Account" -msgstr "Anzeige Konten" +msgstr "Konten anzeigen" #. module: account #: selection:account.account,type:0 @@ -10284,7 +10284,7 @@ msgstr "" #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "Erzeuge Jahreseröffnungsbuchungen" +msgstr "Jahreseröffnungsbuchungen erzeugen" #. module: account #: report:account.third_party_ledger:0 @@ -10330,7 +10330,7 @@ msgstr "Datum / Periode" #. module: account #: report:account.central.journal:0 msgid "A/C No." -msgstr "Akonto" +msgstr "a conto" #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement @@ -10346,7 +10346,7 @@ msgid "" msgstr "" "Fehler !\n" "Die Periode wurde nicht korrekt angelegt. Entweder überschneiden sich " -"Perioden, oder der Zeitraum passt zeitlich nicht in dieses Geschäftsjahr." +"Perioden oder der Zeitraum passt zeitlich nicht in dieses Geschäftsjahr." #. module: account #: report:account.overdue:0 @@ -10436,7 +10436,7 @@ msgstr "Periodische Verarbeitung" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "Kunden und Lieferantenrechnungen" +msgstr "Kunden- und Lieferantenrechnungen" #. module: account #: model:process.node,note:account.process_node_paymententries0 @@ -10579,7 +10579,7 @@ msgstr "Eingabe Aboauftrag" #: field:accounting.report,date_from:0 #: field:accounting.report,date_from_cmp:0 msgid "Start Date" -msgstr "Start Datum" +msgstr "Startdatum" #. module: account #: help:account.invoice,reconciled:0 @@ -10601,7 +10601,7 @@ msgstr "Rechnungsentwürfe" #: view:cash.box.in:0 #: model:ir.actions.act_window,name:account.action_cash_box_in msgid "Put Money In" -msgstr "Zahle Geld ein" +msgstr "Geld einzahlen" #. module: account #: selection:account.account.type,close_method:0 @@ -10657,7 +10657,7 @@ msgstr "Kostenstelle (nur Mengen)" #: model:process.transition,name:account.process_transition_analyticinvoice0 #: model:process.transition,name:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts" -msgstr "von Kostenstelle" +msgstr "Von Kostenstelle" #. module: account #: view:account.installer:0 @@ -10667,7 +10667,7 @@ msgstr "Konfiguration Geschäftsjahr" #. module: account #: field:account.period,name:0 msgid "Period Name" -msgstr "Periode Bezeichnung" +msgstr "Periodenbezeichnung" #. module: account #: code:addons/account/wizard/account_invoice_state.py:68 @@ -10682,7 +10682,7 @@ msgstr "" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Code/Date" -msgstr "Kurz/Datum" +msgstr "Code/Datum" #. module: account #: view:account.bank.statement:0 @@ -10749,7 +10749,7 @@ msgid "" "This account will be used instead of the default one as the payable account " "for the current partner" msgstr "" -"Dieses Konto wird an Stelle des Standard Kreditor Kontos für diesen Partner " +"Dieses Konto wird an Stelle des Standard-Kreditorenkontos für diesen Partner " "verwendet" #. module: account @@ -10796,7 +10796,7 @@ msgstr "Haben" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "Entwurf Rechnung " +msgstr "Rechnungsentwurf " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -10812,7 +10812,7 @@ msgstr "Wiederkehrende Buchungen Journal" #: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." -msgstr "Start Periode die auf die Ende Periode folgen soll." +msgstr "Startperiode, die auf die Endeperiode folgen soll." #. module: account #: field:account.invoice,number:0 @@ -10902,7 +10902,7 @@ msgstr "Es wurde noch kein Journal für Verkauf / Einkauf angelegt." #. module: account #: view:account.move.line.reconcile.select:0 msgid "Open for Reconciliation" -msgstr "Öffnen für Ausgleich offener Posten" +msgstr "Zum Ausgleich offener Posten öffnen" #. module: account #: field:account.account,parent_left:0 @@ -10943,7 +10943,7 @@ msgid "" "and is the process of transferring debit and credit amounts from a journal " "of original entry to a ledger book." msgstr "" -"Die endgültige Buchung und Kontrolle von Buchungssätzen im Status Entwurf " +"Die endgültige Buchung und Kontrolle von Buchungssätzen im Status 'Entwurf' " "wird 'Buchung' genannt und entspricht in der Prozessabfolge." #. module: account @@ -10954,7 +10954,7 @@ msgstr "Zeitraum" #. module: account #: view:account.subscription:0 msgid "Remove Lines" -msgstr "Entferne Buchung" +msgstr "Buchung entfernen" #. module: account #: selection:account.account,type:0 @@ -10970,7 +10970,7 @@ msgstr "Sachkonto" #: field:account.account.template,type:0 #: field:account.entries.report,type:0 msgid "Internal Type" -msgstr "Kontotyp" +msgstr "Kontentyp" #. module: account #: field:account.subscription.generate,date:0 @@ -11026,7 +11026,7 @@ msgstr "Gebucht" #: field:accounting.report,date_to:0 #: field:accounting.report,date_to_cmp:0 msgid "End Date" -msgstr "Ende Datum" +msgstr "Enddatum" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -11098,7 +11098,8 @@ msgstr "Bruttobetrag" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "Entwurf / Proforma / Abgebrochen Rechnungen können nicht %s werden." +msgstr "" +"Entwurf / Pro-Forma / Abgebrochen- Rechnungen können nicht %s werden." #. module: account #: field:account.tax,account_analytic_paid_id:0 @@ -11198,7 +11199,7 @@ msgstr "" #. module: account #: view:account.fiscalyear:0 msgid "Create Monthly Periods" -msgstr "Erzeuge Monatszeiträume" +msgstr "Erzeuge Monatl. Perioden" #. module: account #: field:account.tax.code.template,sign:0 @@ -11263,7 +11264,7 @@ msgstr "Ende Periode" #: sql_constraint:account.journal:0 msgid "The code of the journal must be unique per company !" msgstr "" -"Die Kurzbezeichnung des Journals sollte je Unternehmen (Mandant)eindeutig " +"Die Kurzbezeichnung des Journals sollte je Unternehmen (Mandant) eindeutig " "sein." #. module: account @@ -11541,11 +11542,11 @@ msgid "" " " msgstr "" "

\n" -"Klicken Sie um neue Steuern zu definieren. \n" -"Je nach Land, ist eine Steuer in der Regel ein Wert in Ihrer \n" +"Klicken Sie, um neue Steuern zu definieren. \n" +"Je nach Land ist eine Steuer in der Regel ein Wert in Ihrer \n" "Umsatzsteuererklärung. OpenERP ermöglicht die Definition\n" "von Steuerstrukturen, damit sämtliche Steuerberechnungen \n" -" und Buchungen dann in einer oder mehrerer Positionen für \n" +" und Buchungen dann in einer oder mehreren Positionen für \n" " die Voranmeldung bzw. Steuererklärung auftauchen. \n" " " @@ -11610,7 +11611,7 @@ msgstr "Journal Sachkonten" #. module: account #: view:account.invoice:0 msgid "Search Invoice" -msgstr "Suche Rechnungen" +msgstr "Rechnung suchen" #. module: account #: report:account.invoice:0 @@ -11655,7 +11656,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_validate_account_move_lines msgid "Validate Account Move Lines" -msgstr "Verbuche Buchungszeilen" +msgstr "Buchungszeilen verbuchen" #. module: account #: help:res.partner,property_account_position:0 @@ -11668,7 +11669,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 msgid "Invoice's state is Done." -msgstr "Abrechnungsstatus ist Erledigt" +msgstr "Abrechnungsstatus ist 'Erledigt'" #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 @@ -11685,7 +11686,7 @@ msgstr "Neue Währung wurde nicht korrekt konfiguriert." #. module: account #: view:account.account.template:0 msgid "Search Account Templates" -msgstr "Suche nach Kontenplan Vorlage" +msgstr "Suche nach Kontenplan-Vorlage" #. module: account #: view:account.invoice.tax:0 @@ -11809,7 +11810,7 @@ msgstr "Zukunft" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "Durchsuche Buchungen" +msgstr "Buchungen durchsuchen" #. module: account #: help:account.tax,base_sign:0 @@ -11821,7 +11822,7 @@ msgstr "Durchsuche Buchungen" #: help:account.tax.template,ref_tax_sign:0 #: help:account.tax.template,tax_sign:0 msgid "Usually 1 or -1." -msgstr "Normal 1 oder -1" +msgstr "Üblicherweise '1' oder '-1'" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account_template @@ -11836,7 +11837,7 @@ msgstr "Aufwandskonto für Produktvorlage" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "Zahlungsbedingunen für Kunden" +msgstr "Zahlungsbedingungen für Kunden" #. module: account #: help:accounting.report,label_filter:0 @@ -11844,7 +11845,7 @@ msgid "" "This label will be displayed on report to show the balance computed for the " "given comparison filter." msgstr "" -"Dieser Text wird am Bericht gedruckt, um den Saldo für den entsprechenden " +"Dieser Text wird auf Bericht gedruckt, um den Saldo für den entsprechenden " "Vergleichsfilter zu beschreiben" #. module: account @@ -12054,9 +12055,6 @@ msgstr "" #~ msgid "Print Journal" #~ msgstr "Umsätze nach Journal und Perioden" -#~ msgid "Cancel Invoice" -#~ msgstr "Abbrechen Rechnung" - #~ msgid "Required" #~ msgstr "erforderlich" @@ -16072,3 +16070,6 @@ msgstr "" #~ msgid " Valuation: Percent" #~ msgstr " Berechnungsform: Prozent" + +#~ msgid "Cancel Invoice" +#~ msgstr "Rechnung abbrechen" diff --git a/addons/account/i18n/el.po b/addons/account/i18n/el.po index 25c554597d5..e94217ec09c 100644 --- a/addons/account/i18n/el.po +++ b/addons/account/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_GB.po b/addons/account/i18n/en_GB.po index f040b6bb149..0a08cdc8197 100644 --- a/addons/account/i18n/en_GB.po +++ b/addons/account/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_US.po b/addons/account/i18n/en_US.po index 1dc45dff658..431ce223909 100644 --- a/addons/account/i18n/en_US.po +++ b/addons/account/i18n/en_US.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po index 577d42eea47..e9d8fe7d8ec 100644 --- a/addons/account/i18n/es.po +++ b/addons/account/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -1946,7 +1946,7 @@ msgstr "15 días" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing msgid "Invoicing" -msgstr "Facturación" +msgstr "Contabilidad" #. module: account #: code:addons/account/report/account_partner_balance.py:115 @@ -15661,10 +15661,6 @@ msgstr "" #~ msgid "Contacts" #~ msgstr "Contactos" -#, python-format -#~ msgid "The payment term of supplier does not have a payment term line!" -#~ msgstr "¡La forma de pago de proveedor no tiene una línea de forma de pago!" - #~ msgid "Review your Financial Accounts" #~ msgstr "Revisión de sus cuentas financieras" @@ -15950,3 +15946,7 @@ msgstr "" #, python-format #~ msgid "The journal must have default credit and debit account" #~ msgstr "El diario debe tener una cuenta acreedora y deudora por defecto." + +#, python-format +#~ msgid "The payment term of supplier does not have a payment term line!" +#~ msgstr "El plazo de pago del proveedor no tiene ninguna línea de plazo." diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index 47b720858ee..936d0ac135a 100644 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CL.po b/addons/account/i18n/es_CL.po index e78457a0487..f8d4e2dd71c 100644 --- a/addons/account/i18n/es_CL.po +++ b/addons/account/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CR.po b/addons/account/i18n/es_CR.po index df6d7868074..7d38cde1104 100644 --- a/addons/account/i18n/es_CR.po +++ b/addons/account/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:38+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: account diff --git a/addons/account/i18n/es_DO.po b/addons/account/i18n/es_DO.po index 21433adcab8..b696fa1a8a9 100644 --- a/addons/account/i18n/es_DO.po +++ b/addons/account/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po index aaac5a55bad..1cc7313f42f 100644 --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -17,8 +17,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:38+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:04+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_MX.po b/addons/account/i18n/es_MX.po index a62833c3934..3f6529a6693 100644 --- a/addons/account/i18n/es_MX.po +++ b/addons/account/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:38+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_PE.po b/addons/account/i18n/es_PE.po index 70e06912436..622422083a0 100644 --- a/addons/account/i18n/es_PE.po +++ b/addons/account/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-11 05:32+0000\n" -"X-Generator: Launchpad (build 16869)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:04+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_PY.po b/addons/account/i18n/es_PY.po index ad406c10338..5c968cae293 100644 --- a/addons/account/i18n/es_PY.po +++ b/addons/account/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:04+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_UY.po b/addons/account/i18n/es_UY.po index 4c3bb1f2ac0..dd8bd08db92 100644 --- a/addons/account/i18n/es_UY.po +++ b/addons/account/i18n/es_UY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:38+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_VE.po b/addons/account/i18n/es_VE.po index edd98b5595b..f766eafb1bc 100644 --- a/addons/account/i18n/es_VE.po +++ b/addons/account/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index 4a728b9c4a6..87ca05efabe 100644 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:24+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:54+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -236,12 +236,12 @@ msgstr "" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Kinnitatud" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "" +msgstr "Sissetuleku vaade" #. module: account #: help:account.account,user_type:0 @@ -428,7 +428,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Periood:" #. module: account #: field:account.account.template,chart_template_id:0 diff --git a/addons/account/i18n/eu.po b/addons/account/i18n/eu.po index c4b2613ee1c..b69b09a2acf 100644 --- a/addons/account/i18n/eu.po +++ b/addons/account/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:23+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:53+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa.po b/addons/account/i18n/fa.po index c900532e686..2cc645c8080 100644 --- a/addons/account/i18n/fa.po +++ b/addons/account/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:30+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa_AF.po b/addons/account/i18n/fa_AF.po index eb11a9c71bd..b18ffc55d99 100644 --- a/addons/account/i18n/fa_AF.po +++ b/addons/account/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:04+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po index 44f88fc1bdc..fa006099ea6 100644 --- a/addons/account/i18n/fi.po +++ b/addons/account/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:25+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:54+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -26,7 +26,7 @@ msgstr "Järjestelmämaksu" #: sql_constraint:account.fiscal.position.account:0 msgid "" "An account fiscal position could be defined only once time on same accounts." -msgstr "" +msgstr "Tilin verokanta voidaan määritellä vain yhden kerran per tili." #. module: account #: help:account.tax.code,sequence:0 @@ -34,6 +34,8 @@ msgid "" "Determine the display order in the report 'Accounting \\ Reporting \\ " "Generic Reporting \\ Taxes \\ Taxes Report'" msgstr "" +"Määrittele esitysjärjestys raportissa 'Kirjanpito \\ Raportointi \\ " +"Yleisraportointi \\ Verot \\ Veroraportti'" #. module: account #: view:account.move.reconcile:0 @@ -50,7 +52,7 @@ msgstr "Tilitilastot" #. module: account #: view:account.invoice:0 msgid "Proforma/Open/Paid Invoices" -msgstr "" +msgstr "Proforma/avoimet/maksetut laskut" #. module: account #: field:report.invoice.created,residual:0 @@ -61,12 +63,12 @@ msgstr "Jäännös" #: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." -msgstr "Päiväkirjamerkintä \"%s\" ei ole validi" +msgstr "Päiväkirjamerkintä \"%s\" ei ole kelvollinen" #. module: account #: model:ir.model,name:account.model_report_aged_receivable msgid "Aged Receivable Till Today" -msgstr "Ikääntyneet saatavat tähän päivään asti" +msgstr "Erääntyneet saatavat tähän päivään asti" #. module: account #: model:process.transition,name:account.process_transition_invoiceimport0 @@ -79,13 +81,13 @@ msgstr "Tuo laskulta tai maksulta" #: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Viallinen tili!" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Total Debit" -msgstr "Summa debet" +msgstr "Debet yhteensä" #. module: account #: constraint:account.account.template:0 @@ -93,6 +95,8 @@ msgid "" "Error!\n" "You cannot create recursive account templates." msgstr "" +"Virhe!\n" +"Et voi luoda rekursiivia tilimalleja." #. module: account #. openerp-web @@ -103,7 +107,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "Suoritus" +msgstr "Täsmäytä" #. module: account #: field:account.bank.statement,name:0 @@ -123,8 +127,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" -"Jos aktiivinen kenttä on tilassa epätosi (false), voit piilottaa maksun " -"poistamatta sitä." +"Jos aktiivinen kenttä on asetettu tilaan epätosi (false), niin voit " +"piilottaa maksuehdon poistamatta sitä." #. module: account #: code:addons/account/account.py:641 @@ -153,7 +157,7 @@ msgstr "Varoitus!" #: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "" +msgstr "Päiväkirja sekalaiset" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -163,6 +167,8 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" +"Aseta 'Tilikauden tilinpäätösviennit päiväkirjaan' kuluvalle tilikaudelle, " +"joka on määritetty 'Luo tilikauden avausviennit' -toiminnolla." #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -181,11 +187,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa lisätäksesi tilikauden.\n" +"

\n" +" Tilikausi on tyypillisesti kuukausi tai neljännesvuosi. " +"Yleensä\n" +" se vastaa verojen ilmoitusjaksoja.\n" +"

\n" +" " #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard msgid "Invoices Created Within Past 15 Days" -msgstr "Lasku muodostettu 15 päivän sisällä" +msgstr "Viimeisten 15 päivän aikana luodut laskut" #. module: account #: field:accounting.report,label_filter:0 @@ -195,7 +209,7 @@ msgstr "Sarakeotsikko" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "Tilikoodin numeroiden lukumäärä" #. module: account #: help:account.analytic.journal,type:0 @@ -215,6 +229,9 @@ msgid "" "lines for invoices. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Asettaa analyyttisen tilin, jota käytetään oletuksena laskujen veroriveille. " +"Jätä tyhjäksi, jos et halua käyttää analyyttistä tiliä oletuksena laskujen " +"veroriveille." #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -240,12 +257,12 @@ msgstr "Belgialaiset raportit" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Vahvistettu" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "" +msgstr "Tulonäkymä" #. module: account #: help:account.account,user_type:0 @@ -254,11 +271,13 @@ msgid "" "legal reports, and set the rules to close a fiscal year and generate opening " "entries." msgstr "" +"Tilityyppiä käytetään maakohtaisten virallisten raporttien luomiseen sekä " +"tilikauden sulkemiseen ja uuden tilikauden avaukseen." #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Seuraava hyvityslaskun numero" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -267,16 +286,19 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" +"Tämä sisältää kaikki perusvaatimukset voucher-merkinnöiksi pankki, käteinen, " +"osto, kulu, vasta etc.\n" +" Tämä asentaa account_voucher -moduulin." #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry msgid "Manual Recurring" -msgstr "Käsin toistettava" +msgstr "Manuaalisesti toistettava" #. module: account #: field:account.automatic.reconcile,allow_write_off:0 msgid "Allow write off" -msgstr "Salli hylkäykset" +msgstr "Salli alaskirjaukset" #. module: account #: view:account.analytic.chart:0 @@ -298,6 +320,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi asiakkaalle hyvityksen. \n" +"

\n" +" Hyvitys on dokumentti, joka hyvittää laskun kokonaan \n" +" tai osittain.\n" +"

\n" +" Sen sijaan että loisit hyvityksen manuaalisesti, \n" +" voit luoda laskun vastaavasta myyntilaskusta.\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -305,16 +337,18 @@ msgid "" "Installs localized accounting charts to match as closely as possible the " "accounting needs of your company based on your country." msgstr "" +"Asentaa lokalisoidut tilikartat vastaamaan mahdollisimman tarkasti " +"yrityksesi paikallisia kirjanpitotarpeitasi omassa maassasi." #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "Poista tilin täsmäytys" +msgstr "Peruuta tilin täsmäytys" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "Budjetointi" #. module: account #: view:product.template:0 @@ -332,13 +366,13 @@ msgstr "" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "Salli monivaluutta" #. module: account #: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "" +msgstr "Määrittele analyttinen päiväkirjatyyppi '%s'!" #. module: account #: selection:account.entries.report,month:0 @@ -347,18 +381,18 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "June" -msgstr "Kesäkuu" +msgstr "kesäkuu" #. module: account #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "Valitse täsmäytettävä tili" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Sallii analyyttisen tilien käytön." #. module: account #: view:account.invoice:0 @@ -366,13 +400,13 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Myyjä" #. module: account #: view:account.bank.statement:0 #: view:account.invoice:0 msgid "Responsible" -msgstr "Vastuuhenkilö" +msgstr "Vastuullinen" #. module: account #: model:ir.model,name:account.model_account_bank_accounts_wizard @@ -383,17 +417,17 @@ msgstr "account.bank.accounts.wizard" #: field:account.move.line,date_created:0 #: field:account.move.reconcile,create_date:0 msgid "Creation date" -msgstr "Luomispäivämäärä" +msgstr "Luontipäivä" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "Oston hyvitys" +msgstr "Ostohyvitys" #. module: account #: selection:account.journal,type:0 msgid "Opening/Closing Situation" -msgstr "Avaus/sulkeimistilanne" +msgstr "Avaus/sulkemistilanne" #. module: account #: help:account.journal,currency:0 @@ -403,13 +437,13 @@ msgstr "Tiliotteen valuutta" #. module: account #: field:account.journal,default_debit_account_id:0 msgid "Default Debit Account" -msgstr "Oletus debet tili" +msgstr "Oletusarvoinen debet-tili" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Total Credit" -msgstr "Summa kredit" +msgstr "Kredit yhteensä" #. module: account #: help:account.config.settings,module_account_asset:0 @@ -425,14 +459,14 @@ msgstr "" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Alkuperäinen lähde edunsaajatiedoille" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Jakso:" #. module: account #: field:account.account.template,chart_template_id:0 @@ -445,7 +479,7 @@ msgstr "Tilikarttamalli" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "" +msgstr "Muokkaa: luo hyvitys, täsmäytä ja luo uusi laskuehdotus" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -473,12 +507,12 @@ msgstr "Summa ilmoitettuna valinnaisessa toisessa valuutassa." #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "" +msgstr "Käytettävät kolikot" #. module: account #: field:accounting.report,enable_filter:0 msgid "Enable Comparison" -msgstr "" +msgstr "Salli vertailu" #. module: account #: view:account.analytic.line:0 @@ -516,7 +550,7 @@ msgstr "Päiväkirja" #. module: account #: model:ir.model,name:account.model_account_invoice_confirm msgid "Confirm the selected invoices" -msgstr "Vahvista vlitut laskut" +msgstr "Vahvista valitut laskut" #. module: account #: field:account.addtmpl.wizard,cparent_id:0 @@ -526,7 +560,7 @@ msgstr "Ylätason kohde" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "" +msgstr "Antaa tälle riville järjestyksen laskua näytettäessä." #. module: account #: field:account.bank.statement,account_id:0 @@ -564,7 +598,7 @@ msgstr "Li" #. module: account #: field:account.automatic.reconcile,unreconciled:0 msgid "Not reconciled transactions" -msgstr "Suorittamattomat tapahtumat" +msgstr "Täsmäyttämättömät tapahtumat" #. module: account #: report:account.general.ledger:0 @@ -577,7 +611,7 @@ msgstr "Vastapuoli" #: field:account.fiscal.position,tax_ids:0 #: field:account.fiscal.position.template,tax_ids:0 msgid "Tax Mapping" -msgstr "Verokartoitus" +msgstr "Verokohdistus" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state @@ -600,7 +634,7 @@ msgstr "" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Desimaalien määrä päiväkirjavienneissä" #. module: account #: selection:account.config.settings,period:0 @@ -617,7 +651,7 @@ msgstr "Sarjat" #: field:account.financial.report,account_report_id:0 #: selection:account.financial.report,type:0 msgid "Report Value" -msgstr "" +msgstr "Raportointiarvo" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:39 @@ -626,12 +660,14 @@ msgid "" "Specified journal does not have any account move entries in draft state for " "this period." msgstr "" +"Määritellyssä päiväkirjassa ei ole yhtään tälle jaksolle kuuluvaa " +"kirjausehdotusta." #. module: account #: view:account.fiscal.position:0 #: view:account.fiscal.position.template:0 msgid "Taxes Mapping" -msgstr "Verokartoitus" +msgstr "Verokohdistus" #. module: account #: report:account.central.journal:0 @@ -641,25 +677,27 @@ msgstr "Keskitetty päiväkirja" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 msgid "Main Sequence must be different from current !" -msgstr "Pääjärjestyksen tulee olla eri nykyiseen nähden!" +msgstr "Pääjärjestyksen tulee olla eri kuin nykyinen" #. module: account #: code:addons/account/wizard/account_change_currency.py:64 #: code:addons/account/wizard/account_change_currency.py:70 #, python-format msgid "Current currency is not configured properly." -msgstr "" +msgstr "Käytettävä valuutta ei ole määritelty oikein" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Tulostili" #. module: account #: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" +"Annetulle päivämäärälle ei voitu määrittää jaksoa tai löytyi enemmän kuin " +"yksi jakso." #. module: account #: model:ir.model,name:account.model_report_account_type_sales @@ -676,7 +714,7 @@ msgstr "SAJ" #: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." -msgstr "" +msgstr "Siirtoa ei voi luoda valuuatelle, joka poikkeaa valuutasta ..." #. module: account #: model:email.template,report_name:account.email_template_edi_invoice @@ -684,6 +722,8 @@ msgid "" "Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " "and 'draft' or ''}" msgstr "" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" #. module: account #: view:account.period:0 @@ -699,7 +739,7 @@ msgstr "Tilin yhteiskumppanien raportti" #. module: account #: field:account.fiscalyear.close,period_id:0 msgid "Opening Entries Period" -msgstr "Avaa kohteiden jaksoa" +msgstr "Avaavien vientien jakso" #. module: account #: model:ir.model,name:account.model_account_journal_period @@ -711,6 +751,7 @@ msgstr "Päiväkirjan jakso" msgid "" "You cannot create more than one move per period on a centralized journal." msgstr "" +"Et voi luoda jaksoon yhtä enempää siirtoja keskitettyyn päiväkirjaan." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -731,17 +772,17 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" -msgstr "Saatavat tilit" +msgstr "Saatavatilit" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Määrittele yrityksesi pankkitili." #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Luo hyvitys" #. module: account #: constraint:account.move.line:0 @@ -749,11 +790,13 @@ msgid "" "The date of your Journal Entry is not in the defined period! You should " "change the date or remove this constraint from the journal." msgstr "" +"Päiväkirjavienti ei ole määritellyllä jaksolla. Muuta viennin päiväystä tai " +"poista tämä vienti päiväkirjasta." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger msgid "General Ledger Report" -msgstr "" +msgstr "Kirjanpitoraportti" #. module: account #: view:account.invoice:0 @@ -763,13 +806,15 @@ msgstr "Uudelleen avaus" #. module: account #: view:account.use.model:0 msgid "Are you sure you want to create entries?" -msgstr "Oletko varma että haluat luoda merkinnät?" +msgstr "Oletko varma että haluat luoda kirjaukset?" #. module: account #: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" +"Lasku maksettu osittain: %s%s laskun summasta %s%s on maksettu %s%s on " +"maksamatta." #. module: account #: view:account.invoice:0 @@ -783,11 +828,13 @@ msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." msgstr "" +"Ei voi %s laskuttaa, koska se on jo täsmäytetty. Peruuta ensin täsmäytys. " +"Tämän laskun voit vain hyvittää." #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children with hierarchy" -msgstr "" +msgstr "Näytä alatasot ja niiden hierarkiat" #. module: account #: selection:account.payment.term.line,value:0 @@ -805,12 +852,12 @@ msgstr "Tilikartat" #: model:ir.model,name:account.model_project_account_analytic_line #, python-format msgid "Analytic Entries by line" -msgstr "Analyyttiset viennit riveittäin" +msgstr "Analyyttiset kirjaukset riveittäin" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "" +msgstr "Hyvitysmenettely" #. module: account #: model:ir.ui.menu,name:account.menu_account_report @@ -841,6 +888,8 @@ msgid "" "Taxes are missing!\n" "Click on compute button." msgstr "" +"Verotiedot puuttuvat!\n" +"Paina 'päivitä' -paniketta." #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -855,20 +904,20 @@ msgstr "Kumppanin viite tässä laskussa." #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "" +msgstr "Toimittajalaskut ja hyvitykset" #. module: account #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "Vienti on jo täsmäytetty." #. module: account #: view:account.move.line.unreconcile.select:0 #: view:account.unreconcile.reconcile:0 #: model:ir.model,name:account.model_account_move_line_unreconcile_select msgid "Unreconciliation" -msgstr "Suoritusten poisto" +msgstr "Täsmäytysten peruutus" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report @@ -878,7 +927,7 @@ msgstr "Analyyttisten tilien päiväkirja" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Lähetä sähköpostilla" #. module: account #: help:account.central.journal,amount_currency:0 @@ -889,6 +938,8 @@ msgid "" "Print Report with the currency column if the currency differs from the " "company currency." msgstr "" +"Tulosta raporttiin valuuttasarake, mikäli valuutta poikkeaa yrityksen " +"kotivaluutasta." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -898,7 +949,7 @@ msgstr "J.C. / Siirron nimi" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Tilikoodi ja nimi" #. module: account #: selection:account.entries.report,month:0 @@ -907,7 +958,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "September" -msgstr "Syyskuu" +msgstr "syyskuu" #. module: account #: selection:account.subscription,period_type:0 @@ -918,7 +969,7 @@ msgstr "päivät" #: help:account.account.template,nocreate:0 msgid "" "If checked, the new chart of accounts will not contain this by default." -msgstr "Jos valittu, uuti tilikirja ei sisälltä tätä oletusarvoisesti." +msgstr "Jos valittu, uusi tilikartta ei sisällä tätä oletuksena." #. module: account #: model:ir.actions.act_window,help:account.action_account_manual_reconcile @@ -928,6 +979,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Päiväkirjavientejä ei löydy.\n" +"

\n" +" " #. module: account #: code:addons/account/account.py:1677 @@ -937,6 +992,8 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" +"Et voi täsmäyttää päiväkirjan vientejä, jos ne on luotu tilikauden avaus- " +"tai päätösvienteinä tilikauden avauksessa tai sulkemisessa." #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -964,22 +1021,22 @@ msgstr "Verotaulukko" #. module: account #: view:account.fiscalyear:0 msgid "Create 3 Months Periods" -msgstr "Luo 3 kuukauden jakso" +msgstr "Luo neljännesvuoden jakso" #. module: account #: report:account.overdue:0 msgid "Due" -msgstr "kuluessa" +msgstr "Erääntyvät" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "Ostopäiväkirja" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Lasku maksettu" #. module: account #: view:validate.account.move:0 @@ -997,7 +1054,7 @@ msgstr "Kokonaismäärä" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "Tämän laskun viite tulee toimittajalta" #. module: account #: selection:account.account,type:0 @@ -1017,22 +1074,22 @@ msgstr "Vastuu" #: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." -msgstr "" +msgstr "Määrittele tälle laskulle päiväkirjaan liittyvä järjestys." #. module: account #: view:account.entries.report:0 msgid "Extended Filters..." -msgstr "Laajennetut Suotimet..." +msgstr "Laajennetut suodattimet..." #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "Keskuspäiväkirja" +msgstr "Keskitetty päiväkirja" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "Myynnin hyvitys" +msgstr "Myyntihyvitys" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 @@ -1060,7 +1117,7 @@ msgstr "Ostot" #. module: account #: field:account.model,lines_id:0 msgid "Model Entries" -msgstr "Mallin merkit" +msgstr "Mallikirjaukset" #. module: account #: field:account.account,code:0 @@ -1082,7 +1139,7 @@ msgstr "Koodi" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Ominaisuudet" #. module: account #: code:addons/account/account.py:2346 @@ -1092,7 +1149,7 @@ msgstr "" #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "Ei analyyttinen päiväkirja!" +msgstr "Ei analyyttistä päiväkirjaa!" #. module: account #: report:account.partner.balance:0 @@ -1118,6 +1175,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi tilin.\n" +"

\n" +" When doing multi-currency transactions, you may loose or " +"gain\n" +" some amount due to changes of exchange rate. This menu " +"gives\n" +" you a forecast of the Gain or Loss you'd realized if those\n" +" transactions were ended today. Only for accounts having a\n" +" secondary currency set.\n" +"

\n" +" " #. module: account #: field:account.bank.accounts.wizard,acc_name:0 @@ -1127,14 +1196,14 @@ msgstr "Tilin nimi." #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "Avataan edellisen suljetun tilikauden saldoilla" #. module: account #: help:account.tax.code,notprintable:0 msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" -msgstr "" +msgstr "Valitse tämä, jos et halua tämän verokoodin veroja laskulle." #. module: account #: field:report.account.receivable,name:0 @@ -1144,12 +1213,12 @@ msgstr "Vuoden viikko" #. module: account #: field:account.report.general.ledger,landscape:0 msgid "Landscape Mode" -msgstr "Maisematila" +msgstr "Vaakasuora" #. module: account #: help:account.fiscalyear.close,fy_id:0 msgid "Select a Fiscal year to close" -msgstr "Valitse suljettava kirjanpitovuosi" +msgstr "Valitse suljettava tilikausi" #. module: account #: help:account.account.template,user_type:0 @@ -1157,11 +1226,13 @@ msgid "" "These types are defined according to your country. The type contains more " "information about the account and its specificities." msgstr "" +"Nämä tyypit on määritelty maasi perusteella. Tyyppi sisältää lisää tietoa " +"tilistä ja sen määrityksistä." #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Hyvitys " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1177,7 +1248,7 @@ msgstr "Voimassaolosäännöt" #. module: account #: report:account.partner.balance:0 msgid "In dispute" -msgstr "Väittelyssä" +msgstr "riidanalainen" #. module: account #: view:account.journal:0 @@ -1189,7 +1260,7 @@ msgstr "Kassakoneet" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Myyntihyvitykset päiväkirja" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1225,7 +1296,7 @@ msgstr "Jakson alku" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Hyvitykset" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1243,6 +1314,8 @@ msgid "" "Total amount (in Secondary currency) for transactions held in secondary " "currency for this account." msgstr "" +"Kokonaisarvo (toissijaisessa valuutassa) tapahtumille, jotka käsitellään " +"toissijaisella valuutalla tälle tilille." #. module: account #: field:account.fiscal.position.tax,tax_dest_id:0 @@ -1276,12 +1349,12 @@ msgstr "Peruuta laskut" #. module: account #: help:account.journal,code:0 msgid "The code will be displayed on reports." -msgstr "" +msgstr "Koodi näytetään raporteilla." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "" +msgstr "Ostoissa käytetyt verot" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1301,7 +1374,7 @@ msgstr "Ulkomaalaisten valuuttojen kurssi(t)" #: view:account.analytic.account:0 #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Malli" #. module: account #: selection:account.analytic.journal,type:0 @@ -1311,12 +1384,12 @@ msgstr "Tilanne" #. module: account #: help:account.move.line,move_id:0 msgid "The move of this entry line." -msgstr "Merkinnän rivin siirto." +msgstr "Kirjatun vientirivin siirto." #. module: account #: field:account.move.line.reconcile,trans_nbr:0 msgid "# of Transaction" -msgstr "Liiketoimen nro" +msgstr "Tapahtumien määrä" #. module: account #: report:account.general.ledger:0 @@ -1324,7 +1397,7 @@ msgstr "Liiketoimen nro" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Entry Label" -msgstr "Merkinnän nimike" +msgstr "Kirjauksen nimi" #. module: account #: help:account.invoice,origin:0 @@ -1336,12 +1409,12 @@ msgstr "Dokumentin viite joka on luonut tämän laskun." #: view:account.analytic.line:0 #: view:account.journal:0 msgid "Others" -msgstr "Toiset" +msgstr "Muut" #. module: account #: view:account.subscription:0 msgid "Draft Subscription" -msgstr "" +msgstr "Merkintäehdotus" #. module: account #: view:account.account:0 @@ -1381,7 +1454,7 @@ msgstr "Sisältyy perusmäärään" #: model:ir.actions.act_window,name:account.action_account_entries_report_all #: model:ir.ui.menu,name:account.menu_action_account_entries_report_all msgid "Entries Analysis" -msgstr "Vientien analyysi" +msgstr "Kirjausten analyysi" #. module: account #: field:account.account,level:0 @@ -1393,7 +1466,7 @@ msgstr "taso" #: code:addons/account/wizard/account_change_currency.py:38 #, python-format msgid "You can only change currency for Draft Invoice." -msgstr "" +msgstr "Valuutan voi vaihtaa vain laskuehdotukselle." #. module: account #: report:account.invoice:0 @@ -1413,13 +1486,13 @@ msgstr "Verot" #: code:addons/account/wizard/account_financial_report.py:70 #, python-format msgid "Select a starting and an ending period" -msgstr "Valitse alku ja loppujakso" +msgstr "Valitse alku- ja loppujakso" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitandloss0 #: model:ir.actions.act_window,name:account.action_account_report_pl msgid "Profit and Loss" -msgstr "Tuotto ja menetys" +msgstr "Tulos" #. module: account #: model:ir.model,name:account.model_account_account_template @@ -1429,14 +1502,14 @@ msgstr "Tilimallit" #. module: account #: view:account.tax.code.template:0 msgid "Search tax template" -msgstr "Hae veropohja" +msgstr "Etsi veromalli" #. module: account #: view:account.move.reconcile:0 #: model:ir.actions.act_window,name:account.action_account_reconcile_select #: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile msgid "Reconcile Entries" -msgstr "Tee suoritusmerkintöjä" +msgstr "Täsmäytä kirjaukset" #. module: account #: model:ir.actions.report.xml,name:account.account_overdue @@ -1453,7 +1526,7 @@ msgstr "Alkusaldo" #. module: account #: view:account.invoice:0 msgid "Reset to Draft" -msgstr "Palauta luonnokseksi" +msgstr "Palauta ehdotukseksi" #. module: account #: view:account.aged.trial.balance:0 @@ -1464,12 +1537,12 @@ msgstr "Raporttivalinnat" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Suljettava tilikausi" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "" +msgstr "Laskutusjärjestys" #. module: account #: model:ir.model,name:account.model_account_entries_report @@ -1488,11 +1561,13 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"Kun uusi tiliote luodaan, sen tila on \"Ehdotus\".\n" +"Kun pankista on saatu vahvistus, tilitotteen tila on \"Vahvistettu\"." #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Laskun tila" #. module: account #: view:account.bank.statement:0 @@ -1506,7 +1581,7 @@ msgstr "Pankin tiliote" #. module: account #: field:res.partner,property_account_receivable:0 msgid "Account Receivable" -msgstr "Tili saatavat" +msgstr "Myyntireskontra" #. module: account #: code:addons/account/account.py:612 @@ -1514,7 +1589,7 @@ msgstr "Tili saatavat" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopio)" #. module: account #: report:account.account.balance:0 @@ -1524,7 +1599,7 @@ msgstr "" #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" -msgstr "Saldo ei ole tasan 0" +msgstr "Tili saldo ei ole nolla (0)" #. module: account #: code:addons/account/account.py:1483 @@ -1532,22 +1607,22 @@ msgstr "Saldo ei ole tasan 0" msgid "" "There is no default debit account defined \n" "on journal \"%s\"." -msgstr "" +msgstr "Päiväkirjalle \"%s\" ei ole määritelty oletusarvoista Debet-tiliä." #. module: account #: view:account.tax:0 msgid "Search Taxes" -msgstr "Hae veroja" +msgstr "Etsi verot" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger msgid "Account Analytic Cost Ledger" -msgstr "" +msgstr "Analyyttisen kirjanpidon kustannuspaikka" #. module: account #: view:account.model:0 msgid "Create entries" -msgstr "Luo tapahtumat" +msgstr "Luo kirjaukset" #. module: account #: field:account.entries.report,nbr:0 @@ -1567,6 +1642,8 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" +"Kaikki on täsmäytetty. Jokainen lasku ja maksu \n" +" on täsmäytetty ja kumppanin saldo on nolla." #. module: account #: field:account.chart.template,code_digits:0 @@ -1578,34 +1655,34 @@ msgstr "Desimaalien määrä" #. module: account #: field:account.journal,entry_posted:0 msgid "Skip 'Draft' State for Manual Entries" -msgstr "Ohita 'luonnos' tila käsinsyötetyissä vienneissä" +msgstr "Ohita tila \"Ehdotus\" manuaalikirjauksissa." #. module: account #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Ei ole asennettu." #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "Luottoilmoitus" +msgstr "Hyvityslasku" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "Sähköinen laskutus ja maksut" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 msgid "Cost Ledger for Period" -msgstr "" +msgstr "Jakson kulureskontra" #. module: account #: view:account.entries.report:0 msgid "# of Entries " -msgstr "Vientien määrä " +msgstr "Kirjausten määrä " #. module: account #: help:account.fiscal.position,active:0 @@ -1613,17 +1690,19 @@ msgid "" "By unchecking the active field, you may hide a fiscal position without " "deleting it." msgstr "" +"Poistamalla valinnan aktiivisesta kentästä, voi verokannan piilottaa, " +"kuitenkaan poistamatta sitä." #. module: account #: model:ir.model,name:account.model_temp_range msgid "A Temporary table used for Dashboard view" -msgstr "" +msgstr "Valvontanäytön käyttämä väliaikainen taulu" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree4 #: model:ir.ui.menu,name:account.menu_action_invoice_tree4 msgid "Supplier Refunds" -msgstr "Toimittajan hyvitykset" +msgstr "Hyvitykset toimittajalta" #. module: account #: field:account.tax.code,code:0 @@ -1634,7 +1713,7 @@ msgstr "Asiakoodi" #. module: account #: field:account.config.settings,company_footer:0 msgid "Bank accounts footer preview" -msgstr "" +msgstr "Pankkitilien esikatselu alatunnisteessa" #. module: account #: selection:account.account,type:0 @@ -1650,12 +1729,12 @@ msgstr "Suljettu" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "Toistuvat viennit" +msgstr "Toistuvat kirjaukset" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template msgid "Template for Fiscal Position" -msgstr "Malli talouskannalle" +msgstr "Verokannan malli" #. module: account #: view:account.subscription:0 @@ -1675,23 +1754,23 @@ msgstr "Veroton" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Edistyneet asetukset" #. module: account #: view:account.bank.statement:0 msgid "Search Bank Statements" -msgstr "Hae pankkitiliotteita" +msgstr "Etsi pankkitiliotteita" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "" +msgstr "Kirjaamattommat päiväkirjamerkinnät" #. module: account #: view:account.chart.template:0 #: field:account.chart.template,property_account_payable:0 msgid "Payable Account" -msgstr "Maksettavat tili" +msgstr "Ostovelat" #. module: account #: field:account.tax,account_paid_id:0 @@ -1702,7 +1781,7 @@ msgstr "Hyvitä verotili" #. module: account #: model:ir.model,name:account.model_ir_sequence msgid "ir.sequence" -msgstr "" +msgstr "ir.sequence" #. module: account #: view:account.bank.statement:0 @@ -1725,7 +1804,7 @@ msgstr "Yleinen tili" #. module: account #: field:res.partner,debit_limit:0 msgid "Payable Limit" -msgstr "Maksettavat raja" +msgstr "Ostovelkaraja" #. module: account #: model:ir.actions.act_window,help:account.action_account_type_form @@ -1744,6 +1823,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa määritelläksesi uusi tilityyppi.\n" +"

\n" +" Tilityypillä määritellään miten tiliä käytetään kussakin " +"päiväkirjassa.\n" +" Tilityypin jaksotusmenetelmä määrittelee miten tili " +"käsitellään\n" +" tilinpäätösajossa. Raportit kuten tuloslaskelma ja tase " +"käyttävät\n" +" kategoriaa tulos tai tase.\n" +"

\n" +" " #. module: account #: report:account.invoice:0 @@ -1760,7 +1851,7 @@ msgstr "Lasku" #. module: account #: field:account.move,balance:0 msgid "balance" -msgstr "" +msgstr "saldo" #. module: account #: model:process.node,note:account.process_node_analytic0 @@ -1771,12 +1862,12 @@ msgstr "Analyyttisiä kuluja laskutettavaksi" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequence" -msgstr "Kirjanpitovuoden järjestys" +msgstr "Tilikauden numerointi" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analyyttinen kirjanpito" #. module: account #: report:account.overdue:0 @@ -1806,7 +1897,7 @@ msgstr "Myynti tilityypeittäin" #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 päivää" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -1826,12 +1917,14 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" +"Tällä päiväkirjalla pitää olla keskitetty vastapuoli ilman että ohitetaan " +"ehdotustilan mahdollinen tarkistaminen." #. module: account #: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." -msgstr "" +msgstr "Osa kirjauksista on jo täsmäytetty." #. module: account #: field:account.tax.code,sum:0 @@ -1853,7 +1946,7 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Pending Accounts" -msgstr "" +msgstr "Odottavat tilit" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -1872,6 +1965,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" +"Jos aktiivinen tili on asetettu tilaan \"epätosi\", se sallii päiväkirjan " +"kauden piilottamisen poistammatta kuitenkaan sitä." #. module: account #: field:account.report.general.ledger,sortby:0 @@ -1881,28 +1976,28 @@ msgstr "Järjestä" #. module: account #: model:ir.actions.act_window,name:account.act_account_partner_account_move_all msgid "Receivables & Payables" -msgstr "Saatavat & Maksettavat" +msgstr "Saatavat ja ostovelat" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "Hallitse maksumääräyksiä" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Kesto" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "Viimeinen päättävä saldo" #. module: account #: model:ir.model,name:account.model_account_common_journal_report msgid "Account Common Journal Report" -msgstr "" +msgstr "Kirjanpidon yleinen päiväkirjaraportti" #. module: account #: selection:account.partner.balance,display_partner:0 @@ -1917,7 +2012,7 @@ msgstr "Analyyttisen kirjanpidon kartat" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "Asiakkaan Viite:" +msgstr "Asiakkaan viite:" #. module: account #: help:account.tax,base_code_id:0 @@ -1929,27 +2024,27 @@ msgstr "Asiakkaan Viite:" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "Käytä tätä koodia veroilmoitukseen" #. module: account #: help:account.period,special:0 msgid "These periods can overlap." -msgstr "Nämä jaksot voivat olla päällekkäisiä." +msgstr "Nämä kaudet voivat olla päällekkäisiä." #. module: account #: model:process.node,name:account.process_node_draftstatement0 msgid "Draft statement" -msgstr "Luonnostiliote" +msgstr "Tiliote-ehdotus" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Lasku vahvistettu" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Maksa toimittajillesi šekillä" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -1960,7 +2055,7 @@ msgstr "Luotonmäärä" #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Viestit" #. module: account #: view:account.vat.declaration:0 @@ -2042,11 +2137,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa kirjataksesi uuden ostolaskun.\n" +"

\n" +" Voit kontrolloida ostolaskuja toimittajilta sen perusteella, " +"mitä \n" +" tilasit ja mitä vastaanotettiin. OpenERP voi myös luoda \n" +" laskuehdotukset automaattisesti ostotilauksilta tai " +"kuiteilta.\n" +"

\n" +" " #. module: account #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "Väärä kredit tai debet arvo tiliviennissä" +msgstr "Väärä kredit- tai debetarvo kirjanpidon kirjauksessa!" #. module: account #: view:account.invoice.report:0 @@ -2058,7 +2163,7 @@ msgstr "Laskuanalyysi" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Sähköpostin ohjattu koostaminen" #. module: account #: model:ir.model,name:account.model_account_period_close @@ -2072,11 +2177,13 @@ msgid "" "This journal already contains items for this period, therefore you cannot " "modify its company field." msgstr "" +"Tämä päiväkirja sisältää jo vientejä kuluvalle kaudelle, tämän vuoksi et voi " +"enää muokata sen yritys-kenttää." #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form msgid "Entries By Line" -msgstr "Viennit riveittäin" +msgstr "Kirjaukset riveittäin" #. module: account #: field:account.vat.declaration,based_on:0 @@ -2104,7 +2211,7 @@ msgstr "" #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Yrityksen oletusvaluutta" #. module: account #: field:account.invoice,move_id:0 @@ -2129,7 +2236,7 @@ msgstr "Omaisuuden analyysi" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "" +msgstr "Myynti-/ostopäiväkirja" #. module: account #: view:account.analytic.account:0 @@ -2152,7 +2259,7 @@ msgstr "Voimassa" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seuraajat" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal @@ -2172,28 +2279,29 @@ msgid "" "You cannot change the type of account to '%s' type as it contains journal " "items!" msgstr "" +"Tilityyppiä '%s' ei vii muuttaa, sisällä se sisältää jo päiväkirjavientejä." #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "" +msgstr "Kirjanpidon koetaseen aikaraportti" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "Sulje tilikausi" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "Päiväkirja :" #. module: account #: sql_constraint:account.fiscal.position.tax:0 msgid "A tax fiscal position could be defined only once time on same taxes." -msgstr "" +msgstr "Verokanta voidaan määritellä vain kerran samalle verolle." #. module: account #: view:account.tax:0 @@ -2205,12 +2313,12 @@ msgstr "Veron määritys" #: view:account.config.settings:0 #: model:ir.actions.act_window,name:account.action_account_config msgid "Configure Accounting" -msgstr "" +msgstr "Konfiguroi kirjanpito" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Referenssiyksikkö" #. module: account #: help:account.journal,allow_date:0 @@ -2218,20 +2326,20 @@ msgid "" "If set to True then do not accept the entry if the entry date is not into " "the period dates" msgstr "" -"Jos asetetaan arvoon tosi (true) ei jakson ulkopuolisia päivämääriä " -"hyväksytä vientien päivämääriksi." +"Jos asetettu arvoon Tosi (True), ei hyväksy kirjauspäiviä, jotka eivät kuulu " +"tilijaksolle." #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "" +msgstr "Hyvin tehty!" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Varojen hallinta" #. module: account #: view:account.account:0 @@ -2245,7 +2353,7 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" -msgstr "Maksettavat tilit" +msgstr "Ostovelat" #. module: account #: constraint:account.move.line:0 @@ -2254,6 +2362,8 @@ msgid "" "currency. You should remove the secondary currency on the account or select " "a multi-currency view on the journal." msgstr "" +"Päiväkirjaviennin tili vaatii lisäämään toisen valuutan. Poista tilin toinen " +"valuutta tai valitse päiväkirjasta monivaluuttanäkymä." #. module: account #: view:account.invoice:0 @@ -2273,12 +2383,12 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "" +msgstr "Analyyttisiä myynnin päiväkirjavientejä" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Italic Text (smaller)" -msgstr "" +msgstr "Kursivoitu teksti" #. module: account #: help:account.journal,cash_control:0 @@ -2286,6 +2396,8 @@ msgid "" "If you want the journal should be control at opening/closing, check this " "option" msgstr "" +"Jos haluat, että päiväkirjan pitäisi ohjata päivittäistä kassan avaus-" +"/sulkemistoimintaa, valitse tämä vaihtoehto" #. module: account #: view:account.bank.statement:0 @@ -2298,12 +2410,12 @@ msgstr "" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Draft" -msgstr "Luonnos" +msgstr "Ehdotus" #. module: account #: field:account.move.reconcile,line_partial_ids:0 msgid "Partial Entry lines" -msgstr "Osittaiset merkintärivit" +msgstr "Osittaiset vientirivit" #. module: account #: view:account.fiscalyear:0 @@ -2321,12 +2433,12 @@ msgstr "Standardi koodaus" #: view:account.journal.select:0 #: view:project.account.analytic.line:0 msgid "Open Entries" -msgstr "Avoimet merkinnät" +msgstr "Avoimet kirjaukset" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "Seuraava ostohyvityslaskun numero" #. module: account #: field:account.automatic.reconcile,account_ids:0 @@ -2336,7 +2448,7 @@ msgstr "Täsmäytettävät tilit" #. module: account #: model:process.transition,note:account.process_transition_filestatement0 msgid "Import of the statement in the system from an electronic file" -msgstr "" +msgstr "Lue tiliote järjestelmään tiedostosta." #. module: account #: model:process.node,name:account.process_node_importinvoice0 @@ -2366,18 +2478,18 @@ msgstr "Tilin verokartta" #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "" +msgstr "30 päivää netto" #. module: account #: code:addons/account/account_cash_statement.py:256 #, python-format msgid "You do not have rights to open this %s journal !" -msgstr "" +msgstr "SInulla ei ole käyttöoikeutta avata tätä %s päiväkirjaa !" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "Tarkista ostolaskujen kokonaisarvo" #. module: account #: selection:account.invoice,state:0 @@ -2401,7 +2513,7 @@ msgstr "" #. module: account #: view:account.chart.template:0 msgid "Search Chart of Account Templates" -msgstr "" +msgstr "Hae tilikarttamalleista" #. module: account #: report:account.invoice:0 @@ -2447,14 +2559,14 @@ msgstr "Tulotili" #. module: account #: help:account.config.settings,default_sale_tax:0 msgid "This sale tax will be assigned by default on new products." -msgstr "" +msgstr "Tämä myyntivero on asetettu oletukseksi uusille tuotteille." #. module: account #: report:account.general.ledger_landscape:0 #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Entries Sorted By" -msgstr "Merkintöjen järjestelyn peruste" +msgstr "Kiirjausten järjestelyn peruste" #. module: account #: field:account.change.currency,currency_id:0 @@ -2528,7 +2640,7 @@ msgstr "Tilikausi" #: help:accounting.report,fiscalyear_id:0 #: help:accounting.report,fiscalyear_id_cmp:0 msgid "Keep empty for all open fiscal year" -msgstr "Jätä tyhjäksi käyttääksesi kaikkia avoimia tilikausia" +msgstr "Jätä tyhjäksi kaikille avoimille tilikausille" #. module: account #: code:addons/account/account.py:653 @@ -2537,6 +2649,8 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" +"Et voi muuttaa tilityyppiä \"Suljettu\" muuhun tilaan, sillä se sisältää jo " +"päiväkirjavientejä!" #. module: account #: field:account.invoice.report,account_line_id:0 @@ -2562,7 +2676,7 @@ msgstr "" #: view:account.move:0 #: model:ir.model,name:account.model_account_move msgid "Account Entry" -msgstr "Tilimerkintä" +msgstr "Kirjaus" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 @@ -2576,6 +2690,8 @@ msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" +"Jotta voit poistaa pankintiliotteen, sinun pitää ensin peruuttaa se, jotta " +"siihen liittyvät päiväkirjaviennit poistetaan." #. module: account #: field:account.invoice.report,payment_term:0 @@ -2591,13 +2707,13 @@ msgstr "Maksuehto" #: model:ir.actions.act_window,name:account.action_account_fiscal_position_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form msgid "Fiscal Positions" -msgstr "Talouskannat" +msgstr "Verokanta" #. module: account #: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "" +msgstr "Et voi luoda päiväkirjavientejä suljetulle tilille %s %s." #. module: account #: field:account.period.close,sure:0 @@ -2613,17 +2729,17 @@ msgstr "Suodattimet" #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "Laskun luonnostila" +msgstr "Laskuehdotus" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Tilin ominaisuudet" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Luo hyvitysehdotus" #. module: account #: view:account.partner.reconcile.process:0 @@ -2645,12 +2761,12 @@ msgstr "Tilin verokoodi" #: model:account.payment.term,name:account.account_payment_term_advance #: model:account.payment.term,note:account.account_payment_term_advance msgid "30% Advance End 30 Days" -msgstr "" +msgstr "30% ennakko, loput 30 päivän kuluessa" #. module: account #: view:account.entries.report:0 msgid "Unreconciled entries" -msgstr "Suorittamattomat merkinnät" +msgstr "Täsmäyttämättömät kirjaukset" #. module: account #: field:account.invoice.tax,base_code_id:0 @@ -2661,7 +2777,7 @@ msgstr "Peruskoodi" #. module: account #: help:account.invoice.tax,sequence:0 msgid "Gives the sequence order when displaying a list of invoice tax." -msgstr "" +msgstr "Antaa esitysjärjestyksen näytettäessä laskun verolistan" #. module: account #: field:account.tax,base_sign:0 @@ -2680,7 +2796,7 @@ msgstr "Debettien keskitys" #: view:account.invoice.confirm:0 #: model:ir.actions.act_window,name:account.action_account_invoice_confirm msgid "Confirm Draft Invoices" -msgstr "Vahvista luonnoslaskut" +msgstr "Vahvista laskuehdotukset" #. module: account #: field:account.entries.report,day:0 @@ -2699,7 +2815,7 @@ msgstr "Uudistettavat tilit" #. module: account #: model:ir.model,name:account.model_account_model_line msgid "Account Model Entries" -msgstr "Tilimallin merkinnät" +msgstr "Tilimallin kirjaukset" #. module: account #: code:addons/account/account.py:3202 @@ -2753,7 +2869,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "Seuraava ostolaskunumero" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2802,7 +2918,7 @@ msgstr "Analyyttinen tili" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Oletusarvoinen ostovero" #. module: account #: view:account.account:0 @@ -2834,7 +2950,7 @@ msgstr "Konfiguraatio virhe!" #: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "" +msgstr "Tila %s vahvistettu, päiväkirjaviennit on luotu." #. module: account #: field:account.invoice.report,price_average:0 @@ -2887,7 +3003,7 @@ msgstr "Viite" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "" +msgstr "Ostovero" #. module: account #: help:account.move.line,tax_code_id:0 @@ -2903,7 +3019,7 @@ msgstr "" #: model:process.node,note:account.process_node_reconciliation0 #: model:process.node,note:account.process_node_supplierreconciliation0 msgid "Comparison between accounting and payment entries" -msgstr "Vertailu kirjanpito ja maksutapahtumien välillä" +msgstr "Vertailu kirjanpitokirjausten ja maksutapahtumien välillä" #. module: account #: model:ir.ui.menu,name:account.menu_automatic_reconcile @@ -2913,7 +3029,7 @@ msgstr "Automaattinen täsmäytys" #. module: account #: field:account.invoice,reconciled:0 msgid "Paid/Reconciled" -msgstr "Maksettu/Suoritettu" +msgstr "Maksettu/Täsmäytetty" #. module: account #: field:account.tax,ref_base_code_id:0 @@ -2958,31 +3074,31 @@ msgstr "Päivämäärät" #. module: account #: field:account.chart.template,parent_id:0 msgid "Parent Chart Template" -msgstr "" +msgstr "Ylätason tilikartan malli" #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 msgid "Parent Tax Account" -msgstr "Ylin verotili" +msgstr "Ylätason verotili" #. module: account #: view:account.aged.trial.balance:0 #: model:ir.actions.act_window,name:account.action_account_aged_balance_view #: model:ir.ui.menu,name:account.menu_aged_trial_balance msgid "Aged Partner Balance" -msgstr "Tase kumppanien erääntyvistä" +msgstr "Kumppanien erääntymisraportti" #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 #: model:process.transition,name:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries" -msgstr "Tiliviennit" +msgstr "Kirjaukset" #. module: account #: constraint:account.move.line:0 msgid "Account and Period must belong to the same company." -msgstr "" +msgstr "Tilin ja kauden pitää kuulua samalle yritykselle." #. module: account #: field:account.invoice.line,discount:0 @@ -3008,7 +3124,7 @@ msgstr "Arvonalennuksen määrä" #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Lukemattomat viestit" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3017,12 +3133,14 @@ msgid "" "Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" "Forma' state." msgstr "" +"Valittua laskua/laskuja ei vahvistaa, koska ei/eivät ole \"Ehdotus\" tai " +"\"Proforma\" -tilassa." #. module: account #: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "" +msgstr "Valitse jakso, joka kuuluu samalle yhtiölle." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -3035,7 +3153,7 @@ msgstr "Myynnit tileittäin" #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Et voi poistaa kirjattua päiväkirjavientiä \"%s\"." #. module: account #: view:account.invoice:0 @@ -3045,7 +3163,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "" +msgstr "Myyntipäiväkirja" #. module: account #: code:addons/account/account.py:2346 @@ -3062,6 +3180,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Tämä päiväkirja sisältää jo kirjauksia, joten et voi enää muuttaa sen " +"yrityskenttää." #. module: account #: code:addons/account/account.py:409 @@ -3075,12 +3195,12 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_tax_code_list #: model:ir.ui.menu,name:account.menu_action_tax_code_list msgid "Tax codes" -msgstr "Varokoodit" +msgstr "Verokoodit" #. module: account #: view:account.account:0 msgid "Unrealized Gains and losses" -msgstr "" +msgstr "Toteutumattomat voitot ja tappiot" #. module: account #: model:ir.ui.menu,name:account.menu_account_customer @@ -3107,7 +3227,7 @@ msgstr "Elokuu" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "Näytä Debet/Kredit-sarakkeet" #. module: account #: selection:account.entries.report,month:0 @@ -3129,12 +3249,12 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Täsmäyttämättömät tapahtumat" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "" +msgstr "Vain yksi tilikarttamalli saatavilla" #. module: account #: view:account.chart.template:0 @@ -3147,7 +3267,7 @@ msgstr "Menotili" #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Yhteenveto" #. module: account #: help:account.invoice,period_id:0 @@ -3173,7 +3293,7 @@ msgstr "Peruskoodin määrä" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "Oletus myyntivero" +msgstr "Oletusmyyntivero" #. module: account #: help:account.model.line,date_maturity:0 @@ -3191,7 +3311,7 @@ msgstr "Taloudellinen kirjanpito" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "Voitto ja tappio" +msgstr "Tulos" #. module: account #: view:account.fiscal.position:0 @@ -3205,7 +3325,7 @@ msgstr "Voitto ja tappio" #: model:ir.model,name:account.model_account_fiscal_position #: field:res.partner,property_account_position:0 msgid "Fiscal Position" -msgstr "Talouskanta" +msgstr "Verokanta" #. module: account #: code:addons/account/account_invoice.py:823 @@ -3232,13 +3352,13 @@ msgstr "Alatilit" #: model:ir.actions.report.xml,name:account.account_account_balance #: model:ir.ui.menu,name:account.menu_general_Balance_report msgid "Trial Balance" -msgstr "" +msgstr "Koetase" #. module: account #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Alkusaldot eivät kelpaa (negatiivinen arvo)." #. module: account #: selection:account.invoice,type:0 @@ -3257,7 +3377,7 @@ msgstr "Valitse tilikausi" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "Päivämääräväli" #. module: account #: view:account.period:0 @@ -3273,12 +3393,12 @@ msgstr "Laskutusvaluutta" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Kirjanpitoraportit" #. module: account #: field:account.payment.term,line_ids:0 msgid "Terms" -msgstr "Termit" +msgstr "Ehdot" #. module: account #: field:account.chart.template,tax_template_ids:0 @@ -3288,7 +3408,7 @@ msgstr "Veromallilista" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "" +msgstr "Myynti-/ostopäiväkirja" #. module: account #: help:account.account,currency_mode:0 @@ -3309,7 +3429,7 @@ msgstr "" #: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Mallitilillä ei ole ylätilin koodia." #. module: account #: help:account.chart.template,code_digits:0 @@ -3320,12 +3440,12 @@ msgstr "Numeroiden määrä tilikoodissa" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Toimittajan maksuehdot" #. module: account #: view:account.fiscalyear:0 msgid "Search Fiscalyear" -msgstr "Hae kirjanpitovuosi" +msgstr "Hae tilikausi" #. module: account #: selection:account.tax,applicable_type:0 @@ -3383,7 +3503,7 @@ msgstr "Analyyttiset rivit" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "" +msgstr "Proforma laskut" #. module: account #: model:process.node,name:account.process_node_electronicfile0 @@ -3393,12 +3513,12 @@ msgstr "Sähköinen tiedosto" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Täsmäytysviite" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 msgid "Company has a chart of accounts" -msgstr "" +msgstr "Yrityksellä on tilikartta" #. module: account #: model:ir.model,name:account.model_account_tax_code_template @@ -3498,7 +3618,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Tilikausi" #. module: account #: help:account.account,currency_id:0 @@ -3525,7 +3645,7 @@ msgstr "Tilikarttamallit" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Tapahtumat" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile @@ -3545,6 +3665,15 @@ msgid "" " 'Unreconciled' will copy only the journal items that were unreconciled on " "the first day of the new fiscal year." msgstr "" +"Aseta menetelmä, jolla luodaan tilinpäätösviennit kaikille tämän tyyppisille " +"tileille.\n" +"\n" +" \"Ei mitään\" tarkoittaa että tilinpäätöksessä ei tehdä mitään.\n" +" \"Tasapaino\" 'käytetään yleensä käteistileille.\n" +" \"Kaikki\" kopioi jokaisen olemassa olevan päiväkirjaviennin vuodelta, myös " +"täsmäytetyt.\n" +" \"Täsmäyttämätön\" kopioi vain päiväkirjaviennit, joita ei ole täsmäytetty " +"uuden tilikauden ensimmäisenä päivänä." #. module: account #: view:account.tax.template:0 @@ -3612,7 +3741,7 @@ msgstr "Osto" #: view:account.installer:0 #: view:wizard.multi.charts.accounts:0 msgid "Accounting Application Configuration" -msgstr "Kirjanpitoohjelmiston konfiguraatio" +msgstr "Kirjanpitoohjelmiston konfigurointi" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration @@ -3640,7 +3769,7 @@ msgstr "" #: field:account.bank.statement,balance_start:0 #: field:account.treasury.report,starting_balance:0 msgid "Starting Balance" -msgstr "Aloitus balanssi" +msgstr "Alkusaldo" #. module: account #: code:addons/account/account_invoice.py:1465 @@ -3659,7 +3788,7 @@ msgstr "Sulje jakso" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Avaava välisaldo" #. module: account #: constraint:account.move.line:0 @@ -3709,7 +3838,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_select msgid "Unreconcile Entries" -msgstr "Poista merkintöjen suoritukset" +msgstr "Poista kirjausten täsmäytykset" #. module: account #: field:account.tax.code,notprintable:0 @@ -3760,6 +3889,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" +"Kaikki valitut päiväkirjaviennit vahvistetaan ja kirjataan. Tämä tarkoittaa " +"sitä, että et voi muuttaa enää niiden kirjanpitokenttiä." #. module: account #: code:addons/account/account_move_line.py:98 @@ -3818,6 +3949,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi asiakaslaskun.\n" +"

\n" +" OpenERP:in sähköinen laskutus mahdollistaa helpon ja nopean\n" +" asiakkaiden maksusuoritusten keruun. Asiakaasi saa laskun \n" +" sähköpostilla ja hän voi maksaa sen verkossa ja/tai lukea " +"sen\n" +" omaan tietojärjestelmäänsä.\n" +"

\n" +" Asiakaskeskustelut näytetään automaattisesti kunkin laskun\n" +" alapuolella.\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -3830,7 +3974,7 @@ msgstr "Verotapauksen nimi" #: view:account.invoice:0 #: model:process.node,name:account.process_node_draftinvoices0 msgid "Draft Invoice" -msgstr "Luonnoslasku" +msgstr "Laskuehdotus" #. module: account #: view:account.config.settings:0 @@ -3849,6 +3993,8 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" +"Et voi muokata tähän päiväkirjaan kirjattua vientiä.\n" +"Aseta ensin päiväkirja tilaan, jossa hyväksytään kirjausten peruutus." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal @@ -3884,7 +4030,7 @@ msgstr "Luo tili" #: code:addons/account/wizard/account_fiscalyear_close.py:62 #, python-format msgid "The entries to reconcile should belong to the same company." -msgstr "" +msgstr "Täsmäytettävien kirjausten pitää kuulua samalle yritykselle." #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -3894,7 +4040,7 @@ msgstr "Verokoodin määrä" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "" +msgstr "Täsmäyttämättömät päiväkirjaviennit" #. module: account #: selection:account.account.type,close_method:0 @@ -4054,7 +4200,7 @@ msgstr "Ei suotimia" #: view:account.invoice.report:0 #: model:res.groups,name:account.group_proforma_invoices msgid "Pro-forma Invoices" -msgstr "" +msgstr "Proformalaskut" #. module: account #: view:res.partner:0 @@ -4073,7 +4219,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "Tarkista toimittajalaskujen kokonaisarvo" #. module: account #: view:account.tax:0 @@ -4087,6 +4233,8 @@ msgid "" "When monthly periods are created. The status is 'Draft'. At the end of " "monthly period it is in 'Done' status." msgstr "" +"Kun kuukausijaksot on luotu, niin tila on \"Ehdotus\" ja kun kuukauden " +"lopussa sen tila on \"Valmis\"" #. module: account #: view:account.invoice.report:0 @@ -4110,13 +4258,13 @@ msgstr "Hae analyyttisiä rivejä" #. module: account #: field:res.partner,property_account_payable:0 msgid "Account Payable" -msgstr "Tili maksettavat" +msgstr "Ostovelat" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "Jaksoja joille avausviennit kirjataan, ei löydy." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4128,7 +4276,7 @@ msgstr "Maksumääräys" msgid "" "Check this option if you want the user to reconcile entries in this account." msgstr "" -"Valitse tämä jos haluat käyttäjän tekevän suoritusmerkinnät tällä tilillä." +"Valitse tämä jos haluat käyttäjän täsmäyttävän tämän tilin kirjauksia." #. module: account #: report:account.invoice:0 @@ -4144,7 +4292,7 @@ msgstr "" #. module: account #: field:analytic.entries.report,nbr:0 msgid "#Entries" -msgstr "Vientien määrä" +msgstr "Kirjausten määrä" #. module: account #: view:account.state.open:0 @@ -4187,7 +4335,7 @@ msgstr "" #. module: account #: field:account.move.line,date:0 msgid "Effective date" -msgstr "Tehokas päiväys" +msgstr "Kirjauspäivä" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:100 @@ -4215,7 +4363,7 @@ msgstr "" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "" +msgstr "Päiväkirja analyyttisille kirjauksille" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4287,7 +4435,7 @@ msgstr "" msgid "" "Value of Loss or Gain due to changes in exchange rate when doing multi-" "currency transactions." -msgstr "" +msgstr "Tuloa valuutan vaihteluista johtuen monivaluuttatapahtumissa" #. module: account #: view:account.analytic.line:0 @@ -4312,7 +4460,7 @@ msgstr "otsikko" #: view:account.invoice:0 #: view:account.subscription:0 msgid "Set to Draft" -msgstr "Aseta luonnokseksi" +msgstr "Aseta ehdotukseksi" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form @@ -4359,7 +4507,7 @@ msgstr "Näytä tilit" #. module: account #: view:account.state.open:0 msgid "(Invoice should be unreconciled if you want to open it)" -msgstr "(Laskun suoritusmerkinnät tulisi poistaa jos se halutaan avata)" +msgstr "(Avattavan laskun pitää olla täsmäyttämätön)" #. module: account #: field:account.tax,account_analytic_collected_id:0 @@ -4382,7 +4530,7 @@ msgstr "Veronimi" #: view:account.config.settings:0 #: model:ir.ui.menu,name:account.menu_finance_configuration msgid "Configuration" -msgstr "Konfiguraatio" +msgstr "Konfigurointi" #. module: account #: model:account.payment.term,name:account.account_payment_term @@ -4402,6 +4550,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Tätä maksuehtoa käytetään oletuehdon asemasta myyntitilauksilla ja " +"myyntilaskuilla." #. module: account #: view:account.config.settings:0 @@ -4435,7 +4585,7 @@ msgstr "Hae veropohjia" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "Viennit luonnostilassa" +msgstr "Kirjausehdotukset" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4444,6 +4594,8 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" +"Esim. demsimaalitarkkuus 2 sallii päiväkirjavientien kirjaamisen muodosssa " +"9,99 EUR ja desimaalitarkkuus 3 puolestaan muodossa 0,0231 EUR." #. module: account #: field:account.account,shortcut:0 @@ -4540,7 +4692,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Toimitttajalaskujen numerointi" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4581,14 +4733,14 @@ msgstr "Huomautus" #. module: account #: selection:account.financial.report,sign:0 msgid "Reverse balance sign" -msgstr "" +msgstr "Käänteinen saldomerkki" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "" +msgstr "Tase (Vastattavaa)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4599,7 +4751,7 @@ msgstr "Jätä tyhjäksi käyttääksesi nykyistä päivämäärää" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Sulkeva välisaldo" #. module: account #: field:account.tax,base_code_id:0 @@ -4617,6 +4769,8 @@ msgstr "" #: help:res.company,paypal_account:0 msgid "Paypal username (usually email) for receiving online payments." msgstr "" +"Paypal -käyttäjänimi (yleensä sähköpostiosoite) online-maksujen " +"vastaanottamista varten." #. module: account #: selection:account.aged.trial.balance,target_move:0 @@ -4638,7 +4792,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "Kaikki viedyt merkinnät" +msgstr "Kaikki kirjatut viennit." #. module: account #: field:report.aged.receivable,name:0 @@ -4653,7 +4807,7 @@ msgstr "Valitse jos haluat näyttää myös 0 saldolla olevat tilit" #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Avausvientien täsmäytys" #. module: account #. openerp-web @@ -4698,7 +4852,7 @@ msgstr "" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Main Title 1 (bold, underlined)" -msgstr "" +msgstr "Pääotsikko 1 (lihavoitu, alleviivattu)" #. module: account #: report:account.analytic.account.balance:0 @@ -4801,7 +4955,7 @@ msgstr "" #. module: account #: view:account.use.model:0 msgid "Create Entries From Models" -msgstr "Luo merkinnät malleista" +msgstr "Luo viennit malleista" #. module: account #: field:account.account,reconcile:0 @@ -4850,7 +5004,7 @@ msgstr "Toistuvat mallit" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Alatilit/alaverot" #. module: account #: xsl:account.transfer:0 @@ -4945,7 +5099,7 @@ msgstr "Uusi" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "Myyntivero" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -4970,6 +5124,9 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Kun päiväkirjakausi on luotu, till on \"Ehdotus\". Kun raportti tulostetaan, " +"niin tilaksi tulee \"Tulostettu\". Kun kaikki tapahtumat on käsitelty " +"loppuun, niin tilaksi tulee \"Valmis\"." #. module: account #: code:addons/account/account.py:3205 @@ -5054,7 +5211,7 @@ msgstr "Laskutettu" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "" +msgstr "Kirjatut päiväkirjaviennit" #. module: account #: view:account.use.model:0 @@ -5104,7 +5261,7 @@ msgstr "Pankkisuorituksiin käytettävä pankkitiliote" #. module: account #: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 msgid "Draft invoices are validated. " -msgstr "Luonnoslaskut on tarkistettu. " +msgstr "Laskuehdotukset on vahvistettu. " #. module: account #: help:account.tax,account_collected_id:0 @@ -5122,7 +5279,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "" +msgstr "Päiväkirjavientien tarkastus" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 @@ -5340,7 +5497,7 @@ msgstr "Maksut" #. module: account #: field:account.subscription.line,move_id:0 msgid "Entry" -msgstr "Merkintä" +msgstr "Kirjaus" #. module: account #: field:account.tax,python_compute_inv:0 @@ -5429,19 +5586,19 @@ msgstr "Verotili" #: model:ir.actions.act_window,name:account.action_account_report_bs #: model:ir.ui.menu,name:account.menu_account_report_bs msgid "Balance Sheet" -msgstr "Tilinpäätös" +msgstr "Tase" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "" +msgstr "Tulos (Tulotili)" #. module: account #: field:account.journal,allow_date:0 msgid "Check Date in Period" -msgstr "" +msgstr "Tarkista jakson päiväys" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports @@ -5453,7 +5610,7 @@ msgstr "Kirjanpitoraportit" #: view:analytic.entries.report:0 #: model:ir.actions.act_window,name:account.action_move_line_form msgid "Entries" -msgstr "Merkinnät" +msgstr "Kirjaukset" #. module: account #: view:account.entries.report:0 @@ -5512,7 +5669,7 @@ msgstr "Summa" #: code:addons/account/wizard/account_fiscalyear_close.py:41 #, python-format msgid "End of Fiscal Year Entry" -msgstr "Tilikauden päättymisen merkintä" +msgstr "Tilinpäätöskirjaus" #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -5536,7 +5693,7 @@ msgstr "" #: field:account.tax,child_depend:0 #: field:account.tax.template,child_depend:0 msgid "Tax on Children" -msgstr "Vero alemmille" +msgstr "Vero alatileille" #. module: account #: help:res.partner,last_reconciliation_date:0 @@ -5552,7 +5709,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "Salli merkintöjen poisto" +msgstr "Salli peruutusviennit" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -5566,7 +5723,7 @@ msgstr "" #. module: account #: field:account.tax.code,sign:0 msgid "Coefficent for parent" -msgstr "" +msgstr "Kerroin ylätasolle" #. module: account #: report:account.partner.balance:0 @@ -5607,7 +5764,7 @@ msgstr "Sisällytä perusmäärään" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Toimittajalaskun numero" #. module: account #: help:account.payment.term.line,days:0 @@ -5629,11 +5786,12 @@ msgstr "Määrän laskenta" #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" +"Suljetun jakson %s päiväkirjaan %s ei voi lisätä tai muuttaa kirjauksia." #. module: account #: view:account.journal:0 msgid "Entry Controls" -msgstr "Merkintöjen hallinta" +msgstr "Kirjausten hallinta" #. module: account #: view:account.analytic.chart:0 @@ -5691,7 +5849,7 @@ msgstr "" #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "" +msgstr "Sisältäen alkusaldot" #. module: account #: view:account.invoice.tax:0 @@ -5721,12 +5879,12 @@ msgstr "Laskuraportti viimeisimmän 15 päivän ajalta" #. module: account #: field:account.fiscalyear,end_journal_period_id:0 msgid "End of Year Entries Journal" -msgstr "Päätösmerkintöjen päiväkirja" +msgstr "Tilinpäätöskirjausten päiväkirja" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Hyvitysehdotus " #. module: account #: view:cash.box.in:0 @@ -5764,7 +5922,7 @@ msgstr "Tuotteen määrä" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Unposted" -msgstr "" +msgstr "Kirjaamatta" #. module: account #: view:account.change.currency:0 @@ -5777,7 +5935,7 @@ msgstr "Vaihda valuuttaa" #: model:process.node,note:account.process_node_accountingentries0 #: model:process.node,note:account.process_node_supplieraccountingentries0 msgid "Accounting entries." -msgstr "" +msgstr "Kirjaukset" #. module: account #: view:account.invoice:0 @@ -5800,7 +5958,7 @@ msgstr "Analyyttiset tilit" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "Asiakaslaskut ja -hyvitykset" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5851,6 +6009,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Tätä maksuehtoa käytetään oletusarvon asemasta ostotilauksilla ja " +"toimittajalaskuilla." #. module: account #: help:account.automatic.reconcile,power:0 @@ -5869,12 +6029,12 @@ msgstr "" #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 msgid "Fiscal Position Template" -msgstr "Talouskannan malli" +msgstr "Verokannan malli" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Hyvitysehdotus" #. module: account #: view:account.analytic.chart:0 @@ -5901,7 +6061,7 @@ msgstr "Avaa kassakone" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Automatic formatting" -msgstr "" +msgstr "Automaattinen muotoilu" #. module: account #: view:account.move.line.reconcile:0 @@ -5940,7 +6100,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "Luo avausviennit" +msgstr "Luo avauskirjaukset" #. module: account #: help:account.tax,type:0 @@ -5986,7 +6146,7 @@ msgstr "Arvonalennus" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "tapahtumat" +msgstr "kirjaukset" #. module: account #: field:res.partner,debit:0 @@ -6039,7 +6199,7 @@ msgstr "Avoin viite" #: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" -msgstr "Saatavat ja maksettavat tilit" +msgstr "Saatavat ja ostovelat -tilit" #. module: account #: field:account.fiscal.position.account.template,position_id:0 @@ -6108,6 +6268,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa lisätäksesi tilin.\n" +"

\n" +" An account is part of a ledger allowing your company\n" +" to register all kinds of debit and credit transactions.\n" +" Companies present their annual accounts in two main parts: " +"the\n" +" balance sheet and the income statement (profit and loss\n" +" account). The annual accounts of a company are required by " +"law\n" +" to disclose a certain amount of information.\n" +"

\n" +" " #. module: account #: view:account.invoice.report:0 @@ -6158,7 +6331,7 @@ msgstr "" #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "Tappiotili" #. module: account #: field:account.tax,account_collected_id:0 @@ -6203,7 +6376,7 @@ msgstr "Ilmoita" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template msgid "Template Tax Fiscal Position" -msgstr "" +msgstr "Verokannan malli" #. module: account #: help:account.tax,name:0 @@ -6221,7 +6394,7 @@ msgstr "Tulostuspäivä" #: selection:account.tax,type:0 #: selection:account.tax.template,type:0 msgid "None" -msgstr "Ei mikään" +msgstr "Ei mitään" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree3 @@ -6232,7 +6405,7 @@ msgstr "Asiakashyvitykset" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Saldo toisessa valuutassa" #. module: account #: field:account.journal.period,name:0 @@ -6262,14 +6435,14 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Fiscal Position Remark :" -msgstr "Tilikausiposition huomautus :" +msgstr "Verokanta, huomautus:" #. module: account #: view:analytic.entries.report:0 #: model:ir.actions.act_window,name:account.action_analytic_entries_report #: model:ir.ui.menu,name:account.menu_action_analytic_entries_report msgid "Analytic Entries Analysis" -msgstr "" +msgstr "Analyyttisten kirjausten analyysi" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -6286,7 +6459,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" -msgstr "Analyyttinen merkintä" +msgstr "Analyyttinen kirjaus" #. module: account #: view:res.company:0 @@ -6310,6 +6483,8 @@ msgid "" "As soon as the reconciliation is done, the invoice's state turns to “done” " "(i.e. paid) in the system." msgstr "" +"Heti kun täsmäytys on tehty, niin laskun tilaksi tulee \"Valmis\" (esim. " +"maksettu)." #. module: account #: view:account.chart.template:0 @@ -6354,12 +6529,12 @@ msgstr "Tämä on malli toistuvasta kirjanpidon merkinnästä" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "" +msgstr "Myyntivero(%)" #. module: account #: view:account.tax.code:0 msgid "Reporting Configuration" -msgstr "Raportoinnin konfiguraatio" +msgstr "Raportoinnin konfigurointi" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree4 @@ -6374,6 +6549,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa rekisteröidäksesi toimittajalta saapuneen " +"hyvityksen.\n" +"

\n" +" Sen sijaan, että loisit toimittajalta saapuneen hyvityksen " +"manuaalisesti, voit\n" +" luoda hyvitykset ja täsmäyttää ne suoraan vastaavilta " +"ostolaskuilta.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6425,7 +6610,7 @@ msgstr "" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 msgid "Select a fiscal year to close" -msgstr "Valitse suljettava kirjanpitovuosi" +msgstr "Valitse suljettava tilikausi" #. module: account #: help:account.chart.template,tax_template_ids:0 @@ -6498,12 +6683,12 @@ msgstr "Peruuta" #: model:account.account.type,name:account.data_account_type_receivable #: selection:account.entries.report,type:0 msgid "Receivable" -msgstr "Saatavat" +msgstr "Saatava" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "" +msgstr "Et voi luoda päiväkirjatapahtumia suljetulle tilille." #. module: account #: code:addons/account/account_invoice.py:633 @@ -6617,7 +6802,7 @@ msgstr "Täsmäytys: siirry seuraavaan kumppaniin" #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance #: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance msgid "Inverted Analytic Balance" -msgstr "Vastaava analyyttinen saldo" +msgstr "Käänteinen analyyttinen saldo" #. module: account #: field:account.tax.template,applicable_type:0 @@ -6641,6 +6826,7 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Avaus/Päätösjaksoa ei ole määritelty, luo yksi jakso ja tee avausviennit." #. module: account #: help:account.tax.template,sequence:0 @@ -6746,7 +6932,7 @@ msgstr "Toimittajan hyvitys" #. module: account #: field:account.bank.statement,move_line_ids:0 msgid "Entry lines" -msgstr "Merkintärivit" +msgstr "Kirjausrivit" #. module: account #: field:account.move.line,centralisation:0 @@ -6833,6 +7019,8 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"Maksuehdon prosentit annetaan desimaalilukuina väliltä 0 - 1. Esim.; 2% " +"kirjataan 0,02." #. module: account #: report:account.invoice:0 @@ -6880,14 +7068,14 @@ msgstr "Muistiinpanot" #. module: account #: model:ir.model,name:account.model_analytic_entries_report msgid "Analytic Entries Statistics" -msgstr "" +msgstr "Analyyttisten kirjausten tilastot" #. module: account #: code:addons/account/account_analytic_line.py:142 #: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " -msgstr "Merkinnät: " +msgstr "Kirjaukset: " #. module: account #: help:res.partner.bank,currency_id:0 @@ -6911,12 +7099,12 @@ msgstr "Tosi" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Tase (Vastaavaa)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 msgid "State is draft" -msgstr "Tila on luonnos" +msgstr "Tila on ehdotus" #. module: account #: view:account.move.line:0 @@ -6971,14 +7159,14 @@ msgstr "Luo" #. module: account #: model:process.transition.action,name:account.process_transition_action_createentries0 msgid "Create entry" -msgstr "Luo merkintä" +msgstr "Luo kirjaus" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "" +msgstr "Tulos (menotili)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 @@ -7006,7 +7194,7 @@ msgstr "" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "" +msgstr "Säilytä saldon merkki" #. module: account #: view:account.vat.declaration:0 @@ -7073,7 +7261,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "Päiväkirjatapahtumat" +msgstr "Päiväkirjatviennit" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 @@ -7119,7 +7307,7 @@ msgstr "Kyllä" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "Kaikki merkinnät" +msgstr "Kaikki kirjaukset" #. module: account #: constraint:account.move.reconcile:0 @@ -7137,7 +7325,7 @@ msgstr "" #: code:addons/account/account.py:434 #, python-format msgid "Opening Balance" -msgstr "Alkusaldo" +msgstr "Avaava tase" #. module: account #: model:ir.model,name:account.model_account_move_reconcile @@ -7147,7 +7335,7 @@ msgstr "Tilien suoritusmerkinnät" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax msgid "Taxes Fiscal Position" -msgstr "" +msgstr "Verokannat" #. module: account #: report:account.general.ledger:0 @@ -7170,6 +7358,8 @@ msgid "" "Check this box if you are unsure of that journal entry and if you want to " "note it as 'to be reviewed' by an accounting expert." msgstr "" +"Valitse tämä valintalaatikko jos et ole varma tästä päiväkirjakirjauksesta " +"ja haluat lähettää huomautuksen \"tarkastettava\" asiantuntijalle." #. module: account #: field:account.chart.template,complete_tax_set:0 @@ -7183,6 +7373,8 @@ msgstr "" msgid "" "Selected Entry Lines does not have any account move enties in draft state." msgstr "" +"Valituilla riveillä ei ole yhtään kirjanpidon siirtokirjausta tilassa " +"ehdotus." #. module: account #: view:account.chart.template:0 @@ -7235,7 +7427,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Hallitse asiakkaan maksuja" #. module: account #: help:report.invoice.created,origin:0 @@ -7258,13 +7450,13 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "" +msgstr "Myynnissä käytetyt verot" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "Asiakas Laskutus" +msgstr "Asiakaslaskut" #. module: account #: view:account.tax:0 @@ -7296,7 +7488,7 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "" +msgstr "Manuaalisia kirjauksia sisältävä ote muutetaan tilaan \"Ehdotus\"" #. module: account #: view:account.aged.trial.balance:0 @@ -7319,7 +7511,7 @@ msgstr "Lähdedokumentti" #. module: account #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" -msgstr "" +msgstr "Pankkitilit tulostettuna jokaisen tulostetun asiakirjojen alareunaan" #. module: account #: constraint:account.account:0 @@ -7328,6 +7520,8 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Konfigurointivirhe!\n" +"Et voi määritellä alatiliä tilille, jonka sisäinen tyyppi on \"Näkymä\"." #. module: account #: model:ir.model,name:account.model_accounting_report @@ -7387,7 +7581,7 @@ msgstr "Tiliveron malli" #. module: account #: view:account.journal.select:0 msgid "Are you sure you want to open Journal Entries?" -msgstr "" +msgstr "Oletko varma, että haluat avata päiväkirjaan kirjatut viennit?" #. module: account #: view:account.state.open:0 @@ -7397,12 +7591,12 @@ msgstr "Haluatko varmasti avata tämän laskun?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "" +msgstr "Avausvientien menotili" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Asiakasviite" #. module: account #: field:account.account.template,parent_id:0 @@ -7418,7 +7612,7 @@ msgstr "Hinta" #: view:account.bank.statement:0 #: field:account.bank.statement,closing_details_ids:0 msgid "Closing Cashbox Lines" -msgstr "" +msgstr "Suljetaan kassakoneyhteydet" #. module: account #: view:account.bank.statement:0 @@ -7436,7 +7630,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Kirjatut viennit" #. module: account #: help:account.payment.term.line,value_amount:0 @@ -7469,7 +7663,7 @@ msgstr "Asiakkaan kokonaisvelan määrä." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "" +msgstr "Päiväkirjaviennit" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -7498,9 +7692,9 @@ msgid "" "new counterpart but will share the same counterpart. This is used in fiscal " "year closing." msgstr "" -"Valitse määrittääksesi että jokainen merkintä tähän päiväkirjaan ei luo " -"uutta vastinetta vaan käyttää jaettua vastinetta. Tätä käytetään tilikauden " -"päätökseen." +"Valitse määrittääksesi, että yksikään kirjaus tähän päiväkirjaan, ei luo " +"uutta vastapuolta vaan käyttävät yhteistä jaettua vastapuolta. Tätä " +"käytetään tilikauden päätökseen." #. module: account #: field:account.bank.statement,closing_date:0 @@ -7520,7 +7714,7 @@ msgstr "Ostojen veron oletusarvo" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Avausvientien tulotili" #. module: account #: field:account.config.settings,group_proforma_invoices:0 @@ -7551,12 +7745,12 @@ msgstr "Laskuviite" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "Uusien merkintöjen nimi" +msgstr "Uusien kirjausten nimi" #. module: account #: view:account.use.model:0 msgid "Create Entries" -msgstr "Luo merkinnät" +msgstr "Luo kirjaukset" #. module: account #: model:ir.model,name:account.model_cash_box_out @@ -7655,7 +7849,7 @@ msgstr "Laskun rivi" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Asiakas- ja toimittajahyvitykset" #. module: account #: field:account.financial.report,sign:0 @@ -7705,7 +7899,7 @@ msgstr "Proforma" #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "Epätasapainossa" +msgstr "Saldoero" #. module: account #: selection:account.move.line,centralisation:0 @@ -7791,7 +7985,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "" +msgstr "Kirjaamattomat päiväkirjaviennit" #. module: account #: help:account.invoice.refund,date:0 @@ -7816,7 +8010,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile msgid "Manual Reconciliation" -msgstr "Käsin tehty täsmäytys" +msgstr "Manuaalinen täsmäytys" #. module: account #: report:account.overdue:0 @@ -7852,6 +8046,7 @@ msgstr "Peruuta valitut laskut" msgid "" "This field is used to generate legal reports: profit and loss, balance sheet." msgstr "" +"Tätä kenttää käytetään luomaan viralliset raportit: tuloslaskelma ja tase." #. module: account #: selection:account.entries.report,month:0 @@ -7897,7 +8092,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "" +msgstr "Kirjaa päiväkirjaviennit" #. module: account #: selection:account.bank.statement.line,type:0 @@ -7959,12 +8154,12 @@ msgstr "" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Päiväkirjaviennin numero" #. module: account #: view:account.financial.report:0 msgid "Parent Report" -msgstr "" +msgstr "Ylätason raportti" #. module: account #: constraint:account.account:0 @@ -8003,7 +8198,7 @@ msgstr "Varat" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "" +msgstr "Laskettu saldo" #. module: account #. openerp-web @@ -8016,13 +8211,13 @@ msgstr "" #: field:account.account,parent_id:0 #: field:account.financial.report,parent_id:0 msgid "Parent" -msgstr "Ylempi tili" +msgstr "Ylätaso" #. module: account #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Profit" -msgstr "" +msgstr "Voitto" #. module: account #: help:account.payment.term.line,days2:0 @@ -8057,9 +8252,10 @@ msgid "" "to the higher ones. The order is important if you have a tax with several " "tax children. In this case, the evaluation order is important." msgstr "" -"Sekvenssikenttää käytetään verorivien tuomiseen alemmista sekvensseistä " -"ylempiin. Tuominen on tärkeää jos käyttämälläsi verolla on useita alaveroja. " -"Tässä tapauksessa arviointia on tärkeää." +"Sarjanumerokenttää käytetään verorivien järjestämiseen alemmista " +"sarjanumeroista ylempiin. Järjestys on tärkeä, jos on määritelty vero " +"useilla alaveroilla. Järjestys on tärkeä, jos verolla on useita alaveroja, " +"jolloin käsittelyjärjestys on olennaisen tärkeä." #. module: account #: model:ir.model,name:account.model_account_cashbox_line @@ -8187,12 +8383,14 @@ msgid "" "The statement balance is incorrect !\n" "The expected balance (%.2f) is different than the computed one. (%.2f)" msgstr "" +"Otteen saldo on virheellinen!\n" +"Oletettu saldo \"%.2f\" poikkeaa lasketusta saldosta\"%.2f\"." #. module: account #: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." -msgstr "Tilin merkintärivit eivät ole hyväksytyssä tilassa." +msgstr "Tilin vientirivit eivät ole hyväksytyssä tilassa." #. module: account #: field:account.account.type,close_method:0 @@ -8202,7 +8400,7 @@ msgstr "Jaksotusmenetelmä" #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Automatic entry" -msgstr "Automaattinen vienti" +msgstr "Automaattinen kirjaus" #. module: account #: help:account.account,reconcile:0 @@ -8213,7 +8411,7 @@ msgstr "" #. module: account #: report:account.analytic.account.inverted.balance:0 msgid "Inverted Analytic Balance -" -msgstr "Käännetty analyyttinen saldo -" +msgstr "Käänteinen analyyttinen saldo -" #. module: account #: help:account.move.reconcile,opening_reconciliation:0 @@ -8225,7 +8423,7 @@ msgstr "" #: view:account.analytic.line:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form msgid "Analytic Entries" -msgstr "Analyyttiset merkinnät" +msgstr "Analyyttiset kirjaukset" #. module: account #: view:account.analytic.account:0 @@ -8292,7 +8490,7 @@ msgstr "Maksu tilikirja" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Tälle yritykselle ei ole määritelty tilikautta" #. module: account #: view:account.invoice:0 @@ -8419,13 +8617,13 @@ msgstr "Tulo kategoria tili" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "" +msgstr "Säädetty saldo" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template msgid "Fiscal Position Templates" -msgstr "Talouskantojen mallit" +msgstr "Verokantojen mallit" #. module: account #: view:account.entries.report:0 @@ -8511,7 +8709,7 @@ msgstr "Osittaissuoritus" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance msgid "Account Analytic Inverted Balance" -msgstr "" +msgstr "Analyyttisen tilin käänteinen saldo" #. module: account #: model:ir.model,name:account.model_account_common_report @@ -8627,7 +8825,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "Kirjanpitovuoden sulkemisen tila" +msgstr "Tilikauden sulkemisen tila" #. module: account #: field:account.invoice.refund,journal_id:0 @@ -8650,6 +8848,8 @@ msgstr "Suodata käyttäen" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"Sulkeaksesi jakson, sinun pitää ensin kirjata tähän liittyvät " +"päiväkirjaviennit." #. module: account #: view:account.entries.report:0 @@ -8674,7 +8874,7 @@ msgstr "" #: view:account.tax.code.template:0 #: field:account.tax.code.template,parent_id:0 msgid "Parent Code" -msgstr "Ylempi koodi" +msgstr "Ylätason koodi" #. module: account #: model:ir.model,name:account.model_account_payment_term_line @@ -8700,7 +8900,7 @@ msgstr "Tulosta veroilmoitus" #. module: account #: view:account.model.line:0 msgid "Journal Entry Model Line" -msgstr "" +msgstr "Päiväkirjaviennin mallirivi" #. module: account #: view:account.invoice:0 @@ -8751,7 +8951,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close msgid "Fiscalyear Close" -msgstr "Kirjanpitovuoden sulkeminen" +msgstr "Tilikauden sulkeminen" #. module: account #: sql_constraint:account.account:0 @@ -8800,7 +9000,7 @@ msgstr "Tilit Sallittuja (tyhjä tarkoittaa ei kontrollia)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Myyntivero(%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 @@ -8835,7 +9035,7 @@ msgstr "Sekalaiset" #. module: account #: help:res.partner,debit:0 msgid "Total amount you have to pay to this supplier." -msgstr "Kokonaismaksun määrä joka sinun täytyy maksaa toimittajalle" +msgstr "Kokonaisarvo joka pitää maksaa toimittajalle." #. module: account #: model:process.node,name:account.process_node_analytic0 @@ -8854,7 +9054,7 @@ msgstr "Päiväkirjan nimi" #: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" -msgstr "Merkintä \"%s\" ei ole kelvollinen!" +msgstr "Kirjaus \"%s\" ei ole sallittu!" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -8871,7 +9071,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_invoice msgid "Invoicing & Payments" -msgstr "" +msgstr "Laskutus ja maksut" #. module: account #: help:account.invoice,internal_number:0 @@ -8889,7 +9089,7 @@ msgstr "Kulut" #. module: account #: help:account.chart,fiscalyear:0 msgid "Keep empty for all open fiscal years" -msgstr "Jätä tyhjäksi niin käytetään kaikkia avoimia kirjanpitovuosia" +msgstr "Jätä tyhjäksi kaikille avoimille tilikausille" #. module: account #: help:account.move.line,amount_currency:0 @@ -8897,7 +9097,7 @@ msgid "" "The amount expressed in an optional other currency if it is a multi-currency " "entry." msgstr "" -"Summa on ilmoitettu valinnaisessa toisessa valuutassa jos tämä on " +"Summa on ilmoitettu valinnaisessa toisessa valuutassa, jos kyseessä on " "monivaluuttainen merkintä." #. module: account @@ -8953,13 +9153,13 @@ msgstr "" #. module: account #: model:process.transition,note:account.process_transition_validentries0 msgid "Accountant validates the accounting entries coming from the invoice." -msgstr "" +msgstr "Kirjanpitäjä vahvistaa laskulta tulevat laskutuskirjaukset." #. module: account #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open msgid "Reconciled entries" -msgstr "Suoritetut merkinnät" +msgstr "Täsmäytetyt kirjaukset" #. module: account #: code:addons/account/account.py:2334 @@ -8981,7 +9181,7 @@ msgstr "Pakota jakso" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "" +msgstr "Tulosta kumppanin tilin saldo" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9021,12 +9221,12 @@ msgstr "Tuntematon" #: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" -msgstr "Avauspäiväkirja" +msgstr "Avauskirjausten päiväkirja" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 msgid "Draft invoices are checked, validated and printed." -msgstr "Luonnoslaskut on tarkistettu, hyväksytty ja tulostettu." +msgstr "Laskuehdotukset on tarkistettu, vahvistettu ja tulostettu." #. module: account #: field:account.bank.statement,message_is_follower:0 @@ -9048,11 +9248,15 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"Konfigurointivirhe\n" +"Et voi valita tilityyppiä, jolla on jaksotusmenetelmänä muu kuin \"Ei " +"täsmäytetä\" tileille, jotka ovat sisäiseltä tyypiltään \"Ostovelka\" tai " +"\"Saatava\"." #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "Yhtiöllä on tilikausi" #. module: account #: help:account.tax,child_depend:0 @@ -9089,7 +9293,7 @@ msgstr "" #: field:account.invoice,move_lines:0 #: field:account.move.reconcile,line_id:0 msgid "Entry Lines" -msgstr "Merkitärivit" +msgstr "Kirjausrivit" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button @@ -9117,7 +9321,7 @@ msgstr "" #: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" -msgstr "" +msgstr "Myyntihyvitysten päiväkirja" #. module: account #: view:account.move:0 @@ -9143,7 +9347,7 @@ msgstr "Rekisteröiy maksu" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "" +msgstr "Sulje tilikauden ja jaksojen tilat" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 @@ -9196,7 +9400,7 @@ msgstr "" #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "Näytä tiedot" #. module: account #: code:addons/account/account.py:3203 @@ -9215,7 +9419,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "Omat viennit" +msgstr "Omat kirjaukset" #. module: account #: help:account.invoice,state:0 @@ -9230,6 +9434,14 @@ msgid "" "related journal entries may or may not be reconciled. \n" "* The 'Cancelled' status is used when user cancel invoice." msgstr "" +" * Tila \"Ehdotus\" on alussa laskulla, kun käyttäjä on luonut uuden " +"vahvistamattoman laskun.\n" +"* Tila \"Proforma\" laskulla on, jos sille ei ole luotu laskunumeroa.\n" +"* Tila \"Avoin\" on käytössä, kun käyttäjä luo laskun ja sille generoidaan " +"laskunumero. Lasku säilyy avoimena, kunnes se on maksettu. \n" +"* Tila \"Maksettu\" asetetaan automaattisesti, kun lasku on maksettu. " +"Vastaavat päiväkirjaviennit voivat tai eivät olla täsmäytettyjä. \n" +"* Tila \"Peruttu\" asetetaan laskulle, kun käyttäjä peruuttaa sen." #. module: account #: field:account.period,date_stop:0 @@ -9307,7 +9519,7 @@ msgstr "Kokonaisluotto" #. module: account #: model:process.transition,note:account.process_transition_suppliervalidentries0 msgid "Accountant validates the accounting entries coming from the invoice. " -msgstr "" +msgstr "Kirjanpitäjä vahvistaa laskulta tulevat laskutuskirjaukset. " #. module: account #: field:account.subscription,period_total:0 @@ -9327,13 +9539,13 @@ msgstr "Saatavien tilit" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Toimittajan hyvityslaskujen numerointi" #. module: account #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "Lasku on jo täsmäytetty." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9363,6 +9575,7 @@ msgstr "Saatavat tili" #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" +"Kirjausten täsmäytyksessä yrityksen pitää olla sama kaikissa vienneissä." #. module: account #: field:account.account,balance:0 @@ -9407,7 +9620,7 @@ msgstr "Näytä tili" #: model:account.account.type,name:account.data_account_type_payable #: selection:account.entries.report,type:0 msgid "Payable" -msgstr "Maksettavat" +msgstr "Ostovelka" #. module: account #: view:board.board:0 @@ -9423,12 +9636,12 @@ msgstr "Selitys" #. module: account #: model:process.transition,note:account.process_transition_entriesreconcile0 msgid "Accounting entries are the first input of the reconciliation." -msgstr "" +msgstr "Kirjanpitoviennit ovat ensimmäinen syöte täsmäytyksessä." #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "Luo merkinnät tilikauden avaukselle" +msgstr "Luo avausviennit tilikaudelle" #. module: account #: report:account.third_party_ledger:0 @@ -9446,7 +9659,7 @@ msgstr "" #: model:process.node,note:account.process_node_manually0 #: model:process.transition,name:account.process_transition_invoicemanually0 msgid "Manual entry" -msgstr "Käsin tehty vienti" +msgstr "Manuaalikirjaus" #. module: account #: report:account.general.ledger:0 @@ -9492,7 +9705,7 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Tällä asiakkaalle ei ole myöhässä olevia tapahtumia." #. module: account #: help:account.tax,account_paid_id:0 @@ -9548,7 +9761,7 @@ msgstr "Yleisraportti" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Oletusmyyntivero" #. module: account #: report:account.overdue:0 @@ -9569,14 +9782,14 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "" +msgstr "Asiakas- ja toimittajalaskut" #. module: account #: model:process.node,note:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_paymentorderbank0 #: model:process.transition,name:account.process_transition_paymentreconcile0 msgid "Payment entries" -msgstr "Maksuviennit" +msgstr "Maksukirjaukset" #. module: account #: selection:account.entries.report,month:0 @@ -9600,7 +9813,7 @@ msgstr "Ennakkomaksu" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "" +msgstr "Analyyttisen tilin saldo" #. module: account #: report:account.account.balance:0 @@ -9661,6 +9874,11 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" +"Valitse \"Myynti\" asiakaslaskujen päiväkirjaksi, \"Osto\" " +"toimittajalaskujen päiväkirjaksi, \"Käteinen\" tai \"Pankki\" päiväkirjaksi " +"asiakas- tai toimittajasuorituksille. Valitse \"Yleinen\" sekalaisille " +"kirjauksille ja \"Avaus-/Sulkemistilanteet\" uuden tilikauden " +"avauskirjauksille." #. module: account #: view:account.subscription:0 @@ -9676,7 +9894,7 @@ msgstr "Eräpäivä" #. module: account #: view:account.subscription:0 msgid "Entry Subscription" -msgstr "Ennakkomaksun merkintä" +msgstr "Kirjauksen merkintä" #. module: account #: report:account.account.balance:0 @@ -9720,7 +9938,7 @@ msgstr "" #: view:account.invoice.report:0 #: model:process.node,name:account.process_node_supplierdraftinvoices0 msgid "Draft Invoices" -msgstr "Luonnoslaskut" +msgstr "Laskuehdotukset" #. module: account #: view:cash.box.in:0 @@ -9733,7 +9951,7 @@ msgstr "" #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "Suorittamaton" +msgstr "Täsmäyttämätön" #. module: account #: code:addons/account/account_invoice.py:922 @@ -9744,7 +9962,7 @@ msgstr "Epäkelpo loppusumma!" #. module: account #: field:account.journal,sequence_id:0 msgid "Entry Sequence" -msgstr "Merkinnän sarja" +msgstr "Kirjaussarja" #. module: account #: model:ir.actions.act_window,help:account.action_account_period_tree @@ -9778,7 +9996,7 @@ msgstr "Analyyttisiltä tileiltä" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Konfiguroi tilikausi" #. module: account #: field:account.period,name:0 @@ -9850,12 +10068,12 @@ msgid "" "This account will be used instead of the default one as the payable account " "for the current partner" msgstr "" -"Tätä tiliä käytetään oletustilin sijasta tämän kumppanin maksettaville." +"Tätä tiliä käytetään oletustilin sijasta ostovelkoina tälle kumppanille." #. module: account #: field:account.period,special:0 msgid "Opening/Closing Period" -msgstr "Avaava/Sulkeva Jakso" +msgstr "Avaava/päättävä jakso" #. module: account #: field:account.account,currency_id:0 @@ -9896,7 +10114,7 @@ msgstr "Kredit" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "Laskuehdotus " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -9906,7 +10124,7 @@ msgstr "Yleinen päiväkirja" #. module: account #: view:account.model:0 msgid "Journal Entry Model" -msgstr "" +msgstr "Päiväkirjan kirjauksen malli" #. module: account #: code:addons/account/account.py:1073 @@ -9964,7 +10182,7 @@ msgstr "Summa ilman veroa" #: model:ir.ui.menu,name:account.menu_action_account_period #: model:ir.ui.menu,name:account.next_id_23 msgid "Periods" -msgstr "Jaksot" +msgstr "Kaudet" #. module: account #: field:account.invoice.report,currency_rate:0 @@ -9991,7 +10209,7 @@ msgstr "Huhtikuu" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 msgid "Profit (Loss) to report" -msgstr "" +msgstr "Raportoitava voitto (tappio)" #. module: account #: code:addons/account/account_invoice.py:379 @@ -10007,7 +10225,7 @@ msgstr "Avaa täsmäytettäväksi" #. module: account #: field:account.account,parent_left:0 msgid "Parent Left" -msgstr "Ylävasen" +msgstr "Ylätaso vasen" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -10073,7 +10291,7 @@ msgstr "Sisäinen tyyppi" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Luo kirjaukset ennen" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10095,7 +10313,7 @@ msgstr "Valitse kausi" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Posted" -msgstr "Postitettu" +msgstr "Kirjattu" #. module: account #: report:account.account.balance:0 @@ -10147,19 +10365,19 @@ msgstr "Verolähde" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequences" -msgstr "Tilikausien sarjat" +msgstr "Tilikauden numeroinnit" #. module: account #: selection:account.financial.report,display_detail:0 msgid "No detail" -msgstr "" +msgstr "Ei tietoja" #. module: account #: field:account.account,unrealized_gain_loss:0 #: model:ir.actions.act_window,name:account.action_account_gain_loss #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses msgid "Unrealized Gain or Loss" -msgstr "" +msgstr "Toteutumaton voitto tai tappio" #. module: account #: view:account.move:0 @@ -10194,7 +10412,7 @@ msgstr "Yhteensä" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "" +msgstr "Ei voi %s laskuehdotusta/proformalaskua/peruutusta." #. module: account #: field:account.tax,account_analytic_paid_id:0 @@ -10258,7 +10476,7 @@ msgstr "Yritys" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form msgid "Define Recurring Entries" -msgstr "Määrittele toistuvat viennit" +msgstr "Määrittele toistuvat kirjaukset" #. module: account #: field:account.entries.report,date_maturity:0 @@ -10278,7 +10496,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "Täsmäyttämättömät viennit" +msgstr "Täsmäyttämättömät kirjaukset" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10296,17 +10514,17 @@ msgstr "Luo kuukausijaksot" #. module: account #: field:account.tax.code.template,sign:0 msgid "Sign For Parent" -msgstr "" +msgstr "Ylätason merkki" #. module: account #: model:ir.model,name:account.model_account_balance_report msgid "Trial Balance Report" -msgstr "" +msgstr "Koetaseraportti" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree msgid "Draft statements" -msgstr "Luonnostiliotteet" +msgstr "Tiliote-ehdotukset" #. module: account #: model:process.transition,note:account.process_transition_statemententries0 @@ -10379,12 +10597,12 @@ msgstr "Laskun tila on valmis" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Hallitse asiakkaan maksuseurantaa" #. module: account #: model:ir.model,name:account.model_report_account_sales msgid "Report of the Sales by Account" -msgstr "" +msgstr "Myyntiraportti tileittäin" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account @@ -10441,12 +10659,12 @@ msgstr "Laskurivit" #. module: account #: help:account.model.line,quantity:0 msgid "The optional quantity on entries." -msgstr "" +msgstr "Valinnainen määrä kirjauksia." #. module: account #: field:account.automatic.reconcile,reconciled:0 msgid "Reconciled transactions" -msgstr "Suoritetut tapahtumat" +msgstr "Täsmäyttämättömät tapahtumat" #. module: account #: model:ir.model,name:account.model_report_account_receivable @@ -10462,7 +10680,7 @@ msgstr "" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Partner Payment Term" -msgstr "Kumppani maksutermi" +msgstr "Kumppanin maksuehto" #. module: account #: field:temp.range,name:0 @@ -10533,7 +10751,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_aged_receivable_graph #: view:report.aged.receivable:0 msgid "Aged Receivable" -msgstr "" +msgstr "Erääntynyt saatava" #. module: account #: field:account.tax,applicable_type:0 @@ -10543,13 +10761,13 @@ msgstr "" #. module: account #: help:account.move.line,currency_id:0 msgid "The optional other currency if it is a multi-currency entry." -msgstr "Valinnainen toinen valuutta jos merkintä on monivaluuttainen." +msgstr "Valinnainen toinen valuutta, jos merkintä on monivaluuttainen." #. module: account #: model:process.transition,note:account.process_transition_invoiceimport0 msgid "" "Import of the statement in the system from a supplier or customer invoice" -msgstr "" +msgstr "Tuo toimittaja- tai asiakaslaskulta ilmoitus/tieto järjestelmään" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing @@ -10560,7 +10778,7 @@ msgstr "Laskutus" #: view:account.account:0 #: view:account.analytic.account:0 msgid "Parent Account" -msgstr "" +msgstr "Ylätason tili" #. module: account #: view:report.account.receivable:0 @@ -10580,7 +10798,7 @@ msgstr "Jäljellä olevan määrän eräpäivä." #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "" +msgstr "Kirjausten esitysjärjestys" #. module: account #: code:addons/account/account_invoice.py:1546 @@ -10697,6 +10915,8 @@ msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." msgstr "" +"Asiakkaalle tai toimittajalle asetettua tiliä ei voi poistaa tai muuttaa " +"sitä ei-aktiiviseksi." #. module: account #: model:ir.model,name:account.model_validate_account_move_lines @@ -10712,12 +10932,12 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 msgid "Invoice's state is Done." -msgstr "Laskun tila on valmis" +msgstr "Laskun tila on valmis." #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 msgid "As soon as the reconciliation is done, the invoice can be paid." -msgstr "Kun täsmäytys on tehty, lasku voidaan maksaa" +msgstr "Kun täsmäytys on tehty, lasku voidaan maksaa." #. module: account #: code:addons/account/wizard/account_change_currency.py:59 @@ -10733,18 +10953,18 @@ msgstr "Hae tilipohjia" #. module: account #: view:account.invoice.tax:0 msgid "Manual Invoice Taxes" -msgstr "Laskuta verot manuaalisesti" +msgstr "Manuaaliset laskun verot" #. module: account #: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "" +msgstr "Toimittajan maksuehdossa ei ole maksuehtoriviä." #. module: account #: field:account.account,parent_right:0 msgid "Parent Right" -msgstr "Yläoikea" +msgstr "Ylätaso oikea" #. module: account #. openerp-web @@ -10804,7 +11024,7 @@ msgstr "Tilimalli" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "Tappio" #. module: account #: selection:account.entries.report,month:0 @@ -10819,7 +11039,7 @@ msgstr "Helmikuu" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "Suljetaan kassakoneen numerot" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -10876,7 +11096,7 @@ msgstr "Tuotemallin kustannustili" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Asiakkaan maksuehto" #. module: account #: help:accounting.report,label_filter:0 diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index 62570cda221..1af4c3f3788 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -13,14 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:25+0000\n" -"X-Generator: Launchpad (build 16761)\n" - -#. module: account -#: code:addons/account/wizard/account_fiscalyear_close.py:41 -#, python-format -msgid "End of Fiscal Year Entry" -msgstr "Ecriture de fin d'exercice comptable" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -1273,7 +1267,7 @@ msgid "" " " msgstr "" "

\n" -" Cliquer pour ajouter un compte\n" +" Cliquez pour ajouter un compte.\n" "

\n" " Lors de transactions impliquant plusieurs devises, vous " "pouvez perdre ou gagner\n" @@ -1284,6 +1278,7 @@ msgstr "" " transactions étaient passées aujourd'hui. Concerne seulement " "les comptes\n" " ayant une deuxième devise.\n" +"

\n" " " #. module: account @@ -1380,8 +1375,8 @@ msgid "" "

\n" " " msgstr "" -"< class=\"oe_view_nocontent_create\">\n" -" Cliquer pour créer un nouvel historique de trésorerie\n" +"

\n" +" Cliquez pour créer un nouvel historique de trésorerie.\n" "

\n" " Un registre de trésorerie vous permet de gérer les entrées " "de trésorerie dans votre journal de \n" @@ -1887,7 +1882,7 @@ msgstr "Recherche d'un relevé bancaire" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Ecritures brouillon" +msgstr "Écritures brouillon" #. module: account #: view:account.chart.template:0 @@ -1947,7 +1942,7 @@ msgid "" " " msgstr "" "

\n" -" Cliquer pour définir un nouveau type de compte.\n" +" Cliquez pour définir un nouveau type de compte.\n" "

\n" " Le type de compte est utilisé pour déterminer comment un " "compte est utilisé dans\n" @@ -2279,7 +2274,7 @@ msgid "" " " msgstr "" "

\n" -" Cliquer pour enregistrer une nouvelle facture fournisseur.\n" +" Cliquez pour enregistrer une nouvelle facture fournisseur.\n" "

\n" " Vous pouvez contrôler la facture de votre fournisseur " "selon\n" @@ -2350,7 +2345,7 @@ msgid "" " " msgstr "" "

\n" -" Cliquer pour enregistrer un relevé de compte.\n" +" Cliquez pour enregistrer un relevé de compte.\n" "

\n" " Un relevé de compte est un résumé de toutes vos " "transactions financières\n" @@ -3025,6 +3020,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliquez pour ajouter une écriture.\n" +"

\n" +"Une écriture contient plusieurs lignes de journal, chacune étant une " +"transaction au débit ou au crédit.\n" +"

\n" +"OpenERP crée automatiquement une écriture pour chaque\n" +"pièce comptable : facture, avoir, paiement fournisseur, relevé de compte, " +"etc.\n" +"Vous ne devriez donc ajouter manuellement des écritures que pour\n" +"les \"opérations diverses\".\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -3529,8 +3537,8 @@ msgid "" "Tax base different!\n" "Click on compute to update the tax base." msgstr "" -"Base de taxe différente!\n" -"Cliquer sur calculer pour mettre à jour la base des taxes." +"Base de taxe différente !\n" +"Cliquez sur calculer pour mettre à jour la base des taxes." #. module: account #: field:account.partner.ledger,page_split:0 @@ -4173,7 +4181,7 @@ msgid "" " " msgstr "" "

\n" -" Cliquer pour créer une facture client.\n" +" Cliquez pour créer une facture client.\n" "

\n" " La gestion électronique des factures d'OpenERP facilite le " "suivi des\n" @@ -4268,7 +4276,7 @@ msgstr "Montant de la taxe" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "Ecritures non léttrées" +msgstr "Écritures non lettrées" #. module: account #: selection:account.account.type,close_method:0 @@ -4560,7 +4568,7 @@ msgstr "Ensemble complet de taxes" #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 msgid "Name" -msgstr "Decription" +msgstr "Description" #. module: account #: code:addons/account/installer.py:115 @@ -4588,7 +4596,7 @@ msgstr "Le journal doit avoir un compte de crédit et crédit par défaut" #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "Configurer les compte bancaires" +msgstr "Configurer les comptes bancaires" #. module: account #: xsl:account.transfer:0 @@ -4661,7 +4669,7 @@ msgstr "Comptabilité" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current year" -msgstr "Ecritures avec période dans l'année en cours" +msgstr "Écritures avec période dans l'année en cours" #. module: account #: field:account.account,child_consol_ids:0 @@ -4823,7 +4831,7 @@ msgstr "" #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "Ecritures validées" +msgstr "Écritures validées" #. module: account #: field:account.move.line,blocked:0 @@ -4914,6 +4922,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliquez pour créer un nouveau compte bancaire.\n" +"

\n" +"Configurez les comptes bancaires de votre entreprise, et sélectionnez\n" +"ceux qui doivent apparaître en pied des rapports.\n" +"

\n" +"Si vous utilisez l'application de comptabilité d'OpenERP, des journaux\n" +"et des comptes seront créés automatiquement à partir de ces données.\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4963,6 +4981,8 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" +"Aucun plan comptable disponible : vous devriez en créer un dans " +"Configuration\\Modèles\\Comptes" #. module: account #: field:account.entries.report,product_uom_id:0 @@ -5279,7 +5299,7 @@ msgstr "Modèles récurrents" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Sous taxes" #. module: account #: xsl:account.transfer:0 @@ -5759,7 +5779,7 @@ msgstr "Balance Analytique -" #: field:account.vat.declaration,target_move:0 #: field:accounting.report,target_move:0 msgid "Target Moves" -msgstr "Mouvements Cibles" +msgstr "Mouvements cibles" #. module: account #: code:addons/account/account.py:1454 @@ -5967,6 +5987,12 @@ msgstr "Lettrage automatique" msgid "Amount" msgstr "Montant" +#. module: account +#: code:addons/account/wizard/account_fiscalyear_close.py:41 +#, python-format +msgid "End of Fiscal Year Entry" +msgstr "Écriture de fin d'exercice" + #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 #: model:process.transition,name:account.process_transition_paymentorderreconcilation0 @@ -6095,7 +6121,7 @@ msgstr "" #. module: account #: view:account.journal:0 msgid "Entry Controls" -msgstr "Contrôle des ecritures" +msgstr "Contrôle des écritures" #. module: account #: view:account.analytic.chart:0 @@ -6674,6 +6700,8 @@ msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" +"Vous ne pouvez pas valider cette écriture comptable car le compte \"%s\" " +"n'appartient pas au plan comptable \"%s\"." #. module: account #: view:account.financial.report:0 @@ -6824,6 +6852,8 @@ msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Vous ne pouvez pas annuler une facture qui est partiellement payée. Vous " +"devez d'abord annuler le lettrage des lignes de paiement correspondantes." #. module: account #: field:product.template,taxes_id:0 @@ -6858,6 +6888,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliquez pour enregistrer un remboursement reçu d'un fournisseur.\n" +"

\n" +"Au lieu de créer ce remboursement manuellement, vous pouvez le\n" +"générer et le rapprocher directement depuis la facture fournisseur " +"associée.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -7124,6 +7162,13 @@ msgid "" "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." msgstr "" +"Si vous avez défini des conditions de règlement, la date d'échéance sera " +"calculée automatiquement lors de la génération des écritures comptables. Les " +"conditions de règlement peuvent définir plusieurs échéances : par exemple " +"50% comptant, et 50% à un mois. Si vous voulez forcer une date d'échéance, " +"assurez-vous qu'aucune condition de règlement n'est indiquée sur la facture. " +"Le paiement se fait au comptant si les conditions de règlement et la date " +"d'échéance sont laissées vides." #. module: account #: code:addons/account/account.py:414 @@ -7754,7 +7799,7 @@ msgstr "" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "URL Paypal" #. module: account #: field:account.config.settings,module_account_voucher:0 @@ -7863,6 +7908,9 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Erreur de configuration !\n" +"Vous ne pouvez ajouter un compte fils à un autre compte que si ce dernier a " +"le type interne \"Vue\"." #. module: account #: model:ir.model,name:account.model_accounting_report @@ -8338,7 +8386,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "Ecritures non validées" +msgstr "Écritures non validées" #. module: account #: help:account.invoice.refund,date:0 @@ -8788,7 +8836,7 @@ msgstr "" #: view:account.analytic.line:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form msgid "Analytic Entries" -msgstr "Ecritures analytiques" +msgstr "Écritures analytiques" #. module: account #: view:account.analytic.account:0 @@ -9130,7 +9178,7 @@ msgstr "Types de compte" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Facture (n°${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1210 @@ -9199,6 +9247,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliquez pour créer un journal.\n" +"

\n" +"Un journal sert à enregistrer les transactions relatives à toute l'activité " +"comptable quotidienne.\n" +"

\n" +"Une entreprise utilise habituellement un journal pour chaque moyen de " +"paiement (espèces, comptes bancaires, chèques), un journal d'achats, un " +"journal de ventes, et un journal pour les autres informations.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state @@ -9447,6 +9506,8 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"Permet l'édition et l'impression de chèques.\n" +"Ceci installe le module account_check_writing." #. module: account #: model:res.groups,name:account.group_account_invoice @@ -9525,6 +9586,9 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Vous pouvez choisir ici le journal à utiliser pour la création de l'avoir. " +"Si vous laissez ce champ vide, l'avoir utilisera le même journal que la " +"facture actuelle." #. module: account #: help:account.bank.statement.line,sequence:0 @@ -9543,7 +9607,7 @@ msgstr "" #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open msgid "Reconciled entries" -msgstr "Écritures rapprochées" +msgstr "Écritures lettrées" #. module: account #: code:addons/account/account.py:2334 @@ -9555,7 +9619,7 @@ msgstr "Modèle non cohérent !" #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Modèle de taxe" #. module: account #: field:account.invoice.refund,period:0 @@ -9575,6 +9639,10 @@ msgid "" "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Vous ne pouvez pas effectuer cette modification sur une écriture lettrée. " +"Vous pouvez uniquement changer certains champs légalement libres, ou bien " +"vous devez d'abord annuler le lettrage l'entrée.\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -9702,7 +9770,7 @@ msgstr "Période du" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Unité monétaire" #. module: account #: code:addons/account/account.py:3195 @@ -9725,6 +9793,9 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Une fois les factures brouillons confirmées, vous ne pourrez plus les " +"modifier. Un numéro unique est attribué à chaque facture, et des écritures " +"comptables sont créées dans votre plan de comptes." #. module: account #: model:process.node,note:account.process_node_bankstatement0 @@ -9763,7 +9834,7 @@ msgstr "Créer facture" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Configurer les données de comptabilité" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 @@ -9927,7 +9998,7 @@ msgstr "" #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "La facture est déjà lettrée." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -10156,7 +10227,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Tâches périodiques" #. module: account #: view:account.invoice.report:0 @@ -10811,7 +10882,7 @@ msgstr "Total" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "Impossible de %s une facture brouillon/proforma/annulée" +msgstr "Impossible de %s une facture brouillon/proforma/annulée." #. module: account #: field:account.tax,account_analytic_paid_id:0 @@ -11004,7 +11075,7 @@ msgstr "L'état de la facture est \"Terminé\"" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Gérer les relances de paiement client" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -11097,7 +11168,7 @@ msgstr "Intervalle" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "Ecritures analytiques relatives au journal des achats." +msgstr "Écritures analytiques relatives à un journal d'achats." #. module: account #: help:account.account,type:0 diff --git a/addons/account/i18n/fr_BE.po b/addons/account/i18n/fr_BE.po index c6c22362a6e..221508f9f48 100644 --- a/addons/account/i18n/fr_BE.po +++ b/addons/account/i18n/fr_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gl.po b/addons/account/i18n/gl.po index 92c313a1487..6207b03a116 100644 --- a/addons/account/i18n/gl.po +++ b/addons/account/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po index 42d3c49d929..769f58a6ff0 100644 --- a/addons/account/i18n/gu.po +++ b/addons/account/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/he.po b/addons/account/i18n/he.po index 493fe5bb25b..4097f45c3b7 100644 --- a/addons/account/i18n/he.po +++ b/addons/account/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -459,7 +459,7 @@ msgstr "" #: field:account.tax.template,chart_template_id:0 #: field:wizard.multi.charts.accounts,chart_template_id:0 msgid "Chart Template" -msgstr "" +msgstr "תבנית תרשים" #. module: account #: selection:account.invoice.refund,filter_refund:0 @@ -497,7 +497,7 @@ msgstr "" #. module: account #: field:accounting.report,enable_filter:0 msgid "Enable Comparison" -msgstr "" +msgstr "אפשר השוואה" #. module: account #: view:account.analytic.line:0 @@ -602,7 +602,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state #: model:ir.ui.menu,name:account.menu_wizard_fy_close_state msgid "Close a Fiscal Year" -msgstr "" +msgstr "סגור שנת כספים" #. module: account #: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 @@ -625,7 +625,7 @@ msgstr "" #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "3 Monthly" -msgstr "" +msgstr "3 חודשי" #. module: account #: field:ir.sequence,fiscal_ids:0 @@ -708,7 +708,7 @@ msgstr "" #: view:account.period:0 #: view:account.period.close:0 msgid "Close Period" -msgstr "" +msgstr "סגור תקופה" #. module: account #: model:ir.model,name:account.model_account_common_partner_report @@ -760,7 +760,7 @@ msgstr "" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "צור החזר" #. module: account #: constraint:account.move.line:0 @@ -817,7 +817,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_charts msgid "Charts" -msgstr "" +msgstr "תרשימים" #. module: account #: code:addons/account/project/wizard/project_account_analytic_line.py:47 @@ -917,7 +917,7 @@ msgstr "" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "קוד ושם החשבון" #. module: account #: selection:account.entries.report,month:0 @@ -931,7 +931,7 @@ msgstr "" #. module: account #: selection:account.subscription,period_type:0 msgid "days" -msgstr "" +msgstr "ימים" #. module: account #: help:account.account.template,nocreate:0 @@ -966,7 +966,7 @@ msgstr "" #: view:account.payment.term:0 #: field:account.payment.term.line,value:0 msgid "Computation" -msgstr "" +msgstr "חישוב" #. module: account #: field:account.journal.cashbox.line,pieces:0 @@ -978,7 +978,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_tax_code_tree #: model:ir.ui.menu,name:account.menu_action_tax_code_tree msgid "Chart of Taxes" -msgstr "" +msgstr "תרשים מיסים" #. module: account #: view:account.fiscalyear:0 @@ -1004,7 +1004,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Approve" -msgstr "" +msgstr "אשר" #. module: account #: view:account.invoice:0 @@ -1096,7 +1096,7 @@ msgstr "" #: report:account.partner.balance:0 #: field:account.period,code:0 msgid "Code" -msgstr "" +msgstr "קוד" #. module: account #: view:account.config.settings:0 @@ -1141,7 +1141,7 @@ msgstr "" #. module: account #: field:account.bank.accounts.wizard,acc_name:0 msgid "Account Name." -msgstr "" +msgstr "שם החשבון." #. module: account #: field:account.journal,with_last_closing_balance:0 @@ -1234,7 +1234,7 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Bank" -msgstr "" +msgstr "בנק" #. module: account #: field:account.period,date_start:0 @@ -1290,7 +1290,7 @@ msgstr "" #. module: account #: view:account.invoice.cancel:0 msgid "Cancel Invoices" -msgstr "" +msgstr "בטל חשבוניות" #. module: account #: help:account.journal,code:0 @@ -1335,7 +1335,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile,trans_nbr:0 msgid "# of Transaction" -msgstr "" +msgstr "# פעולות העברה" #. module: account #: report:account.general.ledger:0 @@ -1355,7 +1355,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:account.journal:0 msgid "Others" -msgstr "" +msgstr "אחרים" #. module: account #: view:account.subscription:0 @@ -1388,7 +1388,7 @@ msgstr "" #: model:ir.model,name:account.model_account_account #: field:report.account.sales,account_id:0 msgid "Account" -msgstr "" +msgstr "חשבון" #. module: account #: field:account.tax,include_base_amount:0 @@ -1400,7 +1400,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_entries_report_all #: model:ir.ui.menu,name:account.menu_action_account_entries_report_all msgid "Entries Analysis" -msgstr "" +msgstr "ניתוח רשומות" #. module: account #: field:account.account,level:0 @@ -1533,7 +1533,7 @@ msgstr "" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (העתק)" #. module: account #: report:account.account.balance:0 @@ -1566,12 +1566,12 @@ msgstr "" #. module: account #: view:account.model:0 msgid "Create entries" -msgstr "" +msgstr "צור רשומות" #. module: account #: field:account.entries.report,nbr:0 msgid "# of Items" -msgstr "" +msgstr "# פריטים" #. module: account #: field:account.automatic.reconcile,max_amount:0 @@ -1592,7 +1592,7 @@ msgstr "" #: field:account.config.settings,code_digits:0 #: field:wizard.multi.charts.accounts,code_digits:0 msgid "# of Digits" -msgstr "" +msgstr "# ספרות" #. module: account #: field:account.journal,entry_posted:0 @@ -1609,7 +1609,7 @@ msgstr "" #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "" +msgstr "הערת אשראי" #. module: account #: view:account.config.settings:0 @@ -1624,7 +1624,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "# of Entries " -msgstr "" +msgstr "# רשומות " #. module: account #: help:account.fiscal.position,active:0 @@ -1664,7 +1664,7 @@ msgstr "" #: selection:account.fiscalyear,state:0 #: selection:account.period,state:0 msgid "Closed" -msgstr "" +msgstr "סגור" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries @@ -1694,7 +1694,7 @@ msgstr "" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "הגדרות מתקדמות" #. module: account #: view:account.bank.statement:0 @@ -1732,7 +1732,7 @@ msgstr "" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "Date/Code" -msgstr "" +msgstr "תאריך/קוד" #. module: account #: field:account.analytic.line,general_account_id:0 @@ -1825,7 +1825,7 @@ msgstr "" #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 ימים" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -1910,7 +1910,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "משך" #. module: account #: view:account.bank.statement:0 @@ -1926,7 +1926,7 @@ msgstr "" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "" +msgstr "כל השותפים" #. module: account #: view:account.analytic.chart:0 @@ -1936,7 +1936,7 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "" +msgstr "הפניית לקוח" #. module: account #: help:account.tax,base_code_id:0 @@ -1973,7 +1973,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile,credit:0 msgid "Credit amount" -msgstr "" +msgstr "סכום האשראי" #. module: account #: field:account.bank.statement,message_ids:0 @@ -2095,12 +2095,12 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form msgid "Entries By Line" -msgstr "" +msgstr "רשומות לפי שורה" #. module: account #: field:account.vat.declaration,based_on:0 msgid "Based on" -msgstr "" +msgstr "מבוסס על" #. module: account #: model:ir.actions.act_window,help:account.action_bank_statement_tree @@ -2171,7 +2171,7 @@ msgstr "" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "עוקבים" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal @@ -2200,7 +2200,7 @@ msgstr "" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "סגור שנת כספים" #. module: account #. openerp-web @@ -2248,7 +2248,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "ניהול נכסים" #. module: account #: view:account.account:0 @@ -2313,7 +2313,7 @@ msgstr "" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Draft" -msgstr "" +msgstr "טיוטה" #. module: account #: field:account.move.reconcile,line_partial_ids:0 @@ -2421,7 +2421,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Customer Code" -msgstr "" +msgstr "קוד לקוח" #. module: account #: view:account.account.type:0 @@ -2474,12 +2474,12 @@ msgstr "" #. module: account #: field:account.change.currency,currency_id:0 msgid "Change to" -msgstr "" +msgstr "שנה ל" #. module: account #: view:account.entries.report:0 msgid "# of Products Qty " -msgstr "" +msgstr "# כמות מוצרים " #. module: account #: model:ir.model,name:account.model_product_template @@ -2556,7 +2556,7 @@ msgstr "" #. module: account #: field:account.invoice.report,account_line_id:0 msgid "Account Line" -msgstr "" +msgstr "שורה בחשבון" #. module: account #: view:account.addtmpl.wizard:0 @@ -2577,7 +2577,7 @@ msgstr "" #: view:account.move:0 #: model:ir.model,name:account.model_account_move msgid "Account Entry" -msgstr "" +msgstr "רשומת החשבון" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 @@ -2622,7 +2622,7 @@ msgstr "" #. module: account #: view:account.common.report:0 msgid "Filters" -msgstr "" +msgstr "מסננים" #. module: account #: model:process.node,note:account.process_node_draftinvoices0 @@ -2660,7 +2660,7 @@ msgstr "" #: model:account.payment.term,name:account.account_payment_term_advance #: model:account.payment.term,note:account.account_payment_term_advance msgid "30% Advance End 30 Days" -msgstr "" +msgstr "מקדמה 30% לאחר 30 ימים" #. module: account #: view:account.entries.report:0 @@ -2671,7 +2671,7 @@ msgstr "" #: field:account.invoice.tax,base_code_id:0 #: field:account.tax.template,base_code_id:0 msgid "Base Code" -msgstr "" +msgstr "קוד בסיס" #. module: account #: help:account.invoice.tax,sequence:0 @@ -2695,7 +2695,7 @@ msgstr "" #: view:account.invoice.confirm:0 #: model:ir.actions.act_window,name:account.action_account_invoice_confirm msgid "Confirm Draft Invoices" -msgstr "" +msgstr "אשר חשבוניות טיוטה" #. module: account #: field:account.entries.report,day:0 @@ -2704,7 +2704,7 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,day:0 msgid "Day" -msgstr "" +msgstr "יום" #. module: account #: model:ir.actions.act_window,name:account.act_account_renew_view @@ -2730,7 +2730,7 @@ msgstr "" #. module: account #: view:res.partner:0 msgid "Bank Details" -msgstr "" +msgstr "פרטי בנק" #. module: account #: model:ir.actions.act_window,help:account.action_move_journal_line @@ -2826,7 +2826,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_account_form #: model:ir.ui.menu,name:account.menu_analytic msgid "Accounts" -msgstr "" +msgstr "חשבונות" #. module: account #: code:addons/account/account.py:3541 @@ -2851,12 +2851,12 @@ msgstr "" #: field:account.invoice.report,price_average:0 #: field:account.invoice.report,user_currency_price_average:0 msgid "Average Price" -msgstr "" +msgstr "מחיר ממוצע" #. module: account #: report:account.overdue:0 msgid "Date:" -msgstr "" +msgstr "תאריך:" #. module: account #: report:account.journal.period.print:0 @@ -2884,7 +2884,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Disc.(%)" -msgstr "" +msgstr "הנחה (%)" #. module: account #: report:account.general.ledger:0 @@ -2964,7 +2964,7 @@ msgstr "" #: view:account.move.line:0 #: view:accounting.report:0 msgid "Dates" -msgstr "" +msgstr "תאריכים" #. module: account #: field:account.chart.template,parent_id:0 @@ -2998,7 +2998,7 @@ msgstr "" #. module: account #: field:account.invoice.line,discount:0 msgid "Discount (%)" -msgstr "" +msgstr "הנחה (%)" #. module: account #: help:account.journal,entry_posted:0 @@ -3097,7 +3097,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_account_customer #: model:ir.ui.menu,name:account.menu_finance_receivables msgid "Customers" -msgstr "" +msgstr "לקוחות" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -3113,7 +3113,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "August" -msgstr "" +msgstr "אוגוסט" #. module: account #: field:accounting.report,debit_credit:0 @@ -3127,7 +3127,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "October" -msgstr "" +msgstr "אוקטובר" #. module: account #: help:account.move.line,quantity:0 @@ -3152,7 +3152,7 @@ msgstr "" #: field:product.category,property_account_expense_categ:0 #: field:product.template,property_account_expense:0 msgid "Expense Account" -msgstr "" +msgstr "חשבון הוצאות" #. module: account #: field:account.bank.statement,message_summary:0 @@ -3174,7 +3174,7 @@ msgstr "" #. module: account #: field:account.config.settings,date_stop:0 msgid "End date" -msgstr "" +msgstr "תאריך סיום" #. module: account #: field:account.invoice.tax,base_amount:0 @@ -3257,7 +3257,7 @@ msgstr "" #: model:process.process,name:account.process_process_invoiceprocess0 #: selection:report.invoice.created,type:0 msgid "Customer Invoice" -msgstr "" +msgstr "חשבונית לקוח" #. module: account #: model:ir.model,name:account.model_account_open_closed_fiscalyear @@ -3268,7 +3268,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "" +msgstr "טווח תאריכים" #. module: account #: view:account.period:0 @@ -3284,7 +3284,7 @@ msgstr "" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "דוחות החשבון" #. module: account #: field:account.payment.term,line_ids:0 @@ -3336,7 +3336,7 @@ msgstr "" #. module: account #: selection:account.tax,applicable_type:0 msgid "Always" -msgstr "" +msgstr "תמיד" #. module: account #: field:account.config.settings,module_account_accountant:0 @@ -3394,7 +3394,7 @@ msgstr "" #. module: account #: model:process.node,name:account.process_node_electronicfile0 msgid "Electronic File" -msgstr "" +msgstr "קובץ אלקטרוני" #. module: account #: field:account.move.line,reconcile:0 @@ -3657,7 +3657,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_period_tree #: model:ir.ui.menu,name:account.menu_action_account_period_close_tree msgid "Close a Period" -msgstr "" +msgstr "סגור תקופה" #. module: account #: view:account.bank.statement:0 @@ -3675,7 +3675,7 @@ msgstr "" #. module: account #: field:account.financial.report,display_detail:0 msgid "Display details" -msgstr "" +msgstr "הצג פרטים" #. module: account #: report:account.overdue:0 @@ -3725,7 +3725,7 @@ msgstr "" #: report:account.vat.declaration:0 #: field:account.vat.declaration,chart_tax_id:0 msgid "Chart of Tax" -msgstr "" +msgstr "תרשים מס" #. module: account #: view:account.journal:0 @@ -3786,7 +3786,7 @@ msgstr "" #. module: account #: view:account.chart:0 msgid "Account charts" -msgstr "" +msgstr "תרשימי החשבון" #. module: account #: view:cash.box.out:0 @@ -3834,12 +3834,12 @@ msgstr "" #: view:account.invoice:0 #: model:process.node,name:account.process_node_draftinvoices0 msgid "Draft Invoice" -msgstr "" +msgstr "חשבונית טיוטה" #. module: account #: view:account.config.settings:0 msgid "Options" -msgstr "" +msgstr "אפשרויות" #. module: account #: field:account.aged.trial.balance,period_length:0 @@ -3862,7 +3862,7 @@ msgstr "" #. module: account #: view:account.installer:0 msgid "Continue" -msgstr "" +msgstr "המשך" #. module: account #: view:account.invoice.report:0 @@ -3882,7 +3882,7 @@ msgstr "" #: view:account.addtmpl.wizard:0 #: model:ir.actions.act_window,name:account.action_account_addtmpl_wizard_form msgid "Create Account" -msgstr "" +msgstr "צור חשבון" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:62 @@ -3992,7 +3992,7 @@ msgstr "" #: selection:accounting.report,filter_cmp:0 #: field:analytic.entries.report,date:0 msgid "Date" -msgstr "" +msgstr "תאריך" #. module: account #: view:account.move:0 @@ -4028,12 +4028,12 @@ msgstr "" #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 msgid "All" -msgstr "" +msgstr "הכל" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reporting_budgets msgid "Budgets" -msgstr "" +msgstr "תקציבים" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -4052,7 +4052,7 @@ msgstr "" #: selection:accounting.report,filter:0 #: selection:accounting.report,filter_cmp:0 msgid "No Filters" -msgstr "" +msgstr "אין מסננים" #. module: account #: view:account.invoice.report:0 @@ -4146,7 +4146,7 @@ msgstr "" #. module: account #: field:analytic.entries.report,nbr:0 msgid "#Entries" -msgstr "" +msgstr "#רשומות" #. module: account #: view:account.state.open:0 @@ -4173,7 +4173,7 @@ msgstr "" #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 msgid "Name" -msgstr "" +msgstr "שם" #. module: account #: code:addons/account/installer.py:115 @@ -4324,7 +4324,7 @@ msgstr "" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "" +msgstr "הצג שותפים" #. module: account #: view:account.invoice:0 @@ -4334,7 +4334,7 @@ msgstr "" #. module: account #: model:account.financial.report,name:account.account_financial_report_assets0 msgid "Assets" -msgstr "" +msgstr "נכסים" #. module: account #: view:account.config.settings:0 @@ -4344,19 +4344,19 @@ msgstr "" #. module: account #: view:account.invoice.confirm:0 msgid "Confirm Invoices" -msgstr "" +msgstr "אשר חשבוניות" #. module: account #: selection:account.account,currency_mode:0 msgid "Average Rate" -msgstr "" +msgstr "שער ממוצע" #. module: account #: field:account.balance.report,display_account:0 #: field:account.common.account.report,display_account:0 #: field:account.report.general.ledger,display_account:0 msgid "Display Accounts" -msgstr "" +msgstr "הצג חשבונות" #. module: account #: view:account.state.open:0 @@ -4384,13 +4384,13 @@ msgstr "" #: view:account.config.settings:0 #: model:ir.ui.menu,name:account.menu_finance_configuration msgid "Configuration" -msgstr "" +msgstr "הגדרות" #. module: account #: model:account.payment.term,name:account.account_payment_term #: model:account.payment.term,note:account.account_payment_term msgid "30 Days End of Month" -msgstr "" +msgstr "30 ימים מסוף החודש" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_balance @@ -4437,7 +4437,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "" +msgstr "רשומות טיוטה" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4472,7 +4472,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Close CashBox" -msgstr "" +msgstr "סגור קופה" #. module: account #: model:ir.model,name:account.model_account_invoice_cancel @@ -4531,7 +4531,7 @@ msgstr "" #: field:report.account.sales,month:0 #: field:report.account_type.sales,month:0 msgid "Month" -msgstr "" +msgstr "חודש" #. module: account #: code:addons/account/account.py:668 @@ -4568,7 +4568,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Acc.Type" -msgstr "" +msgstr "סוג חשבון" #. module: account #: selection:account.journal,type:0 @@ -4578,7 +4578,7 @@ msgstr "" #. module: account #: field:account.account.template,note:0 msgid "Note" -msgstr "" +msgstr "פתק" #. module: account #: selection:account.financial.report,sign:0 @@ -4645,7 +4645,7 @@ msgstr "" #. module: account #: field:report.aged.receivable,name:0 msgid "Month Range" -msgstr "" +msgstr "טווח חודשים" #. module: account #: help:account.analytic.balance,empty_acc:0 @@ -4690,7 +4690,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_chart msgid "Account chart" -msgstr "" +msgstr "תרשים של החשבון" #. module: account #: field:account.invoice,reference_type:0 @@ -4706,7 +4706,7 @@ msgstr "" #: report:account.analytic.account.balance:0 #: report:account.central.journal:0 msgid "Account Name" -msgstr "" +msgstr "שם החשבון" #. module: account #: help:account.fiscalyear.close,report_name:0 @@ -4721,7 +4721,7 @@ msgstr "" #. module: account #: field:account.account,exchange_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "שער חליפין" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 @@ -4831,7 +4831,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Based On" -msgstr "" +msgstr "מבוסס על" #. module: account #: code:addons/account/account.py:3204 @@ -4857,7 +4857,7 @@ msgstr "" #. module: account #: xsl:account.transfer:0 msgid "Change" -msgstr "" +msgstr "שנה" #. module: account #: field:account.journal,type_control_ids:0 @@ -4879,7 +4879,7 @@ msgstr "" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Cancelled" -msgstr "" +msgstr "בוטל" #. module: account #: help:account.config.settings,group_proforma_invoices:0 @@ -4927,12 +4927,12 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Confirmed" -msgstr "" +msgstr "מאושר" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "" +msgstr "חשבונית שבוטלה" #. module: account #: view:account.invoice:0 @@ -4942,7 +4942,7 @@ msgstr "" #. module: account #: selection:account.bank.statement,state:0 msgid "New" -msgstr "" +msgstr "חדש" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -5046,7 +5046,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "או" #. module: account #: view:account.invoice.report:0 @@ -5084,7 +5084,7 @@ msgstr "" #. module: account #: view:account.addtmpl.wizard:0 msgid "Add" -msgstr "" +msgstr "הוסף" #. module: account #: selection:account.invoice,state:0 @@ -5135,7 +5135,7 @@ msgstr "" #: view:account.bank.statement:0 #: view:account.subscription:0 msgid "Compute" -msgstr "" +msgstr "חשב" #. module: account #: field:account.tax,type_tax_use:0 @@ -5158,7 +5158,7 @@ msgstr "" #: field:account.payment.term,active:0 #: field:account.tax,active:0 msgid "Active" -msgstr "" +msgstr "פעיל" #. module: account #: view:account.bank.statement:0 @@ -5173,7 +5173,7 @@ msgstr "" #: field:account.analytic.inverted.balance,date2:0 #: field:account.analytic.journal.report,date2:0 msgid "End of period" -msgstr "" +msgstr "סוף תקופה" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 @@ -5221,7 +5221,7 @@ msgstr "" #. module: account #: view:account.automatic.reconcile:0 msgid "Close" -msgstr "" +msgstr "סגור" #. module: account #: field:account.bank.statement.line,move_ids:0 @@ -5342,7 +5342,7 @@ msgstr "" #. module: account #: field:account.subscription.line,move_id:0 msgid "Entry" -msgstr "" +msgstr "רשומה" #. module: account #: field:account.tax,python_compute_inv:0 @@ -5370,7 +5370,7 @@ msgstr "" #: field:account.financial.report,children_ids:0 #: model:ir.model,name:account.model_account_financial_report msgid "Account Report" -msgstr "" +msgstr "דוח החשבון" #. module: account #: field:account.entries.report,year:0 @@ -5412,7 +5412,7 @@ msgstr "" #. module: account #: selection:account.subscription,period_type:0 msgid "month" -msgstr "" +msgstr "חודש" #. module: account #: view:account.move.line:0 @@ -5455,7 +5455,7 @@ msgstr "" #: view:analytic.entries.report:0 #: model:ir.actions.act_window,name:account.action_move_line_form msgid "Entries" -msgstr "" +msgstr "רשומות" #. module: account #: view:account.entries.report:0 @@ -5508,7 +5508,7 @@ msgstr "" #: field:cash.box.in,amount:0 #: field:cash.box.out,amount:0 msgid "Amount" -msgstr "" +msgstr "סכום" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:41 @@ -5670,7 +5670,7 @@ msgstr "" #: selection:account.period,state:0 #: selection:report.invoice.created,state:0 msgid "Open" -msgstr "" +msgstr "פתח" #. module: account #: view:account.config.settings:0 @@ -5702,7 +5702,7 @@ msgstr "" #: selection:account.invoice.report,type:0 #: selection:report.invoice.created,type:0 msgid "Customer Refund" -msgstr "" +msgstr "החזר לקוח" #. module: account #: field:account.tax,ref_tax_sign:0 @@ -5725,7 +5725,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "החזר טיוטה " #. module: account #: view:cash.box.in:0 @@ -5736,7 +5736,7 @@ msgstr "" #: view:account.payment.term.line:0 #: field:account.payment.term.line,value_amount:0 msgid "Amount To Pay" -msgstr "" +msgstr "סכום לתשלום" #. module: account #: help:account.partner.reconcile.process,to_reconcile:0 @@ -5770,7 +5770,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_change_currency #: model:ir.model,name:account.model_account_change_currency msgid "Change Currency" -msgstr "" +msgstr "שנה מטבע" #. module: account #: model:process.node,note:account.process_node_accountingentries0 @@ -5799,7 +5799,7 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "חשבוניות לקוח והחזרים" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5837,7 +5837,7 @@ msgstr "" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Normal Text" -msgstr "" +msgstr "טקסט רגיל" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 @@ -5873,7 +5873,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "החזר טיוטה" #. module: account #: view:account.analytic.chart:0 @@ -5985,7 +5985,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "" +msgstr "רשומות" #. module: account #: field:res.partner,debit:0 @@ -6112,12 +6112,12 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,nbr:0 msgid "# of Lines" -msgstr "" +msgstr "# שורות" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(עדכן)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6136,7 +6136,7 @@ msgstr "" #: field:accounting.report,filter:0 #: field:accounting.report,filter_cmp:0 msgid "Filter by" -msgstr "" +msgstr "סנן לפי" #. module: account #: code:addons/account/account.py:2334 @@ -6226,7 +6226,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree3 #: model:ir.ui.menu,name:account.menu_action_invoice_tree3 msgid "Customer Refunds" -msgstr "" +msgstr "החזרי לקוח" #. module: account #: field:account.account,foreign_balance:0 @@ -6296,7 +6296,7 @@ msgstr "" #. module: account #: field:account.entries.report,date_created:0 msgid "Date Created" -msgstr "" +msgstr "תאריך יצירה" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form @@ -6343,7 +6343,7 @@ msgstr "" #. module: account #: field:product.template,taxes_id:0 msgid "Customer Taxes" -msgstr "" +msgstr "מיסי לקוח" #. module: account #: help:account.model,name:0 @@ -6404,7 +6404,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_res_company msgid "Companies" -msgstr "" +msgstr "חברות" #. module: account #: view:account.invoice.report:0 @@ -6489,7 +6489,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Cancel" -msgstr "" +msgstr "ביטול" #. module: account #: selection:account.account,type:0 @@ -6669,7 +6669,7 @@ msgstr "" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "בטל" #. module: account #: selection:account.account,type:0 @@ -6832,7 +6832,7 @@ msgstr "" #: report:account.invoice:0 #: field:account.invoice.tax,base:0 msgid "Base" -msgstr "" +msgstr "בסיס" #. module: account #: field:account.model,name:0 @@ -6869,7 +6869,7 @@ msgstr "" #: field:account.fiscal.position,note:0 #: field:account.fiscal.position.template,note:0 msgid "Notes" -msgstr "" +msgstr "פתקים" #. module: account #: model:ir.model,name:account.model_analytic_entries_report @@ -6881,7 +6881,7 @@ msgstr "" #: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " -msgstr "" +msgstr "רשומות: " #. module: account #: help:res.partner.bank,currency_id:0 @@ -6925,7 +6925,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Fax :" -msgstr "" +msgstr "פקס :" #. module: account #: help:res.partner,property_account_receivable:0 @@ -6960,12 +6960,12 @@ msgstr "" #. module: account #: view:account.fiscalyear.close:0 msgid "Create" -msgstr "" +msgstr "צור" #. module: account #: model:process.transition.action,name:account.process_transition_action_createentries0 msgid "Create entry" -msgstr "" +msgstr "צור רשומה" #. module: account #: selection:account.account.type,report_type:0 @@ -7113,7 +7113,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "" +msgstr "כל הרשומות" #. module: account #: constraint:account.move.reconcile:0 @@ -7258,7 +7258,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "" +msgstr "חשבוניות לקוח" #. module: account #: view:account.tax:0 @@ -7276,7 +7276,7 @@ msgstr "" #: selection:account.subscription,state:0 #: selection:report.invoice.created,state:0 msgid "Done" -msgstr "" +msgstr "בוצע" #. module: account #: code:addons/account/account.py:1319 @@ -7331,7 +7331,7 @@ msgstr "" #. module: account #: field:account.analytic.line,currency_id:0 msgid "Account Currency" -msgstr "" +msgstr "מטבע החשבון" #. module: account #: report:account.invoice:0 @@ -7359,7 +7359,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation msgid "Monthly Turnover" -msgstr "" +msgstr "מחזור חודשי" #. module: account #: view:account.move:0 @@ -7396,7 +7396,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "הפניית לקוח" #. module: account #: field:account.account.template,parent_id:0 @@ -7468,7 +7468,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules msgid "Chart Templates" -msgstr "" +msgstr "תבניות תרשימים" #. module: account #: field:account.journal.period,icon:0 @@ -7478,7 +7478,7 @@ msgstr "" #. module: account #: view:account.use.model:0 msgid "Ok" -msgstr "" +msgstr "אישור" #. module: account #: field:account.chart.template,tax_code_root_id:0 @@ -7496,7 +7496,7 @@ msgstr "" #. module: account #: field:account.bank.statement,closing_date:0 msgid "Closed On" -msgstr "" +msgstr "נסגר ב" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line @@ -7521,7 +7521,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Confirm" -msgstr "" +msgstr "אשר" #. module: account #: help:account.tax,domain:0 @@ -7540,12 +7540,12 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "" +msgstr "שם הרשומות החדשות" #. module: account #: view:account.use.model:0 msgid "Create Entries" -msgstr "" +msgstr "צור רשומות" #. module: account #: model:ir.model,name:account.model_cash_box_out @@ -7555,12 +7555,12 @@ msgstr "" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "מטבע עיקרי של החברה" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports msgid "Reporting" -msgstr "" +msgstr "דוחות" #. module: account #. openerp-web @@ -7568,7 +7568,7 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" -msgstr "" +msgstr "אזהרה" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open @@ -7579,7 +7579,7 @@ msgstr "" #: view:account.journal:0 #: field:res.partner.bank,journal_id:0 msgid "Account Journal" -msgstr "" +msgstr "יומן החשבון" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 @@ -7590,7 +7590,7 @@ msgstr "" #: model:process.node,name:account.process_node_paidinvoice0 #: model:process.node,name:account.process_node_supplierpaidinvoice0 msgid "Paid invoice" -msgstr "" +msgstr "חשבונית ששולמה" #. module: account #: view:account.invoice.refund:0 @@ -7613,7 +7613,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 msgid "Comment" -msgstr "" +msgstr "הערה" #. module: account #: field:account.tax,domain:0 @@ -7639,17 +7639,17 @@ msgstr "" #: field:account.invoice.tax,invoice_id:0 #: model:ir.model,name:account.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "שורה בחשבונית" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "החזרים ללקוחות וספקים" #. module: account #: field:account.financial.report,sign:0 msgid "Sign on Reports" -msgstr "" +msgstr "חתום על דוחות" #. module: account #: model:ir.actions.act_window,help:account.action_account_analytic_account_tree2 @@ -7699,18 +7699,18 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 msgid "Normal" -msgstr "" +msgstr "רגילה" #. module: account #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "" +msgstr "תבניות דואר אלקטרוני" #. module: account #: view:account.move.line:0 msgid "Optional Information" -msgstr "" +msgstr "מידע אופציונלי" #. module: account #: view:account.analytic.line:0 @@ -7720,12 +7720,12 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,user_id:0 msgid "User" -msgstr "" +msgstr "משתמש" #. module: account #: selection:account.account,currency_mode:0 msgid "At Date" -msgstr "" +msgstr "בתאריך" #. module: account #: help:account.move.line,date_maturity:0 @@ -7737,7 +7737,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "" +msgstr "מטבעות מרובים" #. module: account #: field:account.model.line,date_maturity:0 @@ -7748,7 +7748,7 @@ msgstr "" #: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "" +msgstr "יומן מכירות" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -7792,7 +7792,7 @@ msgstr "" #. module: account #: view:product.template:0 msgid "Sales Properties" -msgstr "" +msgstr "מאפייני מכירה" #. module: account #: code:addons/account/account.py:3541 @@ -7823,7 +7823,7 @@ msgstr "" #: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" -msgstr "" +msgstr "התאמת מטבע" #. module: account #: field:account.fiscalyear.close,fy_id:0 @@ -7834,7 +7834,7 @@ msgstr "" #: view:account.invoice.cancel:0 #: model:ir.actions.act_window,name:account.action_account_invoice_cancel msgid "Cancel Selected Invoices" -msgstr "" +msgstr "בטל חשבוניות שנבחרו" #. module: account #: help:account.account.type,report_type:0 @@ -7849,7 +7849,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "May" -msgstr "" +msgstr "מאי" #. module: account #: code:addons/account/account_invoice.py:820 @@ -7896,7 +7896,7 @@ msgstr "" #: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" -msgstr "" +msgstr "לקוח" #. module: account #: field:account.financial.report,name:0 @@ -7912,13 +7912,13 @@ msgstr "" #: code:addons/account/account.py:3092 #, python-format msgid "Cash" -msgstr "" +msgstr "מזומן" #. module: account #: field:account.fiscal.position.account,account_dest_id:0 #: field:account.fiscal.position.account.template,account_dest_id:0 msgid "Account Destination" -msgstr "" +msgstr "יעד החשבון" #. module: account #: help:account.invoice.refund,filter_refund:0 @@ -7982,12 +7982,12 @@ msgstr "" #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "Monthly" -msgstr "" +msgstr "חודשי" #. module: account #: model:account.account.type,name:account.data_account_type_asset msgid "Asset" -msgstr "" +msgstr "נכס" #. module: account #: field:account.bank.statement,balance_end:0 @@ -8185,7 +8185,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Automatic entry" -msgstr "" +msgstr "רשומה אוטומטית" #. module: account #: help:account.account,reconcile:0 @@ -8224,7 +8224,7 @@ msgstr "" #. module: account #: field:account.invoice,comment:0 msgid "Additional Information" -msgstr "" +msgstr "מידע נוסף" #. module: account #: field:account.invoice.report,residual:0 @@ -8433,7 +8433,7 @@ msgstr "" #. module: account #: field:account.account,company_currency_id:0 msgid "Company Currency" -msgstr "" +msgstr "מטבע חברה" #. module: account #: field:account.aged.trial.balance,chart_account_id:0 @@ -8529,7 +8529,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "החל" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8623,7 +8623,7 @@ msgstr "" #: report:account.general.ledger_landscape:0 #: report:account.partner.balance:0 msgid "Filter By" -msgstr "" +msgstr "סנן לפי" #. module: account #: code:addons/account/wizard/account_period_close.py:51 @@ -8637,7 +8637,7 @@ msgstr "" #: view:board.board:0 #: model:ir.actions.act_window,name:account.action_company_analysis_tree msgid "Company Analysis" -msgstr "" +msgstr "ניתוח חברה" #. module: account #: help:account.invoice,account_id:0 @@ -8771,7 +8771,7 @@ msgstr "" #. module: account #: view:account.period.close:0 msgid "Are you sure?" -msgstr "" +msgstr "האם אתה בטוח?" #. module: account #: view:account.journal:0 @@ -8865,7 +8865,7 @@ msgstr "" #: model:account.account.type,name:account.data_account_type_expense #: model:account.financial.report,name:account.account_financial_report_expense0 msgid "Expense" -msgstr "" +msgstr "הוצאות" #. module: account #: help:account.chart,fiscalyear:0 @@ -8913,7 +8913,7 @@ msgstr "" #: field:res.partner.bank,currency_id:0 #: field:wizard.multi.charts.accounts,currency_id:0 msgid "Currency" -msgstr "" +msgstr "מטבע" #. module: account #: help:account.invoice.refund,journal_id:0 @@ -8984,7 +8984,7 @@ msgstr "" #. module: account #: field:res.partner,contract_ids:0 msgid "Contracts" -msgstr "" +msgstr "חוזים" #. module: account #: field:account.cashbox.line,bank_statement_id:0 @@ -9145,7 +9145,7 @@ msgstr "" #: model:process.node,name:account.process_node_invoiceinvoice0 #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 msgid "Create Invoice" -msgstr "" +msgstr "צור חשבונית" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer @@ -9174,7 +9174,7 @@ msgstr "" #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "הצג פרטים" #. module: account #: code:addons/account/account.py:3203 @@ -9213,7 +9213,7 @@ msgstr "" #: field:account.period,date_stop:0 #: model:ir.ui.menu,name:account.menu_account_end_year_treatments msgid "End of Period" -msgstr "" +msgstr "סוף תקופה" #. module: account #: field:account.account,financial_report_ids:0 @@ -9275,7 +9275,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "בקש החזר" #. module: account #: view:account.move.line:0 @@ -9327,7 +9327,7 @@ msgstr "" #. module: account #: xsl:account.transfer:0 msgid "Document" -msgstr "" +msgstr "מסמך" #. module: account #: view:account.chart.template:0 @@ -9377,7 +9377,7 @@ msgstr "" #: report:account.account.balance:0 #: report:account.general.ledger_landscape:0 msgid "Display Account" -msgstr "" +msgstr "הצג חשבון" #. module: account #: selection:account.account,type:0 @@ -9390,7 +9390,7 @@ msgstr "" #. module: account #: view:board.board:0 msgid "Account Board" -msgstr "" +msgstr "לוח החשבון" #. module: account #: view:account.model:0 @@ -9412,7 +9412,7 @@ msgstr "" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Filters By" -msgstr "" +msgstr "מסננים לפי" #. module: account #: field:account.cashbox.line,number_closing:0 @@ -9435,7 +9435,7 @@ msgstr "" #: view:account.move.line:0 #: field:analytic.entries.report,move_id:0 msgid "Move" -msgstr "" +msgstr "העבר" #. module: account #: code:addons/account/account_bank_statement.py:478 @@ -9447,7 +9447,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "תאריך / תקופה" #. module: account #: report:account.central.journal:0 @@ -9493,7 +9493,7 @@ msgstr "" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Date of the day" -msgstr "" +msgstr "תאריך של יום" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -9518,7 +9518,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu msgid "Common Report" -msgstr "" +msgstr "דוח משותף" #. module: account #: field:account.config.settings,default_sale_tax:0 @@ -9604,7 +9604,7 @@ msgstr "" #: field:accounting.report,period_to:0 #: field:accounting.report,period_to_cmp:0 msgid "End Period" -msgstr "" +msgstr "סיים תקופה" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 @@ -9696,7 +9696,7 @@ msgstr "" #: view:account.invoice.report:0 #: model:process.node,name:account.process_node_supplierdraftinvoices0 msgid "Draft Invoices" -msgstr "" +msgstr "חשבוניות טיוטה" #. module: account #: view:cash.box.in:0 @@ -9772,7 +9772,7 @@ msgstr "" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Code/Date" -msgstr "" +msgstr "קוד/תאריך" #. module: account #: view:account.bank.statement:0 @@ -9794,7 +9794,7 @@ msgstr "" #. module: account #: view:accounting.report:0 msgid "Comparison" -msgstr "" +msgstr "השוואה" #. module: account #: code:addons/account/account_move_line.py:1119 @@ -9866,12 +9866,12 @@ msgstr "" #: report:account.vat.declaration:0 #: field:report.account.receivable,credit:0 msgid "Credit" -msgstr "" +msgstr "אשראי" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "חשבונית טיוטה " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -9901,7 +9901,7 @@ msgstr "" #: selection:account.bank.statement.line,type:0 #: selection:account.journal,type:0 msgid "General" -msgstr "" +msgstr "כללי" #. module: account #: view:account.invoice.report:0 @@ -9944,7 +9944,7 @@ msgstr "" #. module: account #: field:account.invoice.report,currency_rate:0 msgid "Currency Rate" -msgstr "" +msgstr "שער מטבע" #. module: account #: field:account.account,tax_ids:0 @@ -9961,7 +9961,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "April" -msgstr "" +msgstr "אפריל" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 @@ -10099,7 +10099,7 @@ msgstr "" #: field:accounting.report,date_to:0 #: field:accounting.report,date_to_cmp:0 msgid "End Date" -msgstr "" +msgstr "תאריך סיום" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -10111,7 +10111,7 @@ msgstr "" #. module: account #: field:account.payment.term.line,days2:0 msgid "Day of the Month" -msgstr "" +msgstr "יום בחודש" #. module: account #: field:account.fiscal.position.tax,tax_src_id:0 @@ -10127,7 +10127,7 @@ msgstr "" #. module: account #: selection:account.financial.report,display_detail:0 msgid "No detail" -msgstr "" +msgstr "אין פרטים" #. module: account #: field:account.account,unrealized_gain_loss:0 @@ -10228,7 +10228,7 @@ msgstr "" #: field:analytic.entries.report,company_id:0 #: field:wizard.multi.charts.accounts,company_id:0 msgid "Company" -msgstr "" +msgstr "חברה" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form @@ -10292,7 +10292,7 @@ msgstr "" #. module: account #: field:account.analytic.balance,empty_acc:0 msgid "Empty Accounts ? " -msgstr "" +msgstr "חשבונות ריקים ? " #. module: account #: view:account.unreconcile.reconcile:0 @@ -10320,7 +10320,7 @@ msgstr "" #. module: account #: field:account.chart,period_to:0 msgid "End period" -msgstr "" +msgstr "סיים תקופה" #. module: account #: sql_constraint:account.journal:0 @@ -10491,7 +10491,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "December" -msgstr "" +msgstr "דצמבר" #. module: account #: view:account.invoice.report:0 @@ -10529,7 +10529,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing msgid "Billing" -msgstr "" +msgstr "חיוב" #. module: account #: view:account.account:0 @@ -10595,7 +10595,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "November" -msgstr "" +msgstr "נובמבר" #. module: account #: model:ir.actions.act_window,help:account.action_account_moves_all_a @@ -10647,7 +10647,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_res_partner_bank msgid "Bank Accounts" -msgstr "" +msgstr "חשבונות בנק" #. module: account #: field:res.partner,credit:0 @@ -10727,7 +10727,7 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "לעולם לא" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard @@ -10779,7 +10779,7 @@ msgstr "" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "הספד" #. module: account #: selection:account.entries.report,month:0 @@ -10788,7 +10788,7 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "February" -msgstr "" +msgstr "פברואר" #. module: account #: view:account.bank.statement:0 @@ -10803,13 +10803,13 @@ msgstr "" #: field:account.invoice,partner_bank_id:0 #: field:account.invoice.report,partner_bank_id:0 msgid "Bank Account" -msgstr "" +msgstr "חשבון בנק" #. module: account #: model:ir.actions.act_window,name:account.action_account_central_journal #: model:ir.model,name:account.model_account_central_journal msgid "Account Central Journal" -msgstr "" +msgstr "יומן מרכזי של החשבון" #. module: account #: report:account.overdue:0 @@ -10851,7 +10851,7 @@ msgstr "" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "תנאי תשלום לקוח" #. module: account #: help:accounting.report,label_filter:0 diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po index 5e67267a6ee..23a3155c61b 100644 --- a/addons/account/i18n/hi.po +++ b/addons/account/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:55+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po index 73ad99b26b0..c5c7e3a0b18 100644 --- a/addons/account/i18n/hr.po +++ b/addons/account/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -166,6 +166,8 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" +"Morate postaviti 'Dnevnik završnog stanja' za ovu fiskalnu godinu koje se " +"postavlja nakon generiranja početnih stavaka iz 'Stvori početno stanje'." #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -243,17 +245,17 @@ msgstr "Odabir stavke zatvaranja" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "" +msgstr "Stavke su proizvod zatvaranja." #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports msgid "Belgian Reports" -msgstr "Belgian Reports" +msgstr "Belgijski izvještaji" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "Provjereno" +msgstr "Potvrđeno" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -274,7 +276,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Sljedeći broj odobrenja" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -317,17 +319,17 @@ msgid "" " " msgstr "" "

\n" -" Kliknite za stvaranje povratnice " +" Kliknite za stvaranje povrata " "kupcu.\n" "

\n" -" Povratnica je dokument koji " +" Povrat kupcu je dokument koji " "razdužuje račun kompletno ili \n" " djelomično\n" "

\n" -" Umjesto ručnog uređivanja " -"povratnica, možete ih napraviti \n" -" direktno iz povezanih računa " -"partnera\n" +" Umjesto ručnog kreiranja povrata, " +"možete ih napraviti \n" +" direktno iz povezanih izlaznih " +"računa\n" "

\n" " " @@ -337,12 +339,13 @@ msgid "" "Installs localized accounting charts to match as closely as possible the " "accounting needs of your company based on your country." msgstr "" -"Instalira lokalizirani kontni plan prema potrebama vaše organizacije." +"Instalira lokalizirani kontni plan prema potrebama vaše organizacije " +"bazirano na vašoj državi." #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "Account Unreconcile" +msgstr "Razveži račun" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -468,7 +471,7 @@ msgstr "" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Informacije o pokretaču i korisniku" #. module: account #. openerp-web @@ -488,7 +491,9 @@ msgstr "Predložak kontnog plana" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "Uredi: napravi povrat, zatvori ili kreiraj novi nacrt računa" +msgstr "" +"Ispravi: kreiraj storno dokument, zatvori ga te kreiraj novi račun u statusu " +"'Nacrt'" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -578,7 +583,7 @@ msgstr "Nadređeni cilj" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "" +msgstr "Daje sekvencu ove linije kada se prikazuje račun" #. module: account #: field:account.bank.statement,account_id:0 @@ -658,7 +663,7 @@ msgstr "Decimalna preciznost na stavkama dnevnika" #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "3 Monthly" -msgstr "tromjesečno" +msgstr "Tromjesečno" #. module: account #: field:ir.sequence,fiscal_ids:0 @@ -688,7 +693,7 @@ msgstr "Mapiranje poreza" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "Centralized Journal" +msgstr "Centralizirani dnevnik" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 @@ -712,7 +717,7 @@ msgstr "Konto dobiti" #, python-format msgid "No period found or more than one period found for the given date." msgstr "" -"Nije nađen perio za zadani datum, ili je nađeno nekoliko perioda za zadani " +"Nije nađen period za zadani datum ili je nađeno nekoliko perioda za zadani " "datum" #. module: account @@ -738,17 +743,19 @@ msgid "" "Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " "and 'draft' or ''}" msgstr "" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" #. module: account #: view:account.period:0 #: view:account.period.close:0 msgid "Close Period" -msgstr "Zatvori razdoblje" +msgstr "Zatvori period" #. module: account #: model:ir.model,name:account.model_account_common_partner_report msgid "Account Common Partner Report" -msgstr "Račun Zajednički Partner Izvješće" +msgstr "Zajedničko izvješće konta partnera" #. module: account #: field:account.fiscalyear.close,period_id:0 @@ -765,6 +772,7 @@ msgstr "Period dnevnika" msgid "" "You cannot create more than one move per period on a centralized journal." msgstr "" +"Ne možete raditi više od jedne stavke po periodu na centraliziranom dnevniku." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -797,7 +805,7 @@ msgstr "Podesite vaše bankovne račune" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "Napravi povratnicu" +msgstr "Storniraj dokument" #. module: account #: constraint:account.move.line:0 @@ -806,7 +814,7 @@ msgid "" "change the date or remove this constraint from the journal." msgstr "" "Datum vašeg unosa u dnevnik nije u definiranom periodu! Trebali bi " -"promijeniti datum ili izbaciti ovaj unos iz dnevnika." +"promijeniti datum ili ukloniti to ograničenje iz dnevnika." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger @@ -870,7 +878,7 @@ msgstr "Analitičke stavke" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "Način povrata" +msgstr "Način storniranja" #. module: account #: model:ir.ui.menu,name:account.menu_account_report @@ -982,7 +990,7 @@ msgstr "dana" #: help:account.account.template,nocreate:0 msgid "" "If checked, the new chart of accounts will not contain this by default." -msgstr "Ako je označeno, novi računski plan neće sadržavati ove po defaultu." +msgstr "Ako je označeno, novi kontni plan neće sadržavati ovo po defaultu." #. module: account #: model:ir.actions.act_window,help:account.action_account_manual_reconcile @@ -1130,7 +1138,7 @@ msgstr "Nabava" #. module: account #: field:account.model,lines_id:0 msgid "Model Entries" -msgstr "Stavke modela" +msgstr "Temeljnice modela" #. module: account #: field:account.account,code:0 @@ -1152,7 +1160,7 @@ msgstr "Šifra" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "Mogućnosti" +msgstr "Značajke" #. module: account #: code:addons/account/account.py:2346 @@ -1162,7 +1170,7 @@ msgstr "Mogućnosti" #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "Nema analitičkog dnevnika" +msgstr "Nema analitičkog dnevnika !" #. module: account #: report:account.partner.balance:0 @@ -1197,7 +1205,7 @@ msgstr "" " određeni iznos " "zbog tečajnih razlika. Ovaj izbornik pruža Vam\n" " predviđanje " -"dobiti i gubitka ostvarenoog ukoliko bi se te\n" +"dobiti i gubitka ostvarenog ukoliko bi se te\n" " transakcije " "završile danas. Samo za račune koji imaju postavljenu sekundarnu valutu.\n" "

\n" @@ -1211,7 +1219,7 @@ msgstr "Naziv konta" #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "Otvaranje sa saldom zadnje zatvaranja" +msgstr "Otvaranje sa saldom zadnjeg zatvaranja" #. module: account #: help:account.tax.code,notprintable:0 @@ -1230,7 +1238,7 @@ msgstr "Tjedan" #. module: account #: field:account.report.general.ledger,landscape:0 msgid "Landscape Mode" -msgstr "Položeno (Landscape)" +msgstr "Pejzaž" #. module: account #: help:account.fiscalyear.close,fy_id:0 @@ -1243,8 +1251,8 @@ msgid "" "These types are defined according to your country. The type contains more " "information about the account and its specificities." msgstr "" -"These types are defined according to your country. The type contains more " -"information about the account and its specificities." +"Ovi su tipovi definirani prema vašoj zemlji. Tip sadržava više informacija o " +"kontu i njegovim specifičnostima." #. module: account #: view:account.invoice:0 @@ -1296,6 +1304,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog unosa u blagajnu.\n" +"

\n" +" Pomoću blagajne moguće je na jednostavan način upravljati " +"dnevnicima\n" +" blagajne. Na jednostavan način možete pratiti uplate " +"gotovine\n" +" na dnevnoj bazi. Moguće je evidentirati novac u blagajni, a " +"zatim\n" +" pratiti sve ulaze i izlaze novca iz nje.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_bank @@ -1505,7 +1525,7 @@ msgstr "Porezi" #: code:addons/account/wizard/account_financial_report.py:70 #, python-format msgid "Select a starting and an ending period" -msgstr "Odaberite početni i zavšni period" +msgstr "Odaberite početni i završni period" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitandloss0 @@ -1580,6 +1600,8 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"Kada je novi izvod kreiran status je 'Nacrt'.\n" +"Nakon dobivanja potvrde od banke biti će u 'Potvrđeno' statusu." #. module: account #: field:account.invoice.report,state:0 @@ -1636,7 +1658,7 @@ msgstr "Traži poreze" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger msgid "Account Analytic Cost Ledger" -msgstr "Account Analytic Cost Ledger" +msgstr "Analitički troškovnik" #. module: account #: view:account.model:0 @@ -1661,9 +1683,9 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" -"Nema stavaka za zatvaranje. Svi računi iplaćanja \n" +"Nema stavaka za zatvaranje. Svi računi i plaćanja \n" " su već zatvoreni, saldo vašeg partnera " -"je uredan i zatvoren." +"je uredan." #. module: account #: field:account.chart.template,code_digits:0 @@ -1710,6 +1732,8 @@ msgid "" "By unchecking the active field, you may hide a fiscal position without " "deleting it." msgstr "" +"Isključivanjem polja aktivno, možete sakriti fiskalnu poziciju bez da je " +"brišete." #. module: account #: model:ir.model,name:account.model_temp_range @@ -1799,7 +1823,7 @@ msgstr "Konto poreza za odobrenja" #. module: account #: model:ir.model,name:account.model_ir_sequence msgid "ir.sequence" -msgstr "ir.slijed" +msgstr "ir.sequence" #. module: account #: view:account.bank.statement:0 @@ -1841,6 +1865,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove vrste konta.\n" +"

\n" +" Vrsta konta se koristi za određivanje načina korištenja " +"konta u\n" +" dnevniku. \n" +"

\n" +" " #. module: account #: report:account.invoice:0 @@ -1931,8 +1963,8 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" -"Dnevnik mora imati jedinsvenu protustavku bez označene opcije Preskoči " -"stanje Nacrt" +"Dnevnik mora imati jedinstvenu protustavku bez označene opcije 'preskoči " +"nacrt'." #. module: account #: code:addons/account/account_move_line.py:854 @@ -1963,7 +1995,7 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Pending Accounts" -msgstr "" +msgstr "Konta na čekanju" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -1982,8 +2014,7 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" -"If the active field is set to False, it will allow you to hide the journal " -"period without removing it." +"Period dnevnika možete sakriti umjesto brisanja ako isključite polje aktivan." #. module: account #: field:account.report.general.ledger,sortby:0 @@ -2159,11 +2190,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za unos novog ulaznog računa .\n" +"

\n" +" Možete kontrolirati račun vašeg dobavljača prema tome\n" +" što ste kupili ili primili. OpenERP može također generirati\n" +" nacrte računa automatski iz naloga za nabavu ili primki.\n" +"

\n" +" " #. module: account #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "Pogrešno kreditna ili debitnom vrijednost unešene stavke!" +msgstr "Pogrešna dugovna ili potražna vrijednost upisane stavke!" #. module: account #: view:account.invoice.report:0 @@ -2189,6 +2228,8 @@ msgid "" "This journal already contains items for this period, therefore you cannot " "modify its company field." msgstr "" +"Ovaj dnevnik već sadrži stavke za ovaj period, stoga ne možete mijenjati " +"njegovo polje tvrtke." #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form @@ -2217,6 +2258,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog bankovnog izvoda.\n" +"

\n" +" Bankovni izvod sadrži pregled svih financijskih transakcija\n" +" koje su nastale u danom razdoblju po bankovnom računu. " +"Bankovne \n" +" izvode šalje banka periodično.\n" +"

\n" +" OpenERP dozvoljava izravno zatvaranje stavaka sa povezanim\n" +" ulaznim ili izlaznim računima.\n" +"

\n" +" " #. module: account #: field:account.config.settings,currency_id:0 @@ -2246,7 +2299,7 @@ msgstr "Analiza blagajne" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "Dnevnik Prodaje/Nabave" +msgstr "Dnevnik prodaje/nabave" #. module: account #: view:account.analytic.account:0 @@ -2294,7 +2347,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "Bruto bilanca (Aged Trial balance)" +msgstr "Bruto bilanca" #. module: account #: view:account.fiscalyear.close.state:0 @@ -2306,7 +2359,7 @@ msgstr "Zatvaranje fiskalne godine" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "Dokument :" +msgstr "Dnevnik :" #. module: account #: sql_constraint:account.fiscal.position.tax:0 @@ -2343,7 +2396,7 @@ msgstr "Ne dozvoljava knjiženja izvan fiskalnog perioda" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:8 #, python-format msgid "Good job!" -msgstr "Odličan uradak!" +msgstr "Dobar posao!" #. module: account #: field:account.config.settings,module_account_asset:0 @@ -2371,6 +2424,8 @@ msgid "" "currency. You should remove the secondary currency on the account or select " "a multi-currency view on the journal." msgstr "" +"Odabrani konto vaše temeljnice traži sekundarnu valutu. Trebale ukloniti " +"sekundarnu valutu sa konta ili odabrati multivalutni pogled na dnevniku." #. module: account #: view:account.invoice:0 @@ -2431,7 +2486,7 @@ msgstr "Fiskalna godina" #: code:addons/account/wizard/account_move_bank_reconcile.py:53 #, python-format msgid "Standard Encoding" -msgstr "Standardno kodiranje" +msgstr "Standardni unos" #. module: account #: view:account.journal.select:0 @@ -2442,7 +2497,7 @@ msgstr "Prikaži stavke" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "Sljedeći broj odobrenja dobavljaču" #. module: account #: field:account.automatic.reconcile,account_ids:0 @@ -2471,7 +2526,7 @@ msgstr "Siječanj" #. module: account #: view:account.entries.report:0 msgid "This F.Year" -msgstr "Ova F. godina" +msgstr "Ova f. godina" #. module: account #: view:account.tax.chart:0 @@ -2493,7 +2548,7 @@ msgstr "Nemate ovlasti otvoriti %s dnevnik!" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "Provjeri Ukupni iznos na ulaznim računima" +msgstr "Provjeri ukupni iznos na ulaznim računima" #. module: account #: selection:account.invoice,state:0 @@ -2501,7 +2556,7 @@ msgstr "Provjeri Ukupni iznos na ulaznim računima" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Pro-forma" -msgstr "Pro-forma" +msgstr "Predračun" #. module: account #: help:account.account.template,type:0 @@ -2513,11 +2568,10 @@ msgid "" "partners accounts (for debit/credit computations), closed for depreciated " "accounts." msgstr "" -"This type is used to differentiate types with special effects in OpenERP: " -"view can not have entries, consolidation are accounts that can have children " -"accounts for multi-company consolidations, payable/receivable are for " -"partners accounts (for debit/credit computations), closed for depreciated " -"accounts." +"Ovaj tip se koristi za razlikovanje tipova s posebnim efektima u OpenERPu: " +"pogled ne može imati unose, konsolidacija su konta koja imaju podređena " +"konta za konsolidaciju više kompanija, obveze/potraživanja su za saldakonti " +"(za duguje/potražuje izračune), zatvoreni za konta koja se više ne koriste." #. module: account #: view:account.chart.template:0 @@ -2575,7 +2629,7 @@ msgstr "Ovaj porez prodaje će biti primjenjen na svim novim proizvodima" #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Entries Sorted By" -msgstr "Entries Sorted By" +msgstr "Stavke poredane po" #. module: account #: field:account.change.currency,currency_id:0 @@ -2658,11 +2712,13 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" +"Ne možete mijenjati tip konta iz 'zatvoren' u neki drugi tip jer sadržava " +"stavke dnevnika!" #. module: account #: field:account.invoice.report,account_line_id:0 msgid "Account Line" -msgstr "" +msgstr "Stavka" #. module: account #: view:account.addtmpl.wizard:0 @@ -2692,7 +2748,7 @@ msgstr "Temeljnica" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 msgid "Main Sequence" -msgstr "Glavna br. serija" +msgstr "Glavna sekvenca" #. module: account #: code:addons/account/account_bank_statement.py:478 @@ -2701,8 +2757,8 @@ msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" -"kako bi izbrisali bankovni nalog, morate ga prvo otkazati da se obrišu sve " -"stavke dnevnika povezane sa njim." +"Kako bi izbrisali bankovni izvod, morate ga prvo otkazati kako bi se " +"obrisale sve stavke dnevnika povezane s njim." #. module: account #: field:account.invoice.report,payment_term:0 @@ -2740,12 +2796,12 @@ msgstr "Filtri" #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "Stanje računa 'Nacrt'" +msgstr "Stanje računa 'nacrt'" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Karakteristike konta" #. module: account #: selection:account.invoice.refund,filter_refund:0 @@ -2777,7 +2833,7 @@ msgstr "30% avans, ostatak kroz 30 dana" #. module: account #: view:account.entries.report:0 msgid "Unreconciled entries" -msgstr "Unreconciled entries" +msgstr "Nezatvorene stavke" #. module: account #: field:account.invoice.tax,base_code_id:0 @@ -2863,6 +2919,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za kreiranje temeljnice.\n" +"

\n" +" Temeljnica se sastoji od nekoliko stavaka dnevnika, svaki\n" +" od kojih je ili dugovna ili potražna transakcija.\n" +"

\n" +" OpenERP automatski kreira temeljnicu po računovodstvenom\n" +" dokumentu: račun, povrat, plaćanje dobavljaču, izvod,\n" +" itd. Prema tome, ručno unositi temeljnice bi trebali " +"samo/uglavnom\n" +" za ostale razne operacije.\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -2900,7 +2969,7 @@ msgstr "Opis knjiženja" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_writeoff msgid "Account move line reconcile (writeoff)" -msgstr "" +msgstr "Zatvaranje stavke glavne knjige (otpis)" #. module: account #: model:account.account.type,name:account.conf_account_type_tax @@ -3000,7 +3069,7 @@ msgstr "Zatvaranje izvoda banke" #. module: account #: report:account.invoice:0 msgid "Disc.(%)" -msgstr "Pop.(%)" +msgstr "Popust (%)" #. module: account #: report:account.general.ledger:0 @@ -3014,7 +3083,7 @@ msgstr "Vezna oznaka" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Purchase Tax" -msgstr "Porez Nabave" +msgstr "Pretporez" #. module: account #: help:account.move.line,tax_code_id:0 @@ -3041,7 +3110,7 @@ msgstr "Automatsko zatvaranje IOS-a" #. module: account #: field:account.invoice,reconciled:0 msgid "Paid/Reconciled" -msgstr "Plaćeno/Usklađeno" +msgstr "Plaćeno/usklađeno" #. module: account #: field:account.tax,ref_base_code_id:0 @@ -3074,6 +3143,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za otvaranje nove fiskalne godine..\n" +"

\n" +" Definirajte fiskalnu godinu vaše kompanije prema vašim " +"potrebama. \n" +" Fiskalna godina je period na kraju kojeg zaključujemo " +"poslovnu\n" +" godinu (obično 12 mjeseci). U Hrvatskoj fiskalna godina " +"prati kalendarsku.\n" +"

\n" +" " #. module: account #: view:account.common.report:0 @@ -3126,11 +3206,10 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" -"Check this box if you don't want new journal entries to pass through the " -"'draft' state and instead goes directly to the 'posted state' without any " -"manual validation. \n" -"Note that journal entries that are automatically created by the system are " -"always skipping that state." +"Označite ovu kućicu ako ne želite da nove stavke dnevnika prolaze kroz " +"status 'nacrta' već da direktno postaju 'knjižene' bez ručne ovjere. Imajte " +"na umu da stavke dnevnika koje se kreiraju automatski uvjek preskaču taj " +"status." #. module: account #: field:account.move.line.reconcile,writeoff:0 @@ -3157,7 +3236,7 @@ msgstr "" #: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "Trebali bi odabrati periode koji pripadaju istoj Tvrtci" +msgstr "Trebali bi odabrati periode koji pripadaju istoj kompaniji." #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -3170,7 +3249,7 @@ msgstr "Prodaje po kontu" #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "" +msgstr "Ne možete obrisati knjiženu temeljnicu \"%s\"." #. module: account #: view:account.invoice:0 @@ -3197,6 +3276,8 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" +"Ovaj dnevnik već sadrava stavke i prema tome ne možete mijenjati polje " +"kompanije" #. module: account #: code:addons/account/account.py:409 @@ -3205,6 +3286,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" +"Treba vam dnevnik početnog stanja sa upaljenom centralizacijom za " +"postavljanje donosa." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3215,7 +3298,7 @@ msgstr "Porezne grupe" #. module: account #: view:account.account:0 msgid "Unrealized Gains and losses" -msgstr "" +msgstr "Nerealizirani dobici i i gubici" #. module: account #: model:ir.ui.menu,name:account.menu_account_customer @@ -3259,14 +3342,14 @@ msgid "" "The optional quantity expressed by this line, eg: number of product sold. " "The quantity is not a legal requirement but is very useful for some reports." msgstr "" -"The optional quantity expressed by this line, eg: number of product sold. " -"The quantity is not a legal requirement but is very useful for some reports." +"Opcionalna količina izražena ovom linijom, npr.: broj prodanih komada " +"artikla. Količina je vrlo korisna za neke izvještaje." #. module: account #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Transakcije koje nisu zatvorene" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 @@ -3289,14 +3372,15 @@ msgstr "Sažetak" #. module: account #: help:account.invoice,period_id:0 msgid "Keep empty to use the period of the validation(invoice) date." -msgstr "Prazno za datum potvrde." +msgstr "Ostavite prazno za koirištenje perioda prema datumu računa." #. module: account #: help:account.bank.statement,account_id:0 msgid "" "used in statement reconciliation domain, but shouldn't be used elswhere." msgstr "" -"used in statement reconciliation domain, but shouldn't be used elswhere." +"korišteno u domeni zatvaranja izvoda, ali ne bi se trebalo koristiti na " +"drugim mjestima." #. module: account #: field:account.config.settings,date_stop:0 @@ -3380,7 +3464,7 @@ msgstr "Bilanca" #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "" +msgstr "Nije moguće postaviti početno stanje (negativne vrijednosti)." #. module: account #: selection:account.invoice,type:0 @@ -3415,7 +3499,7 @@ msgstr "Valuta računa" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Računovodstveni izvještaj" #. module: account #: field:account.payment.term,line_ids:0 @@ -3430,7 +3514,7 @@ msgstr "Lista predloška poreza" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "Dnevnici Prodaje/Nabave" +msgstr "Dnevnici prodaje/nabave" #. module: account #: help:account.account,currency_mode:0 @@ -3441,17 +3525,17 @@ msgid "" "software system you may have to use the rate at date. Incoming transactions " "always use the rate at date." msgstr "" -"This will select how the current currency rate for outgoing transactions is " -"computed. In most countries the legal method is \"average\" but only a few " -"software systems are able to manage this. So if you import from another " -"software system you may have to use the rate at date. Incoming transactions " -"always use the rate at date." +"Ovo će odabrati kako se računa postojeći tečaj za izlazne transakcije.U " +"većini zemalja zakonska metoda je \"prosjek\" ali samo je par softverskih " +"sustava koji mogu upravljati ovim. Tado da ako uvozite iz drugog softvera " +"možda ćete morati koristiti tečaj na dan. Ulazne transakcije uvijek koriste " +"tečaj na dan." #. module: account #: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Nema nadređene šifre za predložak konta." #. module: account #: help:account.chart.template,code_digits:0 @@ -3462,7 +3546,7 @@ msgstr "Broj znamenki za upotrebu u šifri konta" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "Uvjeti plaćanja kod Dobavljača" +msgstr "Uvjeti plaćanja kod dobavljača" #. module: account #: view:account.fiscalyear:0 @@ -3479,6 +3563,8 @@ msgstr "Uvijek" msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." msgstr "" +"Puna računovodstvena funkcionalnost: dnevnici, zakonska izvješća, kontni " +"plan itd." #. module: account #: view:account.analytic.line:0 @@ -3525,7 +3611,7 @@ msgstr "Retci analitike" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "Proforma računi" +msgstr "Predračuni" #. module: account #: model:process.node,name:account.process_node_electronicfile0 @@ -3535,7 +3621,7 @@ msgstr "Elektronska datoteka" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Oznaka zatvaranja" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 @@ -3636,6 +3722,86 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Pozdrav ${object.partner_id.name},

\n" +"\n" +"

Obavještavamo vam o novom računu:

\n" +" \n" +"

\n" +"   REFERENCA
\n" +"   Broj računa: ${object.number}
\n" +"   Ukupni iznos računa: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Datum računa: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Broj narudžbe: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Vaš kontakt: ${object.user_id.name}\n" +" % endif\n" +"

\n" +" \n" +" % if object.paypal_url:\n" +"
\n" +"

Ovaj račun je moguće platiti i direktno Paypal-om:

\n" +" \n" +" \n" +" \n" +" % endif\n" +" \n" +"
\n" +"

Stojimo na raspolaganju za sva dodatna pitanja.

\n" +"

Hvala vam što ste odabrali ${object.company_id.name or 'us'}!

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

\n" +" ${object.company_id.name}

\n" +"
\n" +"
\n" +" \n" +" % if object.company_id.street:\n" +" ${object.company_id.street}
\n" +" % endif\n" +" % if object.company_id.street2:\n" +" ${object.company_id.street2}
\n" +" % endif\n" +" % if object.company_id.city or object.company_id.zip:\n" +" ${object.company_id.zip} ${object.company_id.city}
\n" +" % endif\n" +" % if object.company_id.country_id:\n" +" ${object.company_id.state_id and ('%s, ' % " +"object.company_id.state_id.name) or ''} ${object.company_id.country_id.name " +"or ''}
\n" +" % endif\n" +"
\n" +" % if object.company_id.phone:\n" +"
\n" +" Phone:  ${object.company_id.phone}\n" +"
\n" +" % endif\n" +" % if object.company_id.website:\n" +"
\n" +" Web : ${object.company_id.website}\n" +"
\n" +" %endif\n" +"

\n" +"
\n" +"
\n" +" " #. module: account #: view:account.period:0 @@ -3647,7 +3813,7 @@ msgstr "Obračunski period" #: help:account.account.template,currency_id:0 #: help:account.bank.accounts.wizard,currency_id:0 msgid "Forces all moves for this account to have this secondary currency." -msgstr "Forces all moves for this account to have this secondary currency." +msgstr "Forsira da sva knjiženja ovog konta moraju imati sekundarnu valutu." #. module: account #: model:ir.actions.act_window,help:account.action_validate_account_move_line @@ -3672,7 +3838,7 @@ msgstr "Transakcije" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile msgid "Account Unreconcile Reconcile" -msgstr "Račun Neusklađen Usklađen" +msgstr "Zatvaranje neztvorenih konta" #. module: account #: help:account.account.type,close_method:0 @@ -3732,7 +3898,7 @@ msgstr "Ostavite prazno za korištenje konta troška" #: model:ir.ui.menu,name:account.menu_journals #: model:ir.ui.menu,name:account.menu_journals_report msgid "Journals" -msgstr "Vrste dokumenta" +msgstr "Dnevnici" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 @@ -3761,7 +3927,7 @@ msgstr "Nabava" #: view:account.installer:0 #: view:wizard.multi.charts.accounts:0 msgid "Accounting Application Configuration" -msgstr "Accounting Application Configuration" +msgstr "Konfiguracija računovodstvene aplikacije" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration @@ -3775,9 +3941,8 @@ msgid "" "be with same name as statement name. This allows the statement entries to " "have the same references than the statement itself" msgstr "" -"if you give the Name other then /, its created Accounting Entries Move will " -"be with same name as statement name. This allows the statement entries to " -"have the same references than the statement itself" +"Ako date ime drugačije od /, njegove kreirane stavke će imati isto ime kao i " +"izvod. Ovo omogućava stavkama izvoda da imaju istu oznaku kao i glava." #. module: account #: code:addons/account/account_invoice.py:1016 @@ -3787,6 +3952,9 @@ msgid "" "centralized counterpart box in the related journal from the configuration " "menu." msgstr "" +"Ne možete kreirati račun na centraiziranom dnevniku. Odznačite " +"centralizirana protustavka kvadratić u povezanom dnevniku iz menija " +"konfiguracije." #. module: account #: field:account.bank.statement,balance_start:0 @@ -3811,7 +3979,7 @@ msgstr "Zatvori razdoblje" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Početni podzbroj" #. module: account #: constraint:account.move.line:0 @@ -3819,6 +3987,8 @@ msgid "" "You cannot create journal items with a secondary currency without recording " "both 'currency' and 'amount currency' field." msgstr "" +"Ne možete kreirati stavke dnevnika sa sekundarnom valutom bez unosa polja " +"'valuta' i 'devizni iznos'." #. module: account #: field:account.financial.report,display_detail:0 @@ -3835,9 +4005,7 @@ msgstr "PDV:" msgid "" "The amount expressed in the related account currency if not equal to the " "company one." -msgstr "" -"The amount expressed in the related account currency if not equal to the " -"company one." +msgstr "Iznos iskazan u valuti konta ako nije isti valuti kompanije." #. module: account #: help:account.config.settings,paypal_account:0 @@ -3860,13 +4028,17 @@ msgid "" "You can create one in the menu: \n" "Configuration/Journals/Journals." msgstr "" +"Nema niti jednog dnevnika %s tipa za ovu kompaniju.\n" +"\n" +"Možete kreirati jednog u meniju: \n" +"Konfiguracija/Dnevnici/Dnevnici." #. module: account #: model:ir.actions.act_window,name:account.action_account_unreconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_select msgid "Unreconcile Entries" -msgstr "Otvori stavke" +msgstr "Razveži stavke" #. module: account #: field:account.tax.code,notprintable:0 @@ -3883,18 +4055,18 @@ msgstr "Stablo poreza" #. module: account #: view:account.journal:0 msgid "Search Account Journal" -msgstr "Traži vrstu dokumenta" +msgstr "Traži dnevnik" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice msgid "Pending Invoice" -msgstr "Pending Invoice" +msgstr "Račun na čekanju" #. module: account #: view:account.invoice.report:0 #: selection:account.subscription,period_type:0 msgid "year" -msgstr "year" +msgstr "godina" #. module: account #: field:account.config.settings,date_start:0 @@ -3910,6 +4082,11 @@ msgid "" "by\n" " your supplier/customer." msgstr "" +"Moći ćete uređivati i potvrditi ovo\n" +" odobrenje direktno ili ostaviti u " +"nacrtu,\n" +" čekajući dokument koji će biti izdan\n" +" od strane dobavljača/kupca." #. module: account #: view:validate.account.move.lines:0 @@ -3917,8 +4094,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" -"Sve odabrane stavke dnevnika će biti potvrđena i objavljena. To znači da " -"nećete moći modificirati svoje računovodstvene polja više." +"Sve odabrane stavke dnevnika će biti potvrđene i objavljene. To znači da " +"nećete više moći modificirati njihova polja." #. module: account #: code:addons/account/account_move_line.py:98 @@ -3927,6 +4104,8 @@ msgid "" "You have not supplied enough arguments to compute the initial balance, " "please select a period and a journal in the context." msgstr "" +"Niste osigurali dovoljno uvjeta za izračun početnog stanja, molimo odaberite " +"period i dnevnik u kontekstu." #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -3977,6 +4156,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za izradu novog izlaznog računa.\n" +"

\n" +" Elektronsko fakturiranje OpenERPa omogućava jednostavniju \n" +" i bržu naplatu računa. Vaš kupac prima račun emailom i može\n" +" plaćati online i/ili uvesti račun u svoj sustav.\n" +"

\n" +" Razgovori s vašim kupcem su automatski prikazani\n" +" na dnu svakog računa.\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -4008,11 +4198,13 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" +"Ne možete mijenjati knjižene stavke ovog dnevnika.\n" +"Prvo je potrebno u dnevniku omogućiti otkazivanje stavaka." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "Ispiši dnevnik Prodaje/Nabave" +msgstr "Ispiši dnevnik prodaje/nabave" #. module: account #: view:account.installer:0 @@ -4088,7 +4280,7 @@ msgstr "PDV :" #: model:ir.actions.act_window,name:account.action_account_tree #: model:ir.ui.menu,name:account.menu_action_account_tree2 msgid "Chart of Accounts" -msgstr "Chart of Accounts" +msgstr "Kontni plan" #. module: account #: view:account.tax.chart:0 @@ -4098,12 +4290,12 @@ msgstr "(prazno - sva otvorena razdoblja)" #. module: account #: model:ir.model,name:account.model_account_journal_cashbox_line msgid "account.journal.cashbox.line" -msgstr "" +msgstr "account.journal.cashbox.line" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "Reconcilation Process partner by partner" +msgstr "Proces zatvaranja, partner po partner" #. module: account #: view:account.chart:0 @@ -4155,7 +4347,7 @@ msgstr "Datum" #. module: account #: view:account.move:0 msgid "Post" -msgstr "Objava" +msgstr "Knjiženje" #. module: account #: view:account.unreconcile:0 @@ -4176,9 +4368,9 @@ msgid "" "based on partner payment term!\n" "Please define partner on it!" msgstr "" -"Maturity date of entry line generated by model line '%s' of model '%s' is " -"based on partner payment term!\n" -"Please define partner on it!" +"Datum dospijeća stavke generiran stavkom modela '%s' od modela '%s' se " +"bazira na načinu plaćanja partnera!\n" +"Molimo odredite partnera na njemu!" #. module: account #: report:account.account.balance:0 @@ -4260,7 +4452,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,product_qty:0 msgid "Qty" -msgstr "Kol." +msgstr "Količina" #. module: account #: help:account.tax.code,sign:0 @@ -4544,7 +4736,7 @@ msgstr "(Treba poništiti zatvaranja računa da biste ga otvorili)" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Analitički konto poreza" #. module: account #: field:account.chart,period_from:0 @@ -4591,6 +4783,7 @@ msgid "" "If you put \"%(year)s\" in the prefix, it will be replaced by the current " "year." msgstr "" +"Ako stavite \"%(year)s\" u prefiks, biti će zamijenjeno sa tekućom godinom." #. module: account #: help:account.account,active:0 @@ -4602,7 +4795,7 @@ msgstr "Neaktivna konta se neće prikazivati u listama odabira." #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "" +msgstr "Knjižene temeljnice" #. module: account #: field:account.move.line,blocked:0 @@ -4665,7 +4858,7 @@ msgstr "Otkaži odabrane račune" #: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" -msgstr "" +msgstr "Morate dodijeliti analitički dnevnik na '%s' dnevniku!" #. module: account #: model:process.transition,note:account.process_transition_supplieranalyticcost0 @@ -4691,6 +4884,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za podešavanje novog bankovnog računa. \n" +"

\n" +" Podesite bankovni račun vaše kompanije i odaberite one koji se\n" +" moraju pojaviti u podnožju izvještaja.\n" +"

\n" +" Ako koristite računovodstvo OpenERPa, dnevnici i\n" +" konta će se kreirati automatski na bazi ovih podataka.\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4725,12 +4928,12 @@ msgstr "Mjesec" #: code:addons/account/account.py:668 #, python-format msgid "You cannot change the code of account which contains journal items!" -msgstr "" +msgstr "Ne možete mijenjati šifru konta koji ima stavke dnevnika!" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "Brojevni krug ulaznih računa" +msgstr "Sekvenca ulaznih računa" #. module: account #: code:addons/account/account_invoice.py:610 @@ -4740,6 +4943,8 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" +"Nije moguće pronaći kontni pan, trebate kreirati jedan iz Postavke\\" +"Konfiguracija\\Računovodstvo izbornika." #. module: account #: field:account.entries.report,product_uom_id:0 @@ -4761,7 +4966,7 @@ msgstr "Tip konta" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Banka i čekovi" #. module: account #: field:account.account.template,note:0 @@ -4771,14 +4976,14 @@ msgstr "Bilješka" #. module: account #: selection:account.financial.report,sign:0 msgid "Reverse balance sign" -msgstr "" +msgstr "Obrnuti predznak" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "" +msgstr "Bilanca (konta pasive)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4789,7 +4994,7 @@ msgstr "Ostavite prazno za trenutni datum" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Podzbroj zatvaranja" #. module: account #: field:account.tax,base_code_id:0 @@ -4801,7 +5006,7 @@ msgstr "Porezna grupa osnovice" #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." -msgstr "" +msgstr "Morate predvidjeti konto za otpis / tečajnu razliku." #. module: account #: help:res.company,paypal_account:0 @@ -4834,12 +5039,12 @@ msgstr "Sve proknjižene stavke" #. module: account #: field:report.aged.receivable,name:0 msgid "Month Range" -msgstr "Raspon Mjeseci" +msgstr "Mjesečni raspon" #. module: account #: help:account.analytic.balance,empty_acc:0 msgid "Check if you want to display Accounts with 0 balance too." -msgstr "Check if you want to display Accounts with 0 balance too." +msgstr "Označite ako želite prikazivati konta sa saldom 0 također." #. module: account #: field:account.move.reconcile,opening_reconciliation:0 @@ -4870,6 +5075,7 @@ msgid "" "There is currently no company without chart of account. The wizard will " "therefore not be executed." msgstr "" +"Trenutno nema kompanije bez kontnog plana. Čarobnjak se neće pokretati." #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart @@ -4889,7 +5095,7 @@ msgstr "Referenca plaćanja" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Main Title 1 (bold, underlined)" -msgstr "" +msgstr "Glavni naslov 1 (podebljan, podvučeni)" #. module: account #: report:account.analytic.account.balance:0 @@ -4900,7 +5106,7 @@ msgstr "Naziv konta" #. module: account #: help:account.fiscalyear.close,report_name:0 msgid "Give name of the new entries" -msgstr "Give name of the new entries" +msgstr "Nazovi nove stavke" #. module: account #: model:ir.model,name:account.model_account_invoice_report @@ -4915,13 +5121,13 @@ msgstr "Tečaj" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 msgid "Bank statements are entered in the system." -msgstr "Bank statements are entered in the system." +msgstr "Izvodi se unose u sustav." #. module: account #: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" -msgstr "Otpis" +msgstr "Zatvaranje s otpisom." #. module: account #: view:account.account.template:0 @@ -4968,7 +5174,7 @@ msgstr "Naziv perioda mora biti jedinstven unutar tvrtke" #. module: account #: help:wizard.multi.charts.accounts,currency_id:0 msgid "Currency as per company's country." -msgstr "" +msgstr "Valuta prema državi kompanije." #. module: account #: view:account.tax:0 @@ -4988,6 +5194,9 @@ msgid "" "you want to generate accounts of this template only when loading its child " "template." msgstr "" +"Isključite ovo ako ne želite da se ovaj predložak aktivno koristi u " +"čarobnjaku koji generira kontni plan iz predložaka. Ovo je vrlo korisno kada " +"želite generirati konta ovog predloška samo iz podređenog predloška." #. module: account #: view:account.use.model:0 @@ -4998,7 +5207,7 @@ msgstr "Stvori stavke iz modela" #: field:account.account,reconcile:0 #: field:account.account.template,reconcile:0 msgid "Allow Reconciliation" -msgstr "Allow Reconciliation" +msgstr "Dozvoli zatvaranje" #. module: account #: constraint:account.account:0 @@ -5006,6 +5215,8 @@ msgid "" "Error!\n" "You cannot create an account which has parent account of different company." msgstr "" +"Greška!\n" +"Ne možete kreirati konto koji ima nadređeni konto druge komapnije." #. module: account #: code:addons/account/account_invoice.py:658 @@ -5016,6 +5227,10 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" +"Nema dnevnika tipa %s za ovu kompaniju.\n" +"\n" +"Možete kreirati jedan iz izbornika: \n" +"Konfiguracija\\Dnevnici\\Dnevnici." #. module: account #: report:account.vat.declaration:0 @@ -5031,7 +5246,7 @@ msgstr "ECNJ" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report msgid "Account Analytic Cost Ledger For Journal Report" -msgstr "Account Analytic Cost Ledger For Journal Report" +msgstr "Analitički troškovnik za izvještaj dnevnika" #. module: account #: model:ir.actions.act_window,name:account.action_model_form @@ -5041,7 +5256,7 @@ msgstr "Ponavljajući modeli" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Podređeni porezi" #. module: account #: xsl:account.transfer:0 @@ -5068,7 +5283,7 @@ msgstr "Opišite kad uzimate novac iz blagajne :" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Cancelled" -msgstr "Otkazani" +msgstr "Otkazano" #. module: account #: help:account.config.settings,group_proforma_invoices:0 @@ -5163,6 +5378,9 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Kada se kreira razdoblje dnevnika. Status je 'nacrt'. Ako je izvještaj " +"ispisan postaje 'ispisan' status. Kada su sve transakcije završene, prelazi " +"u 'završen' status." #. module: account #: code:addons/account/account.py:3205 @@ -5191,7 +5409,7 @@ msgstr "Računi" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 msgid "Check this box if this company is a legal entity." -msgstr "Označite ovjde ako je ova Tvrtka zasebna pravna osoba" +msgstr "Označite ovdje ako je ova kompanija zasebna pravna osoba" #. module: account #: model:account.account.type,name:account.conf_account_type_chk @@ -5247,7 +5465,7 @@ msgstr "Fakturirano" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "" +msgstr "Knjižene temeljnice" #. module: account #: view:account.use.model:0 @@ -5261,9 +5479,9 @@ msgid "" "account if this is a Customer Invoice or Supplier Refund, otherwise a " "Partner bank account number." msgstr "" -"Broj bankovnog računa na koji račun treba biti uplaćen. Broj računa " -"Organizacije ukoliko je ovo izlazni račun ili povrat od dobavljača, u " -"protivnom broj računa partnera ." +"Broj bankovnog računa na koji račun treba biti uplaćen. Broj računa tvrtke " +"ukoliko je ovo izlazni račun ili povrat od dobavljača, u protivnom broj " +"računa partnera ." #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 @@ -5308,6 +5526,8 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." msgstr "" +"Postavite predodređeni konto za stavke poreza na računima. Ostavite prazno " +"za konto troškova." #. module: account #: code:addons/account/account.py:890 @@ -5318,7 +5538,7 @@ msgstr "Početni period" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "" +msgstr "Temeljnice za pregledati" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 @@ -5360,7 +5580,7 @@ msgstr "Aktivan" #: view:account.bank.statement:0 #: field:account.journal,cash_control:0 msgid "Cash Control" -msgstr "Kontrola Gotovine" +msgstr "Kontrola gotovine" #. module: account #: field:account.analytic.balance,date2:0 @@ -5390,7 +5610,7 @@ msgstr "Saldo po vrsti konta" #: code:addons/account/account_cash_statement.py:301 #, python-format msgid "There is no %s Account on the journal %s." -msgstr "" +msgstr "Nema %s konta na dnevniku %s." #. module: account #: model:res.groups,name:account.group_account_user @@ -5403,11 +5623,13 @@ msgid "" "From this view, have an analysis of your treasury. It sums the balance of " "every accounting entries made on liquidity accounts per period." msgstr "" +"Iz ovog pogleda imate analizu vaših financija. Zbraja saldo svakog unosa na " +"kontima likvidnosti po periodu." #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "Voditelj Financija" +msgstr "Voditelj financija" #. module: account #: field:account.journal,group_invoice_lines:0 @@ -5428,7 +5650,7 @@ msgstr "Temeljnice" #: field:account.bank.statement,details_ids:0 #: view:account.journal:0 msgid "CashBox Lines" -msgstr "" +msgstr "Stavke blagajne" #. module: account #: model:ir.model,name:account.model_account_vat_declaration @@ -5442,7 +5664,7 @@ msgid "" "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" "Ukoliko ne označite ovo polje, možete izrađivati račune i vršiti plaćanja, " -"ali bez računovodstva (Dnevnici, Kontni plan, isl)" +"ali bez računovodstva (dnevnici, kontni plan, ...)" #. module: account #: view:account.period:0 @@ -5518,12 +5740,14 @@ msgstr "Ciljna knjiženja" msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" msgstr "" +"Temeljnica ne može biti brisana ako je povezana sa računom. (Račun: %s -" +"Temeljnica br:%s)" #. module: account #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "" +msgstr "Brojevi otvaranja" #. module: account #: field:account.subscription,period_type:0 @@ -5562,13 +5786,16 @@ msgid "" "encode the sale and purchase rates or choose from list of taxes. This last " "choice assumes that the set of tax defined on this template is complete" msgstr "" +"Ovaj izbor vam pomaže odlučiti da li želite korisniku predložiti da unosi " +"stope poreza kod nabave i prodaje ili da odabere iz popisa poreza. Ovo drugo " +"podrazumijeva da je set poreza na ovom predlošku potpun." #. module: account #: view:account.financial.report:0 #: field:account.financial.report,children_ids:0 #: model:ir.model,name:account.model_account_financial_report msgid "Account Report" -msgstr "" +msgstr "Izvještaj konta" #. module: account #: field:account.entries.report,year:0 @@ -5601,11 +5828,14 @@ msgid "" "Put a sequence in the journal definition for automatic numbering or create a " "sequence manually for this piece." msgstr "" +"Nije moguće kreirati automatsku sekvencu za ovaj dio.\n" +"Stavite sekvencu u definiciju dnevnika za automatsku dodjelu broja ili " +"kreirate sekvencu ručno za ovaj dio." #. module: account #: view:account.invoice:0 msgid "Pro Forma Invoice " -msgstr "PredRačun " +msgstr "Predračun " #. module: account #: selection:account.subscription,period_type:0 @@ -5616,7 +5846,7 @@ msgstr "mjesec" #: view:account.move.line:0 #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "Slijedeći partner za zatvaranje" +msgstr "Sljedeći partner za zatvaranje" #. module: account #: field:account.invoice.tax,account_id:0 @@ -5636,7 +5866,7 @@ msgstr "Bilanca stanja" #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "Dobit i gubitak (konto prihoda)" +msgstr "RDG (konta prihoda)" #. module: account #: field:account.journal,allow_date:0 @@ -5756,7 +5986,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "Dozvoli odažuriranje knjiženja" +msgstr "Dozvoli otkazivanje knjiženja" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -5767,7 +5997,8 @@ msgid "" "Please define partner on it!" msgstr "" "Datum dospijeća stavke unosa generira se od strane modela linije '%s', te se " -"temelji se na roku plaćanja partnera! NMolimo definirati partnera!" +"temelji se na roku plaćanja partnera! \n" +"Molimo definirajte partnera!" #. module: account #: field:account.tax.code,sign:0 @@ -5777,7 +6008,7 @@ msgstr "Koeficijent za nadređenog" #. module: account #: report:account.partner.balance:0 msgid "(Account/Partner) Name" -msgstr "Naziv (Konta/Partnera)" +msgstr "Naziv (konta/partnera)" #. module: account #: field:account.partner.reconcile.process,progress:0 @@ -5803,7 +6034,7 @@ msgstr "Ponovo izračunaj poreze i ukupni iznos" #: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." -msgstr "" +msgstr "Ne možete mijenjati/brisati dnevnik sa unosima za ovaj period." #. module: account #: field:account.tax.template,include_base_amount:0 @@ -5834,6 +6065,7 @@ msgstr "Izračun iznosa" #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" +"Ne možete dodavati/mijenjati unose u zatvorenom periodu %s dnevnika %s." #. module: account #: view:account.journal:0 @@ -5844,7 +6076,7 @@ msgstr "Kontrole unosa" #: view:account.analytic.chart:0 #: view:project.account.analytic.line:0 msgid "(Keep empty to open the current situation)" -msgstr "(prazno za trenutno stanje)" +msgstr "(Zadržite prazno da biste otvorili trenutno stanje)" #. module: account #: field:account.analytic.balance,date1:0 @@ -5858,12 +6090,12 @@ msgstr "Početak razdoblja" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 msgid "Asset View" -msgstr "" +msgstr "Pogled aktive" #. module: account #: model:ir.model,name:account.model_account_common_account_report msgid "Account Common Account Report" -msgstr "Account Common Account Report" +msgstr "Izvještaj za uobičajena konta" #. module: account #: view:account.analytic.account:0 @@ -5891,6 +6123,9 @@ msgid "" "that you should have your last line with the type 'Balance' to ensure that " "the whole amount will be treated." msgstr "" +"Odaberite vrstu ovjere povezanu sa ovim načinom plaćanja. Imajte na umu da " +"vaša zadnja stavka mora biti tip 'saldo' kako bi osigurali da će cijeli " +"iznos biti zahvaćen." #. module: account #: field:account.partner.ledger,initial_balance:0 @@ -5951,9 +6186,9 @@ msgid "" "something to reconcile or not. This figure already count the current partner " "as reconciled." msgstr "" -"This is the remaining partners for who you should check if there is " -"something to reconcile or not. This figure already count the current partner " -"as reconciled." +"Ovo su preostali partneri za koje biste trebali provjeriti da li je ostalo " +"nešto za zatvaranje ili ne. Ova brojka već uključuje trenutnog partnera kao " +"zatvorenog." #. module: account #: view:account.subscription.line:0 @@ -5985,7 +6220,7 @@ msgstr "Promjeni valutu" #: model:process.node,note:account.process_node_accountingentries0 #: model:process.node,note:account.process_node_supplieraccountingentries0 msgid "Accounting entries." -msgstr "Accounting entries." +msgstr "Računovodstveni unosi." #. module: account #: view:account.invoice:0 @@ -5996,7 +6231,7 @@ msgstr "Datum plaćanja" #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Stavke početnog stanja blagajne" #. module: account #: view:account.analytic.account:0 @@ -6041,7 +6276,7 @@ msgstr "Količina" #. module: account #: view:account.move.line:0 msgid "Number (Move)" -msgstr "Broj (Temeljnice)" +msgstr "Broj (temeljnice)" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -6051,7 +6286,7 @@ msgstr "Normalni tekst" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 msgid "Payment entries are the second input of the reconciliation." -msgstr "Payment entries are the second input of the reconciliation." +msgstr "Stavke plaćanja su drugi unos zatvaranja." #. module: account #: help:res.partner,property_supplier_payment_term:0 @@ -6059,6 +6294,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Ovaj će se način plaćanja koristiti kao predodređen za naloge za nabavu i " +"ulazne račune." #. module: account #: help:account.automatic.reconcile,power:0 @@ -6121,7 +6358,7 @@ msgstr "Zatvaranje s otpisom nezatvorenog dijela" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." -msgstr "" +msgstr "Ne možete kreirati stavke dnevnika na kontu koji je pogled." #. module: account #: selection:account.payment.term.line,value:0 @@ -6250,7 +6487,7 @@ msgstr "Slobodna vezna oznaka" #: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" -msgstr "Konta potraživanja i dugovanja partnera" +msgstr "Dugovna i potražna konta" #. module: account #: field:account.fiscal.position.account.template,position_id:0 @@ -6260,13 +6497,13 @@ msgstr "Fiskalno mapiranje" #. module: account #: view:account.config.settings:0 msgid "Select Company" -msgstr "Odaberite Tvrtku" +msgstr "Odaberite kompaniju" #. module: account #: model:ir.actions.act_window,name:account.action_account_state_open #: model:ir.model,name:account.model_account_state_open msgid "Account State Open" -msgstr "Stanje konta Otvoren" +msgstr "Stanje konta otvoren" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -6286,9 +6523,9 @@ msgid "" "document shows your debit and credit taking in consideration some criteria " "you can choose by using the search tool." msgstr "" -"From this view, have an analysis of your different financial accounts. The " -"document shows your debit and credit taking in consideration some criteria " -"you can choose by using the search tool." +"Iz ovog pogleda imate analizu vaših različitih financijskih konta. Dokument " +"pokazuje vaše dugove i potražne stavke uzimajući u obzir neke kriterije " +"koristeći alat pretrage." #. module: account #: help:account.partner.reconcile.process,progress:0 @@ -6296,8 +6533,8 @@ msgid "" "Shows you the progress made today on the reconciliation process. Given by \n" "Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" msgstr "" -"Shows you the progress made today on the reconciliation process. Given by \n" -"Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" +"Prikazuje vaš današnji napredak u postupku zatvaranja. Daje ih\n" +"partneri zatvoreni danas\\ (preostali partneri + partneri zatvoreni danas)" #. module: account #: field:account.invoice,period_id:0 @@ -6305,7 +6542,7 @@ msgstr "" #: field:report.account.sales,period_id:0 #: field:report.account_type.sales,period_id:0 msgid "Force Period" -msgstr "Forsiraj razdoblje" +msgstr "Obračunski period" #. module: account #: model:ir.actions.act_window,help:account.action_account_form @@ -6324,6 +6561,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikni za dodavanje konta.\n" +"

\n" +" Konto je dio glavne knjige i dozvoljava vašoj kompaniji\n" +" evidenciju svih rsta dugovnih i potražnih transakcija.\n" +" Kompanije podnose svoja godišnje izvješće po kontima u\n" +" dva glavna dijela: bilanca stanja i račun dobiti i gubitka.\n" +" Godišnje izvješće je zakonska obveza.\n" +"

\n" +" " #. module: account #: view:account.invoice.report:0 @@ -6359,7 +6606,7 @@ msgstr "Filtriraj po" #: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" -msgstr "" +msgstr "Imate pogrešan izraz \"%(...)s\" u vašem modelu !" #. module: account #: view:account.tax.template:0 @@ -6369,7 +6616,7 @@ msgstr "Kod za izračun cijena sa uključenim porezima" #. module: account #: help:account.bank.statement,balance_end:0 msgid "Balance as calculated based on Starting Balance and transaction lines" -msgstr "" +msgstr "Saldo se računa na bazi početnog stanja i transakcija." #. module: account #: field:account.journal,loss_account_id:0 @@ -6397,6 +6644,11 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" +"Ručno kreirane temeljnice su obično u statusu 'neknjižen', ali možete " +"postaviti opciju da preskače taj status na povezanom dnevniku. U tom " +"slučaju, ponašati će se kao temeljnice koje sistem kreira automatski na " +"potvrdi dokumenata (računi, izvodi ...) i biti će kreirane u statusu " +"'knjiženo'." #. module: account #: field:account.payment.term.line,days:0 @@ -6410,6 +6662,8 @@ msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" +"Ne možete knjižiti ovu temeljnicu jer konto \"%s\" ne pripada kontnom planu " +"\"%s\"." #. module: account #: view:account.financial.report:0 @@ -6448,12 +6702,12 @@ msgstr "Odobrenja kupcima" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Inozemni saldo" #. module: account #: field:account.journal.period,name:0 msgid "Journal-Period Name" -msgstr "Naziv dnevnika-razdoblja" +msgstr "Naziv dnevnik-period" #. module: account #: field:account.invoice.tax,factor_base:0 @@ -6473,7 +6727,7 @@ msgstr "Dozvoljava korištenje više valuta" #. module: account #: view:account.subscription:0 msgid "Running Subscription" -msgstr "" +msgstr "Pretplata u toku" #. module: account #: report:account.invoice:0 @@ -6498,6 +6752,8 @@ msgid "" "This journal will be created automatically for this bank account when you " "save the record" msgstr "" +"Ovaj dnevnik će biti kreiran automatski za ovaj bankovni račun kada snimite " +"zapis." #. module: account #: view:account.analytic.line:0 @@ -6532,7 +6788,7 @@ msgstr "" #: view:account.chart.template:0 #: field:account.chart.template,account_root_id:0 msgid "Root Account" -msgstr "Korijensko konto" +msgstr "Osnovni konto" #. module: account #: field:res.partner,last_reconciliation_date:0 @@ -6557,6 +6813,8 @@ msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Ne možete otkazati račun koji je djelomićno plaćen. Morate prvo razvezati " +"stavke zatvaranja." #. module: account #: field:product.template,taxes_id:0 @@ -6591,6 +6849,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za unos odobrenja dobavljača.\n" +"

\n" +" Umjesto ručnog kreiranja odobrenja dobavljača, možete " +"generirati \n" +" odobrenja i zatvarati ih direktno iz povezanog ulaznog " +"računa.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6613,6 +6880,9 @@ msgid "" "choice assumes that the set of tax defined for the chosen template is " "complete" msgstr "" +"Odaberite da li želite predložiti korisniku da unosi prodajni i nabavni " +"porez ili koristi uobičajena više na jedan polja. Zadnji izbor pretpostavlja " +"da je set poreza definiran u odabranom predlošku potpun." #. module: account #: report:account.vat.declaration:0 @@ -6632,12 +6902,12 @@ msgstr "Otvoreni i plaćeni računi" #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children flat" -msgstr "" +msgstr "Prikaži podređene bez grupiranja" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "Banka i Gotovina" +msgstr "Banka i gotovina" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 @@ -6720,13 +6990,14 @@ msgstr "Potraživanja" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "" +msgstr "Ne možete kreirati stavke dnevnika na zatvorenom kontu." #. module: account #: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" +"Kompanija iz stavke temeljnice i kompanija iz računa se ne poklapaju." #. module: account #: view:account.invoice:0 @@ -6741,7 +7012,7 @@ msgstr "Zadani konto potražuje" #. module: account #: help:account.analytic.line,currency_id:0 msgid "The related account currency if not equal to the company one." -msgstr "The related account currency if not equal to the company one." +msgstr "Povezani konto valute ako nije jednak onom od kompanije." #. module: account #: code:addons/account/installer.py:69 @@ -6774,7 +7045,7 @@ msgstr "Konto internog prijenosa" #: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" -msgstr "" +msgstr "Molimo provjerite da je polje 'dnevnik' postavljeno na izvodu" #. module: account #: selection:account.tax,type:0 @@ -6784,7 +7055,7 @@ msgstr "Postotak" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "Zaokruži Globalno" +msgstr "Zaokruži" #. module: account #: selection:account.report.general.ledger,sortby:0 @@ -6800,7 +7071,7 @@ msgstr "Eksponent" #: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." -msgstr "" +msgstr "Nije moguće generirati nekorištenu šifru dnevnika." #. module: account #: view:project.account.analytic.line:0 @@ -6824,12 +7095,12 @@ msgid "" "Indicates if the amount of tax must be included in the base amount for the " "computation of the next taxes" msgstr "" -"Iznos poreza treba uključiti u osnovicu prilikom izračuna slijedećih poreza." +"Iznos poreza treba uključiti u osnovicu prilikom izračuna sljedećih poreza." #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile msgid "Reconciliation: Go to Next Partner" -msgstr "Zatvaranje: Idi na slijedećeg partnera" +msgstr "Zatvaranje: Idi na sljedećeg partnera" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance @@ -6851,6 +7122,10 @@ msgid "" "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." msgstr "" +"Ako koristiti uvjete plaćanja, datum dospijeća će biti automatski izračunat " +"u trenutku nastanka knjiženja. Uvjeti plaćanja mogu računati nekoliko datuma " +"dospijeća, npr. 50% odmah i 50% za mjesec dana, ali ako želite prisiliti " +"datum dopsijeća, osigurajte da uvjet plaćanja nije postavljen na računu." #. module: account #: code:addons/account/account.py:414 @@ -6859,8 +7134,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" -"Nema početnog/završnog stanja definiranog. Molimo napravite jedna za početni " -"saldo." +"Nije definiran period početnog/završnog stanja. Molimo napravite jedan da bi " +"postavili početni saldo." #. module: account #: help:account.tax.template,sequence:0 @@ -6869,10 +7144,9 @@ msgid "" "higher ones. The order is important if you have a tax that has several tax " "children. In this case, the evaluation order is important." msgstr "" -"Sekvenciono polje se koristi da bi se poredjali porezi od najmanjeg do " -"najveceg. Ovaj poredak je vazan, narocito ukoliko imate poreze koji, opet " -"imaju nekoliko podredjenih poreza. U tom slucaju, ovaj evaluacioni poredak " -"je vazan." +"Sekvenciono polje se koristi da bi poredali stavke poreza od najmanjeg do " +"najvećeg. Ovaj poredak je važan ukoliko imate poreze koji, imaju nekoliko " +"podređenih poreza. U tom slučaju, važaj je slijed evaluacije poreza." #. module: account #: code:addons/account/account.py:1448 @@ -6937,10 +7211,10 @@ msgid "" "the tool search to analyse information about analytic entries generated in " "the system." msgstr "" -"From this view, have an analysis of your different analytic entries " -"following the analytic account you defined matching your business need. Use " -"the tool search to analyse information about analytic entries generated in " -"the system." +"Iz ovog pogleda imate analizu vaših različitih analičkih unosa prateći " +"analitički konto koji ste definirali prema vašim poslovnim potrebama. " +"Koristite alat pretraživanja za analizu informacija o analitičkim unosima " +"generiranim u sustavu." #. module: account #: sql_constraint:account.journal:0 @@ -6959,6 +7233,7 @@ msgid "" "You cannot change the owner company of an account that already contains " "journal items." msgstr "" +"Ne možete mijenjati kompaniju vlasnika na kontu koji već sadrži temeljnice." #. module: account #: report:account.invoice:0 @@ -7010,6 +7285,8 @@ msgid "" "There is no period defined for this date: %s.\n" "Please create one." msgstr "" +"Za ovaj datum nije definirano razdoblje: %s.\n" +"Molim Vas da ga kreirate." #. module: account #: field:account.analytic.line,product_uom_id:0 @@ -7030,7 +7307,7 @@ msgstr "" #. module: account #: field:account.installer,has_default_company:0 msgid "Has Default Company" -msgstr "" +msgstr "Ima predefiniranu tvrtku" #. module: account #: model:ir.model,name:account.model_account_sequence_fiscalyear @@ -7060,6 +7337,7 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"Postoci za stavke uvjeta plaćanja moraju biti između 0 i 1, npr. 0.02 za 2%." #. module: account #: report:account.invoice:0 @@ -7093,6 +7371,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" +"Ako razvežete transakcije, morate također verificcirati sve akcije povezane " +"sa tim transakcijama jer one neće biti onemogućene." #. module: account #: view:account.account.template:0 @@ -7114,12 +7394,12 @@ msgstr "Statistike analitike" #: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " -msgstr "Stavke: " +msgstr "Temeljnice: " #. module: account #: help:res.partner.bank,currency_id:0 msgid "Currency of the related account journal." -msgstr "" +msgstr "Valuta povezanog računovodstvenog dnevnika" #. module: account #: constraint:account.move.line:0 @@ -7127,6 +7407,7 @@ msgid "" "You cannot provide a secondary currency if it is the same than the company " "one." msgstr "" +"Ne možete odrediti sekundarnu valutu ako je ista kao i valuta kompanije." #. module: account #: selection:account.tax.template,applicable_type:0 @@ -7138,17 +7419,17 @@ msgstr "Točno" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Bilanca stanja (konta aktive)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 msgid "State is draft" -msgstr "Stanje je 'Nacrt'" +msgstr "Stanje je 'nacrt'" #. module: account #: view:account.move.line:0 msgid "Total debit" -msgstr "Total debit" +msgstr "Ukupno duguje" #. module: account #: view:account.move.line:0 @@ -7158,7 +7439,7 @@ msgstr "Sljedeća stavka za zatvaranje" #. module: account #: report:account.invoice:0 msgid "Fax :" -msgstr "Fax:" +msgstr "Faks:" #. module: account #: help:res.partner,property_account_receivable:0 @@ -7183,7 +7464,7 @@ msgstr "Python kod" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current period" -msgstr "" +msgstr "Stavke dnevnika sa razdobljem u trenutnom razdoblju" #. module: account #: help:account.journal,update_posted:0 @@ -7209,7 +7490,7 @@ msgstr "Stvori stavku" #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "Dobit i gubitak (konto troška)" +msgstr "RDG (konta troška)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 @@ -7220,7 +7501,7 @@ msgstr "Ukupno transakcija" #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." -msgstr "" +msgstr "Nije moguće pobrisati konto koji ima knjiženja (stavke u dnevniku)." #. module: account #: code:addons/account/account.py:1024 @@ -7237,14 +7518,14 @@ msgstr "Stil financijskog izvješća" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "" +msgstr "Zadrži predznak" #. module: account #: view:account.vat.declaration:0 #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "Porezni Izvestaj" +msgstr "Porezne prijave" #. module: account #: selection:account.journal.period,state:0 @@ -7264,7 +7545,7 @@ msgstr "Ručno" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "Otkaži : kreiraj povrat i zatvori." +msgstr "Otkaži : kreiraj povrat i zatvori" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 @@ -7300,6 +7581,9 @@ msgid "" "row to display the amount of debit/credit/balance that precedes the filter " "you've set." msgstr "" +"Ako ste odabrali filter po datumu ili periodu, ovo polje će vam omogućiti da " +"dodate redak za prikaz iznosa duguje/potražuje/saldo koje prethodi filteru " +"koji ste postavili." #. module: account #: view:account.bank.statement:0 @@ -7308,7 +7592,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "Stavke" +msgstr "Temeljnice" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 @@ -7354,12 +7638,12 @@ msgstr "Da" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "Sve stavke" +msgstr "Sve temeljnice" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "" +msgstr "Moguće je zatvoriti samo stavke istog partnera." #. module: account #: view:account.journal.select:0 @@ -7419,7 +7703,7 @@ msgstr "Kompletan popis poreza" #, python-format msgid "" "Selected Entry Lines does not have any account move enties in draft state." -msgstr "" +msgstr "Odabrane stavke nemaju knjiženja koja su u statusu nacrta." #. module: account #: view:account.chart.template:0 @@ -7449,6 +7733,8 @@ msgid "" "Configuration error!\n" "The currency chosen should be shared by the default accounts too." msgstr "" +"Greška konfiguracije!\n" +"Odabranu valutu je potrebno dijeliti i kod predodređenih konta." #. module: account #: code:addons/account/account.py:2304 @@ -7538,11 +7824,14 @@ msgid "" "Make sure you have configured payment terms properly.\n" "The latest payment term line should be of the \"Balance\" type." msgstr "" +"Ne možete potvrditi unos koji nije u ravnoteži.\n" +"Provjerite da li ste podesili uvjete plaćanja kako treba.\n" +"Zadnja linija načina plaćanja mora biti tip \"saldo\"." #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "A statement with manual entries becomes a draft statement." +msgstr "Stavka sa ručnim unosom postaje stavka u nacrtu." #. module: account #: view:account.aged.trial.balance:0 @@ -7579,6 +7868,8 @@ msgid "" "You cannot define children to an account with internal type different of " "\"View\"." msgstr "" +"Greška prilikom konfiguracije!\n" +"Nije moguće dodijeliti podkonta kontu koji nije 'Pogled'." #. module: account #: model:ir.model,name:account.model_accounting_report @@ -7609,12 +7900,12 @@ msgstr "" msgid "For taxes of type percentage, enter % ratio between 0-1." msgstr "" "Za poreze koji se računaju putem postotka upišite vrijednost između 0 i 1. " -"Npr. 0,23 za 23%." +"Npr. 0,25 za 25%." #. module: account #: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy msgid "Financial Reports Hierarchy" -msgstr "Hijerarhijski Financijski izvještaji" +msgstr "Hijerarhija financijskog izvještaja" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation @@ -7651,7 +7942,7 @@ msgstr "Sigurno želite otvoriti ovaj račun?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "" +msgstr "Konto troška početnog stanja" #. module: account #: view:account.invoice:0 @@ -7672,7 +7963,7 @@ msgstr "Cijena" #: view:account.bank.statement:0 #: field:account.bank.statement,closing_details_ids:0 msgid "Closing Cashbox Lines" -msgstr "" +msgstr "Zatvaranje stavaka blagajne" #. module: account #: view:account.bank.statement:0 @@ -7690,7 +7981,7 @@ msgstr "Uobičajeni konto za dugovni iznos" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Knjižene temeljnice" #. module: account #: help:account.payment.term.line,value_amount:0 @@ -7723,7 +8014,7 @@ msgstr "Ukupan iznos dugovanja kupca" #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "" +msgstr "Stavke dnevnika koje nisu u ravnoteži" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -7743,7 +8034,7 @@ msgstr "U redu" #. module: account #: field:account.chart.template,tax_code_root_id:0 msgid "Root Tax Code" -msgstr "Korijenska porezna grupa" +msgstr "Šifra glavnog konta" #. module: account #: help:account.journal,centralisation:0 @@ -7764,7 +8055,7 @@ msgstr "Zatvoren" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "Redak bankovnog izvoda" +msgstr "Stavka bankovnog izvoda" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 @@ -7774,7 +8065,7 @@ msgstr "Uobičajen porez nabave" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Konto prihoda za početno stanje" #. module: account #: field:account.config.settings,group_proforma_invoices:0 @@ -7815,12 +8106,12 @@ msgstr "Stvori stavke" #. module: account #: model:ir.model,name:account.model_cash_box_out msgid "cash.box.out" -msgstr "" +msgstr "cash.box.out" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "Glavna valuta Tvrtke" +msgstr "Glavna valuta kompanije" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports @@ -7866,6 +8157,11 @@ msgid "" " with the invoice. You will not be able " "to modify the credit note." msgstr "" +"Koristite ovu opciju ako želite stornirati račun.\n" +" Kreirati će se novi storno dokument koji " +"će zatvoriti ovaj \n" +" račun. Stornirani dokument ne možete " +"modificirati." #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -7874,8 +8170,8 @@ msgid "" "the system to go through the reconciliation process, based on the latest day " "it have been reconciled." msgstr "" -"Pokazuje slijedećeg partnera u procesu zatvaranja IOS-a, a prema zadnjem " -"danu zatvaranja IOS-a." +"Pokazuje sljedećeg partnera u procesu zatvaranja IOS-a, a prema zadnjem danu " +"zatvaranja IOS-a." #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 @@ -7900,6 +8196,8 @@ msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" +"Ne postoji predefinirani potražni konto \n" +"za dnevnik \"%s\"." #. module: account #: view:account.invoice.line:0 @@ -7938,30 +8236,43 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog analitičkog konta..\n" +"

\n" +" Standardno je struktura kontnog plana definirana zakonima\n" +" propisima svake zemlje. Struktura analitičkih konta\n" +" bi trebala odgovarati potrebama vaše tvrtke.\n" +"

\n" +" Većina poslovnih promjena u OpenERP-u (fakturiranje,\n" +" troškovi, nabava, proizvodnja ...) generiraju analitičke " +"stavke\n" +" na povezanom kontu.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_view msgid "Root/View" -msgstr "" +msgstr "Izvorni/Pogled" #. module: account #: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" -msgstr "" +msgstr "OPEJ" #. module: account #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "Pro-forma" +msgstr "Predračun" #. module: account #: selection:account.entries.report,move_line_state:0 #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "Neuravnotežen" +msgstr "Nije u ravnoteži" #. module: account #: selection:account.move.line,centralisation:0 @@ -8033,7 +8344,7 @@ msgstr "Ne postoji broj dijela !" #: view:account.financial.report:0 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy msgid "Account Reports Hierarchy" -msgstr "" +msgstr "Hijerarhija računovodstvenih izvještaja" #. module: account #: help:account.account.template,chart_template_id:0 @@ -8044,11 +8355,16 @@ msgid "" "few new accounts (You don't need to define the whole structure that is " "common to both several times)." msgstr "" +"Ova opcionalno polje vam omogućava da povežete predložak konta na određeni " +"predložak kontnog plana koji se mogu razlikovati od onog kojem njegov " +"nadređeni pripada. To vam omogućava da definirate predloške koji proširuju " +"druge i upotpunjuju ih sa par novih konta (ne morate definirati cijelu " +"strukturu koja je zajednička za oba nekoliko puta)." #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "" +msgstr "Neknjižene temeljnice" #. module: account #: help:account.invoice.refund,date:0 @@ -8056,6 +8372,8 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" +"Ovaj će se datum koristiti kao datum računa za odobrenja i razdoblje će biti " +"odabrano sukladno tome." #. module: account #: view:product.template:0 @@ -8069,6 +8387,7 @@ msgid "" "You have to set a code for the bank account defined on the selected chart of " "accounts." msgstr "" +"Morate odrediti šifru za bankovni račun definiran na odabranom kontnom planu." #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile @@ -8108,7 +8427,7 @@ msgstr "Otkaži odabrane račune" #: help:account.account.type,report_type:0 msgid "" "This field is used to generate legal reports: profit and loss, balance sheet." -msgstr "" +msgstr "Ovo se polje koristi za generiranje izvještaja: RDG, bilanca" #. module: account #: selection:account.entries.report,month:0 @@ -8136,16 +8455,17 @@ msgid "" "The sequence field is used to order the resources from lower sequences to " "higher ones." msgstr "" +"Polje sekvenca se koristi za redosljed resursa od niže sekvence prema višima." #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "Ostatak iznosa u valuti" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 msgid "Credit note sequence" -msgstr "" +msgstr "Sekvenca odobrenja" #. module: account #: model:ir.actions.act_window,name:account.action_validate_account_move @@ -8194,6 +8514,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Povrat baziran na ovom tipu. Ne možete mijenjati i otkazati ako je račun već " +"zatvoren." #. module: account #: field:account.bank.statement.line,sequence:0 @@ -8211,12 +8533,12 @@ msgstr "Sekvenca" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "Paypal račun" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Broj temeljnice" #. module: account #: view:account.financial.report:0 @@ -8230,11 +8552,13 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Greška!\n" +"Ne možete kreirati rekurzivna konta." #. module: account #: model:ir.model,name:account.model_cash_box_in msgid "cash.box.in" -msgstr "" +msgstr "cash.box.in" #. module: account #: help:account.invoice,move_id:0 @@ -8244,7 +8568,7 @@ msgstr "Poveznica na automatski kreirane stavke knjiženja" #. module: account #: model:ir.model,name:account.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account #: selection:account.config.settings,period:0 @@ -8314,9 +8638,9 @@ msgid "" "to the higher ones. The order is important if you have a tax with several " "tax children. In this case, the evaluation order is important." msgstr "" -"The sequence field is used to order the tax lines from the lowest sequences " -"to the higher ones. The order is important if you have a tax with several " -"tax children. In this case, the evaluation order is important." +"Polje sekvenca se koristi za poredak stavaka poreza od najniže sekvence " +"prema većoj. Redosljed je bitan ako imate porez sa nekoliko podređenih " +"poreza. U tom slučaju bitan je redosljed procjene" #. module: account #: model:ir.model,name:account.model_account_cashbox_line @@ -8371,7 +8695,7 @@ msgstr "Stanje stavke" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile msgid "Account move line reconcile" -msgstr "Account move line reconcile" +msgstr "Zatvaranje stavke temeljnice" #. module: account #: view:account.subscription.generate:0 @@ -8431,8 +8755,7 @@ msgid "" "Select Fiscal Year which you want to remove entries for its End of year " "entries journal" msgstr "" -"Select Fiscal Year which you want to remove entries for its End of year " -"entries journal" +"Odaberi fiskalnu godinu za koju želite ukoliniti temeljnice za kraj godine." #. module: account #: field:account.tax.template,type_tax_use:0 @@ -8453,7 +8776,7 @@ msgstr "" #: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." -msgstr "The account entries lines are not in valid state." +msgstr "Stavke ovog računa su neispravne" #. module: account #: field:account.account.type,close_method:0 @@ -8470,6 +8793,7 @@ msgstr "Automatski upis" msgid "" "Check this box if this account allows reconciliation of journal items." msgstr "" +"Označite ovu stavku ako ovaj konto dozvoljava zatvaranje stavaka dnevnika" #. module: account #: report:account.analytic.account.inverted.balance:0 @@ -8480,7 +8804,7 @@ msgstr "Obrnuti saldo analitike -" #: help:account.move.reconcile,opening_reconciliation:0 msgid "" "Is this reconciliation produced by the opening of a new fiscal year ?." -msgstr "" +msgstr "Da li je ovo zatvaranje pooizvod otvaranja nove fiskalne godine ?" #. module: account #: view:account.analytic.line:0 @@ -8513,7 +8837,7 @@ msgstr "Uk. ostatak" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "" +msgstr "Kontrola početnog stanja blagajne" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 @@ -8553,12 +8877,12 @@ msgstr "Knjiga troškova" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "Nema definirane fiskalne godine za ovu Organizaciju" +msgstr "Nema definirane fiskalne godine za ovu kompaniju" #. module: account #: view:account.invoice:0 msgid "Proforma" -msgstr "Proforma" +msgstr "Predračun" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -8576,13 +8900,13 @@ msgstr "Iznos ovog poreza dodati osnovici prije izračuna slijedećeg poreza." #: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "Knjiga odobrenja dobavljača" +msgstr "Dnevnik odobrenja dobavljača" #. module: account #: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Molimo definirajte sekvencu na dnevniku." #. module: account #: help:account.tax.template,amount:0 @@ -8593,7 +8917,7 @@ msgstr "" #. module: account #: view:account.analytic.account:0 msgid "Current Accounts" -msgstr "" +msgstr "Trenutna konta" #. module: account #: view:account.invoice.report:0 @@ -8612,6 +8936,9 @@ msgid "" "recalls.\n" " This installs the module account_followup." msgstr "" +"Ovo omogućuje automatizaciju dopisa za neplaćene račune, sa opozivima na " +"više razina.\n" +" Instalira modul account_followup." #. module: account #: field:account.automatic.reconcile,period_id:0 @@ -8644,7 +8971,7 @@ msgid "" "Total amount (in Company currency) for transactions held in secondary " "currency for this account." msgstr "" -"Ukupni iznos (u valuti Organizacije) za transakcije izvršene u sekundarnoj " +"Ukupni iznos (u valuti kompanije) za transakcije izvršene u sekundarnoj " "valuti za ovaj konto." #. module: account @@ -8705,6 +9032,9 @@ msgid "" "This wizard will remove the end of year journal entries of selected fiscal " "year. Note that you can run this wizard many times for the same fiscal year." msgstr "" +"Ovaj konfigurator pomaže u micanju stavaka zatvaranja odabrane fiskalne " +"godine. Ovaj je konfigurator moguće koristiti više puta za istu fiskalnu " +"godinu." #. module: account #: report:account.invoice:0 @@ -8714,7 +9044,7 @@ msgstr "Tel.:" #. module: account #: field:account.account,company_currency_id:0 msgid "Company Currency" -msgstr "Valuta organizacije" +msgstr "Valuta tvrtke" #. module: account #: field:account.aged.trial.balance,chart_account_id:0 @@ -8750,12 +9080,12 @@ msgstr "Rezultat zatvaranja" #: field:account.bank.statement,balance_end_real:0 #: field:account.treasury.report,ending_balance:0 msgid "Ending Balance" -msgstr "Ending Balance" +msgstr "Završni saldo" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "Centralizirana protustavka" #. module: account #: help:account.move.line,blocked:0 @@ -8763,7 +9093,7 @@ msgid "" "You can check this box to mark this journal item as a litigation with the " "associated partner" msgstr "" -"Možete provjeriti ovaj okvir kako bi obilježili stavku temeljnice kao " +"Možete označiti ovaj okvir kako bi obilježili stavku temeljnice kao " "poveznicu s pripadajućim partnerom." #. module: account @@ -8775,7 +9105,7 @@ msgstr "Djelomično zatvaranje" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance msgid "Account Analytic Inverted Balance" -msgstr "Account Analytic Inverted Balance" +msgstr "Obrnuti saldo analitičkog konta" #. module: account #: model:ir.model,name:account.model_account_common_report @@ -8792,6 +9122,13 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"Koristite ovu opciju ako želite stornirati račun i kreirati novi u istom " +"koraku.\n" +" Kreirati će se novi storno dokument koji " +"će zatvoriti ovaj \n" +" račun, te novi račun u statusu 'Nacrt' " +"kojega možete \n" +" editirati." #. module: account #: model:process.transition,name:account.process_transition_filestatement0 @@ -8807,7 +9144,7 @@ msgstr "Nepoznata greška!" #. module: account #: model:ir.model,name:account.model_account_move_bank_reconcile msgid "Move bank reconcile" -msgstr "Move bank reconcile" +msgstr "Zatvaranje bankovne temeljnice" #. module: account #: view:account.config.settings:0 @@ -8819,12 +9156,12 @@ msgstr "Primjeni" #: model:ir.actions.act_window,name:account.action_account_type_form #: model:ir.ui.menu,name:account.menu_action_account_type_form msgid "Account Types" -msgstr "Account Types" +msgstr "Vrste konta" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "" +msgstr "${object.company_id.name} Račun (Ref ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1210 @@ -8833,6 +9170,8 @@ msgid "" "You cannot use this general account in this journal, check the tab 'Entry " "Controls' on the related journal." msgstr "" +"Ne možete koristiti ovaj opći konto u ovom dnevniku. Provjerite tab 'kontola " +"unosa' na povezanom dnevniku." #. module: account #: field:account.account.type,report_type:0 @@ -8868,6 +9207,12 @@ msgid "" "You should press this button to re-open it and let it continue its normal " "process after having resolved the eventual exceptions it may have created." msgstr "" +"Ovaj se gumb pojavljuje samo kada je stanje računa 'plaćeno' (pokazujući da " +"je u potpunosti zatvoreno) i opcija automatskog izračuna 'zatvaranja' je " +"ugašena (opisujući da to više nije slučaj). Drugim riječima, račun je " +"razvezan i ne odgovara više stanju 'plaćen'. Trebali bi pritisnuti ovaj gumb " +"da bi ga ponovo otvorili i pustiti da nastavi sa normalnim procesom nakon " +"što se razriješe eventualne iznimke koje bi mogle nastati." #. module: account #: model:ir.actions.act_window,help:account.action_account_journal_form @@ -8887,16 +9232,29 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje dnevnika.\n" +"

\n" +" Dnevnik je nosioc poslovnih promjena nastalih u \n" +" svakodnevnom računovodstvenom poslovanju.\n" +"

\n" +" U praksi se obično koristi po jedan dnevnik za svaki način " +"plaćanja\n" +" (gotovina, transakcijski račun, čekovi), jedan dnevnik " +"nabave, nekoliko \n" +" dnevnika prodaje te jedan općeniti za razne potrebe.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "Fiscalyear Close state" +msgstr "Završno knjiženje fiskalne godine" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "Knjiga odobrenja" +msgstr "Dnevnik povrata" #. module: account #: report:account.account.balance:0 @@ -8914,6 +9272,7 @@ msgstr "Filtriraj po" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"Da bi zatvorili period, morate prvo proknjižiti temeljnice iz tog perioda." #. module: account #: view:account.entries.report:0 @@ -8949,7 +9308,7 @@ msgstr "Redak uvjeta plaćanja" #: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" -msgstr "Dnevnik URA" +msgstr "Dnevnik ulaznik računa" #. module: account #: field:account.invoice,amount_untaxed:0 @@ -8959,7 +9318,7 @@ msgstr "Podzbroj" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "Ispis porezne izjave" +msgstr "Ispis porezne prijave" #. module: account #: view:account.model.line:0 @@ -9011,6 +9370,9 @@ msgid "" "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." msgstr "" +"Ova vam opcija omogućava da dobijete više detalja o načinu na koji se vaša " +"salda računaju. Pošto zauzima dosta prostora, ne dozvoljavamo njihovo " +"korištenje kod usporedbi." #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close @@ -9027,6 +9389,8 @@ msgstr "Šifra konta mora biti jedinstvena za jednu organizaciju !" #: help:product.template,property_account_expense:0 msgid "This account will be used to value outgoing stock using cost price." msgstr "" +"Ovaj modul će se koristiti za vrednovanje izlaznog skladišnog prometa " +"koristeći nabavnu cijenu." #. module: account #: view:account.invoice:0 @@ -9089,6 +9453,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove ponavljajuće stavke.\n" +"

\n" +" Ponavljajuća stavka je stavka koja već postoji u sustavu ali " +"se ponavlja\n" +" određenog datuma, npr. povezana je uz potpisani ugovor ili " +"dogovor sa\n" +" kupcem ili dobavljaćem. Takve je unose moguće automatizirati " +"u sustavu.\n" +"

\n" +" " #. module: account #: view:account.journal:0 @@ -9123,7 +9498,7 @@ msgstr "Stavka \"%s\" nije ispravna !" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Smallest Text" -msgstr "" +msgstr "Najmanji tekst" #. module: account #: help:account.config.settings,module_account_check_writing:0 @@ -9131,6 +9506,8 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"Ovo omogućava provjenu pisanja i printanja.\n" +" Instalira modul account_check_writing." #. module: account #: model:res.groups,name:account.group_account_invoice @@ -9167,7 +9544,7 @@ msgstr "Iznos u drugoj valuti ." #: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." -msgstr "" +msgstr "Temeljnica (%s) za centralizaciju je potvrđena." #. module: account #: report:account.analytic.account.journal:0 @@ -9206,13 +9583,14 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Možete odabrati dnevnik za odobrenja koja će se kreirati. Ako ostavite polje " +"praznokoristiti će se isti dnevnik kao i za trenutni račun." #. module: account #: help:account.bank.statement.line,sequence:0 msgid "" "Gives the sequence order when displaying a list of bank statement lines." -msgstr "" -"Gives the sequence order when displaying a list of bank statement lines." +msgstr "Daje redoslijed kod prikaza liste stavaka izvoda." #. module: account #: model:process.transition,note:account.process_transition_validentries0 @@ -9245,7 +9623,7 @@ msgstr "Forsiraj period" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "Print Account Partner Balance" +msgstr "Ispis salda partnera" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9255,6 +9633,9 @@ msgid "" "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Ne možete vršiti ovu modifikaciju na zatvorenoj stavci. Možete samo " +"mijenjati neka nevažna polja ili morate razvezati stavke.\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -9265,6 +9646,11 @@ msgid "" "accounts that are typically more credited than debited and that you would " "like to print as positive amounts in your reports; e.g.: Income account." msgstr "" +"Za konta koja su tipično više dugovna nego potražna i koja bi željeli " +"ispisati kao negativne iznose u vašim izvještajima, trebate obrnuti predznak " +"salda; npr. konta troška. Isto se odnosi na konta koja su tipično više " +"potražna nego dugovna i koja bi htjeli da ispisuje kao pozitivne iznose u " +"vašim izvještajima; npr. konta prihoda." #. module: account #: field:res.partner,contract_ids:0 @@ -9296,7 +9682,7 @@ msgstr "Nacrti računa se provjeravaju, potvrđuju i ispisuju." #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "Pratitelj" +msgstr "Je pratitelj" #. module: account #: view:account.move:0 @@ -9312,6 +9698,9 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"Greška konfiguracije!\n" +"Ne možete odabrati tip konta sa metodom odgode različitom od \"nezatvoreno\" " +"za konta sa internim tipom \"obveze/potraživanja\"." #. module: account #: field:account.config.settings,has_fiscal_year:0 @@ -9332,7 +9721,7 @@ msgstr "" #: code:addons/account/account.py:634 #, python-format msgid "You cannot deactivate an account that contains journal items." -msgstr "" +msgstr "Nije moguće deaktivirati konto koji ima knjiženja." #. module: account #: selection:account.tax,applicable_type:0 @@ -9376,7 +9765,7 @@ msgstr "Od perioda" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "Jedinica Valute" +msgstr "Jedinica valute" #. module: account #: code:addons/account/account.py:3195 @@ -9399,6 +9788,10 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Nakon potvrđivanja računa u statusu 'Nacrt' nećete ih više moći\n" +" editirati. Računi će dobiti jedinstveni broj te će " +"se \n" +" kreirati stavke u knjiženja." #. module: account #: model:process.node,note:account.process_node_bankstatement0 @@ -9408,12 +9801,12 @@ msgstr "Registrirana plaćanja" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close states of Fiscal year and periods" -msgstr "Close states of Fiscal year and periods" +msgstr "Fiskalne godine i periodi u stanju zatvoreno" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Dnevnik povrata dobavljaču" #. module: account #: view:account.analytic.line:0 @@ -9437,12 +9830,12 @@ msgstr "Kreiraj račun" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Konfiguracija računovodstvenih podataka" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "Porez nabave(%)" +msgstr "Pretporez(%)" #. module: account #: code:addons/account/account_invoice.py:901 @@ -9457,6 +9850,8 @@ msgid "" "Please check that the field 'Internal Transfers Account' is set on the " "payment method '%s'." msgstr "" +"Molimo provjerite da li je polje 'Konto internih prijenosa' postavljen na " +"načinu plaćanja '%s'." #. module: account #: field:account.vat.declaration,display_detail:0 @@ -9482,7 +9877,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "Moje stavke" +msgstr "Moje temeljnice" #. module: account #: help:account.invoice,state:0 @@ -9497,6 +9892,12 @@ msgid "" "related journal entries may or may not be reconciled. \n" "* The 'Cancelled' status is used when user cancel invoice." msgstr "" +" * 'Nacrt' je status za nepotvrđeni račun. \n" +"* 'Pro-forma' je status kada račun još nije dobio broj. \n" +"* 'Otvoreno' je status kada je račun kreiran i dobio je broj. Status " +"'Otvoreno' znači da račun nije plaćen. \n" +"* 'Plaćeno' je status koji račun dobiva kada je plaćen. \n" +"* 'Otkazano' je status kada korisnik otkaže račun." #. module: account #: field:account.period,date_stop:0 @@ -9516,7 +9917,7 @@ msgstr "Financijska izvješća" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 msgid "Liability View" -msgstr "" +msgstr "Pogled obveza" #. module: account #: report:account.account.balance:0 @@ -9569,7 +9970,7 @@ msgstr "Zatraži povrat" #. module: account #: view:account.move.line:0 msgid "Total credit" -msgstr "Total credit" +msgstr "Ukupno potražuje" #. module: account #: model:process.transition,note:account.process_transition_suppliervalidentries0 @@ -9594,7 +9995,7 @@ msgstr "Konta potraživanja" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Sekvenca odobrenja dobavljača" #. module: account #: code:addons/account/wizard/account_state_open.py:37 @@ -9612,6 +10013,12 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"Omogućuje da kreirate i upravljate vašim nalozima za plaćanje, sa svrhom\n" +" * da služi kao baza ua jednostavno ukopčavanje raznih " +"automatiziranih mehanizama plaćanja\n" +" * i da osigura efikasniji način za upravljanje plaćanjem " +"računa.\n" +" Instalira modul account_payment." #. module: account #: xsl:account.transfer:0 @@ -9629,7 +10036,7 @@ msgstr "Konto potraživanja" #: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." -msgstr "" +msgstr "Kompanija treba biti ista za sve stavke zatvaranja." #. module: account #: field:account.account,balance:0 @@ -9660,7 +10067,7 @@ msgstr "Saldo" #. module: account #: model:process.node,note:account.process_node_supplierbankstatement0 msgid "Manually or automatically entered in the system" -msgstr "Manually or automatically entered in the system" +msgstr "Ručno ili automatski unešeno u sustav" #. module: account #: report:account.account.balance:0 @@ -9690,7 +10097,7 @@ msgstr "Legenda" #. module: account #: model:process.transition,note:account.process_transition_entriesreconcile0 msgid "Accounting entries are the first input of the reconciliation." -msgstr "Accounting entries are the first input of the reconciliation." +msgstr "Temeljnice su prvi unos zatvaranja." #. module: account #: view:account.fiscalyear.close:0 @@ -9741,7 +10148,7 @@ msgstr "Datum / Period" #. module: account #: report:account.central.journal:0 msgid "A/C No." -msgstr "A/C No." +msgstr "A/C Br." #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement @@ -9756,13 +10163,13 @@ msgid "" "dates are not matching the scope of the fiscal year." msgstr "" "Greška!\n" -"Period je neisprqavan. Ili se neki periodi preklapaju, ili datumi perioda ne " +"Period je neispravan. Ili se neki periodi preklapaju, ili datumi perioda ne " "odgovaraju rasponu fiskalne godine." #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Nema dospijelih stavaka kod ovog kupca." #. module: account #: help:account.tax,account_paid_id:0 @@ -9770,13 +10177,15 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." msgstr "" +"Postavite konto koji će se koristiti kao predodređeni na stavkama poreza kod " +"računa za povrat. Ostavite prazno za konto troška." #. module: account #: help:account.addtmpl.wizard,cparent_id:0 msgid "" "Creates an account with the selected template under this existing parent." msgstr "" -"Creates an account with the selected template under this existing parent." +"Kreira konto s odabranim predloškom pod postojećim nadređenim kontom." #. module: account #: report:account.invoice:0 @@ -9786,7 +10195,7 @@ msgstr "Izvor" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Date of the day" -msgstr "Date of the day" +msgstr "Datum dana" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -9804,6 +10213,7 @@ msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." msgstr "" +"Ovo polje sadržava informacije vezane uz sljednosti temeljnica dnevnika" #. module: account #: field:account.invoice,sent:0 @@ -9824,13 +10234,13 @@ msgstr "Zadani porez prodaje" #. module: account #: report:account.overdue:0 msgid "Balance :" -msgstr "Saldo" +msgstr "Saldo :" #. module: account #: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." -msgstr "" +msgstr "Nije moguće kreirati knjiženja za različite kompanije." #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing @@ -9840,7 +10250,7 @@ msgstr "Periodična obrada" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "Ulazni i izlazni računi Invoices" +msgstr "Ulazni i izlazni računi" #. module: account #: model:process.node,note:account.process_node_paymententries0 @@ -9871,7 +10281,7 @@ msgstr "Pretplata" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "Saldo Analitike" +msgstr "Saldo analitike" #. module: account #: report:account.account.balance:0 @@ -9915,13 +10325,13 @@ msgstr "Datum dospijeća" #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Neposredno plaćanje" #. module: account #: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" -msgstr "" +msgstr " Centralizacija" #. module: account #: help:account.journal,type:0 @@ -9932,6 +10342,11 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" +"Odaberite 'Prodaja' za dnevnike izlaznih računa. Odaberite 'Nabava' za " +"dnevnike ulaznih računa. Odaberite 'Gotovina' ili 'Banka' za dnevnike koji " +"se koriste kod plaćanja izlaznih ili ulaznih računa. Odaberite 'Općenito' za " +"dnevnike raznih drugih operacija. Odaberite 'Početno/završno stanje' za " +"unose generirane s novom fiskalnom godinom." #. module: account #: view:account.subscription:0 @@ -9985,6 +10400,8 @@ msgid "" "It indicates that the invoice has been paid and the journal entry of the " "invoice has been reconciled with one or several journal entries of payment." msgstr "" +"Označava da je račun plaćen i da je temeljnica računa zatvorena sa jednim " +"ili više izvoda." #. module: account #: view:account.invoice:0 @@ -10028,13 +10445,13 @@ msgid "" "open period. Close a period when you do not want to record new entries and " "want to lock this period for tax related calculation." msgstr "" -"A period is a fiscal period of time during which accounting entries should " -"be recorded for accounting related activities. Monthly period is the norm " -"but depending on your countries or company needs, you could also have " -"quarterly periods. Closing a period will make it impossible to record new " -"accounting entries, all new entries should then be made on the following " -"open period. Close a period when you do not want to record new entries and " -"want to lock this period for tax related calculation." +"Period je fiskalno razdoblje tijekom kojeg treba biti zabilježena evidencija " +"svih računovodstvenih aktivnosti. Mjesečni periodu su standard, ali ovisno o " +"vašoj državi ili potrebama kompanije možete također imati i kvartalne " +"periode. Zatvaranje perioda će onemogućiti unos novih knjiženja. Sva nova " +"knjiženja trebaju tada ići na sljedeći otvoreni period. Zatvorite perioda " +"kada ne želite nova knjiženja i kada želite zaključati period za potrebe " +"poreznih evidencija." #. module: account #: view:account.analytic.account:0 @@ -10061,7 +10478,7 @@ msgstr "Postavite fiskalnu godinu" #. module: account #: field:account.period,name:0 msgid "Period Name" -msgstr "Naziv Perioda" +msgstr "Naziv perioda" #. module: account #: code:addons/account/wizard/account_invoice_state.py:68 @@ -10070,11 +10487,13 @@ msgid "" "Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " "or 'Done' state." msgstr "" +"Odabrani(e) račun(e) nije moguće otkazati jer su već u statusu 'Otkazano' " +"ili 'Potvrđeno'." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 msgid "Code/Date" -msgstr "Šifra/Datum" +msgstr "Šifra/datum" #. module: account #: view:account.bank.statement:0 @@ -10106,6 +10525,9 @@ msgid "" "some non legal fields or you must unconfirm the journal entry first.\n" "%s." msgstr "" +"Ne možete raditi ovu promjenu na knjiženom unosu. Možete samo mijenjati neka " +"sporedna polja ili morate prvo otknjižiti temeljnicu.\n" +"%s." #. module: account #: help:account.config.settings,module_account_budget:0 @@ -10116,11 +10538,17 @@ msgid "" "analytic account.\n" " This installs the module account_budget." msgstr "" +"Ovo omogućuje računovođama da upravljalju analitičkim i miješanim " +"proračunima.\n" +" Jednom kada je glavni proračun definiran,\n" +" voditelji projekta mogu postaviti planirani iznos na svaki " +"analitički konto.\n" +" Instalira modul account_budget." #. module: account #: field:account.bank.statement.line,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account #: help:res.partner,property_account_payable:0 @@ -10146,7 +10574,7 @@ msgstr "Sekundarna valuta" #. module: account #: model:ir.model,name:account.model_validate_account_move msgid "Validate Account Move" -msgstr "Validate Account Move" +msgstr "Potvrdi knjiženje" #. module: account #: field:account.account,credit:0 @@ -10180,7 +10608,7 @@ msgstr "Nacrt računa " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "General Journals" +msgstr "Opći dnevnici" #. module: account #: view:account.model:0 @@ -10191,7 +10619,7 @@ msgstr "Model temeljnice" #: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." -msgstr "" +msgstr "Početno razdoblje bi trebalo prethoditi završnom razdoblju" #. module: account #: field:account.invoice,number:0 @@ -10270,7 +10698,7 @@ msgstr "Travanj" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 msgid "Profit (Loss) to report" -msgstr "" +msgstr "Dobit (gubitak) za prijavu" #. module: account #: code:addons/account/account_invoice.py:379 @@ -10281,7 +10709,7 @@ msgstr "Nema definiranih dnevnika nabave/prodaje" #. module: account #: view:account.move.line.reconcile.select:0 msgid "Open for Reconciliation" -msgstr "Open for Reconciliation" +msgstr "Otvori za saldakonti zatvaranje" #. module: account #: field:account.account,parent_left:0 @@ -10291,7 +10719,7 @@ msgstr "Roditelj lijevo" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 2 (bold)" -msgstr "" +msgstr "Naslov 2 (bold)" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree2 @@ -10334,7 +10762,7 @@ msgstr "Fiskalno razdoblje" #. module: account #: view:account.subscription:0 msgid "Remove Lines" -msgstr "Ukloni retke" +msgstr "Ukloni stavke" #. module: account #: selection:account.account,type:0 @@ -10350,12 +10778,12 @@ msgstr "Običan" #: field:account.account.template,type:0 #: field:account.entries.report,type:0 msgid "Internal Type" -msgstr "Vrsta konta" +msgstr "Interni tip" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Generiraj stavke prije" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10441,19 +10869,21 @@ msgstr "Bez detalja" #: model:ir.actions.act_window,name:account.action_account_gain_loss #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses msgid "Unrealized Gain or Loss" -msgstr "" +msgstr "Nerealizirana dobit ili gubitak" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "States" -msgstr "Stanja" +msgstr "Statusi" #. module: account #: help:product.category,property_account_income_categ:0 #: help:product.template,property_account_income:0 msgid "This account will be used to value outgoing stock using sale price." msgstr "" +"Ovaj će se konto koristiti za vrednovanje skladišnog izlaza koristeći " +"prodajnu cijenu." #. module: account #: field:account.invoice,check_total:0 @@ -10476,12 +10906,12 @@ msgstr "Ukupno" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "" +msgstr "Ne mogu %s nacrt/predračun/otkaži račun." #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Analitički konto poreza kod povrata" #. module: account #: view:account.move.bank.reconcile:0 @@ -10569,9 +10999,8 @@ msgid "" "reconciliation process today. The current partner is counted as already " "processed." msgstr "" -"This figure depicts the total number of partners that have gone throught the " -"reconciliation process today. The current partner is counted as already " -"processed." +"Ova brojka opisuje ukupni broj partenra koji su prošli proces zatvaranja " +"danas. Trenutni partner se računa." #. module: account #: view:account.fiscalyear:0 @@ -10610,6 +11039,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disable" msgstr "" +"Ako razvezujete transakcije, morate također provjeriti akcije koje su " +"povezane sa tim transakcijama jer će one ostati aktivne." #. module: account #: code:addons/account/account_move_line.py:1056 @@ -10620,12 +11051,12 @@ msgstr "Nije moguće izmjeniti porez!" #. module: account #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." -msgstr "" +msgstr "Dnevnik i odabrano razdoblje moraju pripadati istom poduzeću." #. module: account #: view:account.invoice:0 msgid "Invoice lines" -msgstr "Stavke računa" +msgstr "Stavke temeljnice" #. module: account #: field:account.chart,period_to:0 @@ -10644,6 +11075,9 @@ msgid "" "customer. The tool search can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"Iz ovog izvještaja imate pregled iznosa fakturiranog vašem kupcu. Alat " +"pretrage može se također koristiti za personalizaciju vaših ispisa računa i " +"priagođavanje analize vašim potrebama." #. module: account #: view:account.partner.reconcile.process:0 @@ -10664,7 +11098,7 @@ msgstr "Stanje računa je zatvoreno/plaćeno" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Upravljanje naplatom" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -10715,7 +11149,7 @@ msgstr "Duguje" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 3 (bold, smaller)" -msgstr "" +msgstr "Naslov 3 (podebljano, manje)" #. module: account #: view:account.invoice:0 @@ -10757,7 +11191,7 @@ msgstr "Raspon" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "" +msgstr "Stavke analitničkog dnevnika povezane sa dnevnikom nabave" #. module: account #: help:account.account,type:0 @@ -10768,6 +11202,10 @@ msgid "" "payable/receivable are for partners accounts (for debit/credit " "computations), closed for depreciated accounts." msgstr "" +"'Interni tip' se koristi za značajke dostupne na različitim tipovima konta: " +"pogled ne može imati stavke dnevnika, konsolidacija su konta koja mogu imati " +"podređena konta za potrebe konsolidacije više kompanija, obveze/potraživanja " +"su za saldakonti, zatvoreno za konta koja se više ne koriste." #. module: account #: report:account.account.balance:0 @@ -10793,6 +11231,8 @@ msgstr "Ručno" msgid "" "This is a field only used for internal purpose and shouldn't be displayed" msgstr "" +"Ovo se polje koristi isključivo za interne potrebe i nebi se trebalo " +"prikazivati" #. module: account #: selection:account.entries.report,month:0 @@ -10828,7 +11268,7 @@ msgstr "Primjenjivost" #. module: account #: help:account.move.line,currency_id:0 msgid "The optional other currency if it is a multi-currency entry." -msgstr "The optional other currency if it is a multi-currency entry." +msgstr "Opcionalna druga valuta ukoliko se radi o više-valutnom unosu." #. module: account #: model:process.transition,note:account.process_transition_invoiceimport0 @@ -10839,7 +11279,7 @@ msgstr "Uvoz naloga u sistem iz ulaznog ili izlaznog računa" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing msgid "Billing" -msgstr "Billing" +msgstr "Fakturiranje" #. module: account #: view:account.account:0 @@ -10874,6 +11314,7 @@ msgid "" "The selected unit of measure is not compatible with the unit of measure of " "the product." msgstr "" +"Odabrana jedinica mjere nije kompatibilna sa jedinicom mjere proizvoda." #. module: account #: view:account.fiscal.position:0 @@ -10897,6 +11338,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove porezne tarife.\n" +"

\n" +" Ovisno o legislativi pojedine zemlje, porezne se tarife " +"koriste za\n" +" poreznu prijavu. OpenERP omogućuje definiranje kompleksne " +"strukture\n" +" porezne prijave.\n" +"

\n" +" " #. module: account #: selection:account.entries.report,month:0 @@ -10923,6 +11374,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Odaberite razdoblje i dokument koji želite kreirati.\n" +"

\n" +" Kroz ovaj modul moguće je jednostavno i efikasno " +"evidentirati\n" +" stavke glavne knjige.\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 @@ -10932,7 +11391,7 @@ msgstr "Konto prihoda ili troškova vezan za odabrani proizvod." #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Instaliraj dodatne predloške kontog plana" #. module: account #: report:account.general.journal:0 @@ -10981,7 +11440,7 @@ msgstr "Dokumenti računovodstva" msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." -msgstr "" +msgstr "Ne možete ukloniti/deaktivirati konto kupca ili dobavljača" #. module: account #: model:ir.model,name:account.model_validate_account_move_lines @@ -11024,7 +11483,7 @@ msgstr "Ručni porezi računa" #: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "" +msgstr "Uvjet plaćanja dobavljača nema definirane stavke" #. module: account #: field:account.account,parent_right:0 @@ -11106,7 +11565,7 @@ msgstr "Veljača" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "Broj jedinice zatvaranja" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -11121,7 +11580,7 @@ msgstr "Bankovni račun" #: model:ir.actions.act_window,name:account.action_account_central_journal #: model:ir.model,name:account.model_account_central_journal msgid "Account Central Journal" -msgstr "Account Central Journal" +msgstr "Dnevnik glavne knjige" #. module: account #: report:account.overdue:0 @@ -11153,7 +11612,7 @@ msgstr "Obično 1 ili -1." #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account_template msgid "Template Account Fiscal Mapping" -msgstr "Predlozak mapiranja konta" +msgstr "Predložak mapiranja konta" #. module: account #: field:account.chart.template,property_account_expense:0 @@ -11171,6 +11630,8 @@ msgid "" "This label will be displayed on report to show the balance computed for the " "given comparison filter." msgstr "" +"Ova će se oznaka prikazivati na izvještaju koji prikazuje izračunato stanje " +"za odabrani filter usporedbe." #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 @@ -11951,9 +12412,6 @@ msgstr "" #~ msgid "Print Journal" #~ msgstr "Ispis dnevnika" -#~ msgid "Cancel Invoice" -#~ msgstr "Storniraj račun" - #~ msgid "Required" #~ msgstr "Obavezno" @@ -14408,3 +14866,6 @@ msgstr "" #~ "Molimo provjerite iznose na računu!\n" #~ "Ukupan iznos računa se ne slaže sa izračunatom vrijednošću.\n" #~ "Provjerite polje \"Kontrola uk. iznosa\", stavke računa i poreze." + +#~ msgid "Cancel Invoice" +#~ msgstr "Otkaži račun" diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index 4b4f2f7f032..b4aeb75bad2 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-17 05:32+0000\n" -"X-Generator: Launchpad (build 16869)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po index d4003f4d96a..e88f5d20880 100644 --- a/addons/account/i18n/id.po +++ b/addons/account/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/is.po b/addons/account/i18n/is.po index 27a66ba3026..2d39a7fda04 100644 --- a/addons/account/i18n/is.po +++ b/addons/account/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po index 713ad142033..6a5d34f05fc 100644 --- a/addons/account/i18n/it.po +++ b/addons/account/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ja.po b/addons/account/i18n/ja.po index 4be59c5b20c..f6848c652cc 100644 --- a/addons/account/i18n/ja.po +++ b/addons/account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -45,7 +45,7 @@ msgstr "仕訳帳エントリーの消し込み" #: view:account.bank.statement:0 #: view:account.move.line:0 msgid "Account Statistics" -msgstr "アカウントの統計情報" +msgstr "勘定統計" #. module: account #: view:account.invoice:0 @@ -103,7 +103,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "消し込み" +msgstr "消込" #. module: account #: field:account.bank.statement,name:0 @@ -166,7 +166,7 @@ msgstr "" #: field:account.fiscal.position.account,account_src_id:0 #: field:account.fiscal.position.account.template,account_src_id:0 msgid "Account Source" -msgstr "元アカウント" +msgstr "元勘定" #. module: account #: model:ir.actions.act_window,help:account.action_account_period @@ -200,7 +200,7 @@ msgstr "列ラベル" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "勘定コードで使用する桁数" #. module: account #: help:account.analytic.journal,type:0 @@ -224,7 +224,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_tax_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_template_form msgid "Tax Templates" -msgstr "税金テンプレート" +msgstr "税テンプレート" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_select @@ -249,7 +249,7 @@ msgstr "検証済" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "" +msgstr "収益ビュー" #. module: account #: help:account.account,user_type:0 @@ -264,7 +264,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "次のクレジットノート番号" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -273,6 +273,8 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" +"銀行や現金、販売、仕入、費用、契約など証票記入のすべての基本的な要件を含みます。\n" +" account_voucherモジュールがインストールされます。" #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry @@ -304,6 +306,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして顧客返金を登録してください。\n" +"

\n" +" 返金は請求書を完全または部分的にクレジットする文書です。\n" +"

\n" +" 顧客返金をマニュアルで登録する代わりに、関連する顧客請求書から直接生成することもできます。\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -315,7 +325,7 @@ msgstr "あなたの国に基づき、あなたの会社の会計ニーズに可 #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "消し込みなしアカウント" +msgstr "" #. module: account #: field:account.config.settings,module_account_budget:0 @@ -340,7 +350,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "多通貨を許可" #. module: account #: code:addons/account/account_invoice.py:77 @@ -361,12 +371,12 @@ msgstr "6月" #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "消込する勘定科目を選択してください。" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "分析会計を使用。" #. module: account #: view:account.invoice:0 @@ -374,7 +384,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "営業担当者" #. module: account #: view:account.bank.statement:0 @@ -396,7 +406,7 @@ msgstr "作成日" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "仕入返金" +msgstr "購買返金" #. module: account #: selection:account.journal,type:0 @@ -411,7 +421,7 @@ msgstr "明細入力に使用される通貨" #. module: account #: field:account.journal,default_debit_account_id:0 msgid "Default Debit Account" -msgstr "デフォルト借方アカウント" +msgstr "デフォルト借方勘定" #. module: account #: view:account.move:0 @@ -429,6 +439,10 @@ msgid "" "this box, you will be able to do invoicing & payments,\n" " but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"企業や個人が所有する資産を管理します。\n" +" 資産で発生した減価償却費を追跡、口座の動きを作成します。\n" +" account_assetモジュールがインストールされます。\n" +" このボックスをチェックしない場合も請求と支払いはできますが、仕訳項目や勘定科目には影響しません。" #. module: account #: help:account.bank.statement.line,name:0 @@ -440,7 +454,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "期間:" #. module: account #: field:account.account.template,chart_template_id:0 @@ -453,7 +467,7 @@ msgstr "チャートテンプレート" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "" +msgstr "変更:払い戻しを作成して、消し込みと新たなドラフト請求書を作成" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -467,6 +481,9 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"「明細ごとに丸め」を選択すると最初に購入/販売注文書や請求書の各行に対して税額の計算と丸めを行い、次にこれらを加算して合計金額とします。「全体で丸め」を選" +"択すると購入/販売注文書や請求書の各行に対して税額の計算を行い、最終的にこれらの合計金額を丸めます。\r\n" +"税込みで販売する場合は、税込み行を加算した金額と合計が一致するように「明細ごとに丸め」を選択します。" #. module: account #: model:ir.model,name:account.model_wizard_multi_charts_accounts @@ -481,7 +498,7 @@ msgstr "オプションの他の通貨で表現された金額" #. module: account #: view:account.journal:0 msgid "Available Coins" -msgstr "" +msgstr "利用可能な硬貨" #. module: account #: field:accounting.report,enable_filter:0 @@ -539,7 +556,7 @@ msgstr "" #. module: account #: field:account.bank.statement,account_id:0 msgid "Account used in this journal" -msgstr "この仕訳帳で使用されるアカウント" +msgstr "この仕訳帳で使用される勘定" #. module: account #: help:account.aged.trial.balance,chart_account_id:0 @@ -572,7 +589,7 @@ msgstr "" #. module: account #: field:account.automatic.reconcile,unreconciled:0 msgid "Not reconciled transactions" -msgstr "未消し込み取引" +msgstr "未消込トランザクション" #. module: account #: report:account.general.ledger:0 @@ -585,13 +602,13 @@ msgstr "相手方" #: field:account.fiscal.position,tax_ids:0 #: field:account.fiscal.position.template,tax_ids:0 msgid "Tax Mapping" -msgstr "税金のマッピング" +msgstr "税マッピング" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state #: model:ir.ui.menu,name:account.menu_wizard_fy_close_state msgid "Close a Fiscal Year" -msgstr "会計年度を閉じる" +msgstr "会計年度締" #. module: account #: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 @@ -608,7 +625,7 @@ msgstr "" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "仕訳の小数点精度" #. module: account #: selection:account.config.settings,period:0 @@ -639,7 +656,7 @@ msgstr "" #: view:account.fiscal.position:0 #: view:account.fiscal.position.template:0 msgid "Taxes Mapping" -msgstr "税金マッピング" +msgstr "税マッピング" #. module: account #: report:account.central.journal:0 @@ -661,7 +678,7 @@ msgstr "" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "収益勘定" #. module: account #: code:addons/account/account_move_line.py:1156 @@ -672,7 +689,7 @@ msgstr "所定の日付のために期間が見つからないか、複数の期 #. module: account #: model:ir.model,name:account.model_report_account_type_sales msgid "Report of the Sales by Account Type" -msgstr "アカウントタイプ別売上レポート" +msgstr "勘定タイプ別売上レポート" #. module: account #: code:addons/account/account.py:3201 @@ -702,12 +719,12 @@ msgstr "期間を閉じる" #. module: account #: model:ir.model,name:account.model_account_common_partner_report msgid "Account Common Partner Report" -msgstr "アカウント共有パートナレポート" +msgstr "勘定共通取引先レポート" #. module: account #: field:account.fiscalyear.close,period_id:0 msgid "Opening Entries Period" -msgstr "開始エントリーの期間" +msgstr "期初仕訳期間" #. module: account #: model:ir.model,name:account.model_account_journal_period @@ -739,17 +756,17 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" -msgstr "売掛金" +msgstr "売掛金勘定" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "あなたの会社の銀行口座を設定" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "返金を作成" #. module: account #: constraint:account.move.line:0 @@ -766,7 +783,7 @@ msgstr "総勘定元帳レポート" #. module: account #: view:account.invoice:0 msgid "Re-Open" -msgstr "再度開く" +msgstr "再開" #. module: account #: view:account.use.model:0 @@ -790,7 +807,7 @@ msgstr "請求書印刷" msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." -msgstr "" +msgstr "すでに消し込みされている請求書は %s できないため、最初に未消し込みにする必要があります。請求の払い戻しのみできます。" #. module: account #: selection:account.financial.report,display_detail:0 @@ -860,7 +877,7 @@ msgstr "アカウントサブスクリプション行" #. module: account #: help:account.invoice,reference:0 msgid "The partner reference of this invoice." -msgstr "請求書のパートナ参照" +msgstr "この請求書の取引先参照" #. module: account #: view:account.invoice.report:0 @@ -871,7 +888,7 @@ msgstr "仕入先請求書と返金" #: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "エントリは既に消込済みです。" #. module: account #: view:account.move.line.unreconcile.select:0 @@ -883,12 +900,12 @@ msgstr "未消し込み" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "アカウント分析仕訳帳" +msgstr "勘定分析仕訳帳" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Eメールで送信" #. module: account #: help:account.central.journal,amount_currency:0 @@ -898,7 +915,7 @@ msgstr "" msgid "" "Print Report with the currency column if the currency differs from the " "company currency." -msgstr "" +msgstr "会社の通貨と異なる場合は通貨欄を使用してレポートを印刷します。" #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -908,7 +925,7 @@ msgstr "J.C. / Move 名前" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "勘定コードと名前" #. module: account #: selection:account.entries.report,month:0 @@ -938,6 +955,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 仕訳項目は見つかりません。\n" +"

\n" +" " #. module: account #: code:addons/account/account.py:1677 @@ -984,7 +1005,7 @@ msgstr "期日" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "仕入仕訳帳" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid @@ -1007,7 +1028,7 @@ msgstr "合計金額" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "仕入先から提供される請求書の参照" #. module: account #: selection:account.account,type:0 @@ -1042,7 +1063,7 @@ msgstr "仕訳帳の一元化" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "売上返金" +msgstr "販売返金" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 @@ -1094,7 +1115,7 @@ msgstr "コード" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "機能" #. module: account #: code:addons/account/account.py:2346 @@ -1112,7 +1133,7 @@ msgstr "分析仕訳帳がありません。" #: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance #: model:ir.ui.menu,name:account.menu_account_partner_balance_report msgid "Partner Balance" -msgstr "パートナ残高" +msgstr "取引先残高" #. module: account #: model:ir.actions.act_window,help:account.action_account_gain_loss @@ -1139,14 +1160,14 @@ msgstr "アカウント名" #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "前回の期末残高で開始" #. module: account #: help:account.tax.code,notprintable:0 msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" -msgstr "" +msgstr "請求書に表示される税コードに関連する税を必要としない場合は、このボックスをチェックします。" #. module: account #: field:report.account.receivable,name:0 @@ -1173,7 +1194,7 @@ msgstr "これらのタイプはあなたの国に従って定義されていま #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "返金 " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1201,7 +1222,7 @@ msgstr "キャッシュレジスタ" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "売上返金仕訳帳" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1220,6 +1241,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして新しいキャッシュログを作成してください。\n" +"

\n" +" " +"キャッシュレジスタは現金仕訳帳の記入を管理します。この機能は日常的な現金支払いを簡単にします。キャッシュボックス内の残高を入力した後で、入金や出金があった" +"時に入力します。\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_bank @@ -1237,7 +1266,7 @@ msgstr "期首日" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "返金" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1247,7 +1276,7 @@ msgstr "取引明細書の確認" #. module: account #: view:account.tax:0 msgid "Account Tax" -msgstr "税金アカウント" +msgstr "勘定税" #. module: account #: help:account.account,foreign_balance:0 @@ -1271,7 +1300,7 @@ msgstr "貸方の一元化" #: model:ir.actions.act_window,name:account.action_account_tax_code_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form msgid "Tax Code Templates" -msgstr "税金コードテンプレート" +msgstr "税コードテンプレート" #. module: account #: constraint:account.move.line:0 @@ -1283,7 +1312,7 @@ msgstr "" #. module: account #: view:account.invoice.cancel:0 msgid "Cancel Invoices" -msgstr "請求書のキャンセル" +msgstr "請求書取消" #. module: account #: help:account.journal,code:0 @@ -1293,7 +1322,7 @@ msgstr "コードはレポート上に表示されます。" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "仕入時にかかる税金" +msgstr "購買で使用する税" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1302,7 +1331,7 @@ msgstr "仕入時にかかる税金" #: field:account.tax.template,tax_code_id:0 #: model:ir.model,name:account.model_account_tax_code msgid "Tax Code" -msgstr "税金コード" +msgstr "税コード" #. module: account #: field:account.account,currency_mode:0 @@ -1381,7 +1410,7 @@ msgstr "ドラフトサブスクリプション" #: model:ir.model,name:account.model_account_account #: field:report.account.sales,account_id:0 msgid "Account" -msgstr "アカウント" +msgstr "勘定科目" #. module: account #: field:account.tax,include_base_amount:0 @@ -1419,7 +1448,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_tax_report #: model:ir.ui.menu,name:account.next_id_27 msgid "Taxes" -msgstr "税金" +msgstr "税" #. module: account #: code:addons/account/wizard/account_financial_report.py:70 @@ -1441,7 +1470,7 @@ msgstr "アカウントのテンプレート" #. module: account #: view:account.tax.code.template:0 msgid "Search tax template" -msgstr "税金テンプレート検索" +msgstr "税テンプレート検索" #. module: account #: view:account.move.reconcile:0 @@ -1454,7 +1483,7 @@ msgstr "エントリーの消し込み" #: model:ir.actions.report.xml,name:account.account_overdue #: view:res.company:0 msgid "Overdue Payments" -msgstr "期限超過の支払い" +msgstr "滞納" #. module: account #: report:account.third_party_ledger:0 @@ -1476,7 +1505,7 @@ msgstr "レポートオプション" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "締対象会計年度" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 @@ -1486,12 +1515,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "仕訳帳項目分析" +msgstr "仕訳項目分析" #. module: account #: model:ir.ui.menu,name:account.next_id_22 msgid "Partners" -msgstr "パートナ" +msgstr "取引先" #. module: account #: help:account.bank.statement,state:0 @@ -1504,7 +1533,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "請求書ステータス" #. module: account #: view:account.bank.statement:0 @@ -1518,7 +1547,7 @@ msgstr "銀行取引明細書" #. module: account #: field:res.partner,property_account_receivable:0 msgid "Account Receivable" -msgstr "売掛金" +msgstr "売掛金勘定" #. module: account #: code:addons/account/account.py:612 @@ -1536,7 +1565,7 @@ msgstr "" #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" -msgstr "残高が0ではありません。" +msgstr "残高があるもの(<>0)" #. module: account #: code:addons/account/account.py:1483 @@ -1549,7 +1578,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Search Taxes" -msgstr "税金検索" +msgstr "税検索" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger @@ -1590,7 +1619,7 @@ msgstr "桁数" #. module: account #: field:account.journal,entry_posted:0 msgid "Skip 'Draft' State for Manual Entries" -msgstr "手動入力のため、ドラフト状態をスキップします。" +msgstr "マニュアル入力につき「ドラフト」状態をスキップ" #. module: account #: code:addons/account/report/common_report_header.py:92 @@ -1607,7 +1636,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "請求と支払い" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -1646,7 +1675,7 @@ msgstr "事例コード" #. module: account #: field:account.config.settings,company_footer:0 msgid "Bank accounts footer preview" -msgstr "" +msgstr "銀行口座のフッタをプレビュー" #. module: account #: selection:account.account,type:0 @@ -1657,7 +1686,7 @@ msgstr "" #: selection:account.fiscalyear,state:0 #: selection:account.period,state:0 msgid "Closed" -msgstr "閉じた" +msgstr "クローズ" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries @@ -1687,7 +1716,7 @@ msgstr "非課税" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "詳細設定" #. module: account #: view:account.bank.statement:0 @@ -1697,19 +1726,19 @@ msgstr "銀行明細の検索" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "未転記仕訳帳項目" +msgstr "未転記仕訳項目" #. module: account #: view:account.chart.template:0 #: field:account.chart.template,property_account_payable:0 msgid "Payable Account" -msgstr "買掛金" +msgstr "買掛金勘定" #. module: account #: field:account.tax,account_paid_id:0 #: field:account.tax.template,account_paid_id:0 msgid "Refund Tax Account" -msgstr "返金税金アカウント" +msgstr "返金税勘定" #. module: account #: model:ir.model,name:account.model_ir_sequence @@ -1788,7 +1817,7 @@ msgstr "会計年度の順序" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "分析会計" #. module: account #: report:account.overdue:0 @@ -1807,18 +1836,21 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" +"「明細ごとに丸め」を選択すると最初に購入/販売注文書や請求書の各行に対して税額の計算と丸めを行い、次にこれらを加算して合計金額とします。「全体で丸め」を選" +"択すると購入/販売注文書や請求書の各行に対して税額の計算を行い、最終的にこれらの合計金額を丸めます。\r\n" +"税込みで販売する場合は、税込み行を加算した金額と合計が一致するように「明細ごとに丸め」を選択します。" #. module: account #: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all #: view:report.account_type.sales:0 msgid "Sales by Account Type" -msgstr "アカウントタイプ別売上" +msgstr "勘定タイプ別売上" #. module: account #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15日以内" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -1861,6 +1893,8 @@ msgid "" "Select a configuration package to setup automatically your\n" " taxes and chart of accounts." msgstr "" +"税および勘定科目表を自動設定するための設定パッケージを\n" +" 選択してください。" #. module: account #: view:account.analytic.account:0 @@ -1876,7 +1910,7 @@ msgstr "" #: report:account.journal.period.print.sale.purchase:0 #: view:account.tax.template:0 msgid "Tax Declaration" -msgstr "税金申告" +msgstr "税申告" #. module: account #: help:account.journal.period,active:0 @@ -1898,18 +1932,18 @@ msgstr "売掛金と買掛金" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "" +msgstr "支払指図を管理" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "期間" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "前回の期末残高" #. module: account #: model:ir.model,name:account.model_account_common_journal_report @@ -1919,7 +1953,7 @@ msgstr "アカウント共通の仕訳帳レポート" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "全パートナ" +msgstr "全取引先" #. module: account #: view:account.analytic.chart:0 @@ -1941,7 +1975,7 @@ msgstr "顧客の参照:" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "このコードは税申告のために使用します。" #. module: account #: help:account.period,special:0 @@ -1961,7 +1995,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "仕入先に小切手で支払う" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -1984,6 +2018,11 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" +"このメニューでは請求書や支払いに基づいた税申告書を印刷します。\r\n" +"会計年度のひとつ、または複数の期間を選択します。\r\n" +"税申告に必要な情報はOpenERPが請求書(国によっては支払い)から自動的に生成します。\r\n" +"このデータはリアルタイムで更新されます。\r\n" +"月または四半期の開始と終了に支払い義務のある税金をいつでもプレビューできるため非常に役立ちます。" #. module: account #: code:addons/account/account.py:409 @@ -2112,11 +2151,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして銀行取引明細書を登録してください。\n" +"

\n" +" " +"銀行取引明細書は一定の期間に渡って銀行口座に発生するすべての金融取引の要約です。あなたは、これを銀行から定期的に受け取るべきです。\n" +"

\n" +" OpenERPは関連する販売または購買の請求書と取引明細書を直接に擦り合わせることができます。\n" +"

\n" +" " #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "デフォルトの企業通貨" #. module: account #: field:account.invoice,move_id:0 @@ -2147,7 +2195,7 @@ msgstr "売上 / 仕入仕訳帳" #: view:account.analytic.account:0 #: field:account.invoice.tax,account_analytic_id:0 msgid "Analytic account" -msgstr "分析アカウント" +msgstr "分析勘定" #. module: account #: code:addons/account/account_bank_statement.py:406 @@ -2200,7 +2248,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "" +msgstr "仕訳帳:" #. module: account #: sql_constraint:account.fiscal.position.tax:0 @@ -2211,7 +2259,7 @@ msgstr "" #: view:account.tax:0 #: view:account.tax.template:0 msgid "Tax Definition" -msgstr "税金の定義" +msgstr "税定義" #. module: account #: view:account.config.settings:0 @@ -2241,7 +2289,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "資産管理" #. module: account #: view:account.account:0 @@ -2255,7 +2303,7 @@ msgstr "" #: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" -msgstr "買掛金" +msgstr "買掛金勘定" #. module: account #: constraint:account.move.line:0 @@ -2281,7 +2329,7 @@ msgstr "アクティブ項目にFalseが設定されている場合、それを #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "売上仕訳帳に関連した分析仕訳帳項目" +msgstr "売上仕訳帳に紐づく分析仕訳項目" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -2334,7 +2382,7 @@ msgstr "エントリーを開く" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "" +msgstr "次の仕入先クレジットノート番号" #. module: account #: field:account.automatic.reconcile,account_ids:0 @@ -2385,7 +2433,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "" +msgstr "仕入先請求書の合計を確認" #. module: account #: selection:account.invoice,state:0 @@ -2453,12 +2501,12 @@ msgstr "動作中" #: field:product.category,property_account_income_categ:0 #: field:product.template,property_account_income:0 msgid "Income Account" -msgstr "損益勘定" +msgstr "収益勘定" #. module: account #: help:account.config.settings,default_sale_tax:0 msgid "This sale tax will be assigned by default on new products." -msgstr "" +msgstr "販売税はデフォルトで新製品に割り当てられます。" #. module: account #: report:account.general.ledger_landscape:0 @@ -2629,17 +2677,17 @@ msgstr "請求書のドラフト状態" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "勘定属性" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "ドラフト返金を作成" #. module: account #: view:account.partner.reconcile.process:0 msgid "Partner Reconciliation" -msgstr "パートナ消し込み" +msgstr "取引先消込" #. module: account #: view:account.analytic.line:0 @@ -2650,7 +2698,7 @@ msgstr "" #: field:account.tax,tax_code_id:0 #: view:account.tax.code:0 msgid "Account Tax Code" -msgstr "税金コードアカウント" +msgstr "勘定税コード" #. module: account #: model:account.payment.term,name:account.account_payment_term_advance @@ -2721,7 +2769,7 @@ msgstr "" #. module: account #: field:product.template,supplier_taxes_id:0 msgid "Supplier Taxes" -msgstr "仕入先税金" +msgstr "仕入先税" #. module: account #: view:res.partner:0 @@ -2747,6 +2795,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして仕訳記入を登録してください。\n" +"

\n" +" 仕訳記入はそれぞれが貸方か借方の取引からなる、いくつかの仕訳項目で構成されます。\n" +"

\n" +" OpenERPは請求書や返金、仕入先支払い、銀行取引明細書などの会計文書ごとにひとつの仕訳記入を自動で登録します。\n" +" したがって、その他の操作についてはマニュアルで仕訳記入しなければなりません。\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -2762,7 +2819,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "次の仕入先請求書番号" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2793,7 +2850,7 @@ msgstr "アカウント移動行の消し込み(償却)" #: view:account.tax:0 #: model:ir.model,name:account.model_account_tax msgid "Tax" -msgstr "税金" +msgstr "税" #. module: account #: view:account.analytic.account:0 @@ -2805,13 +2862,13 @@ msgstr "税金" #: field:account.move.line,analytic_account_id:0 #: field:account.move.line.reconcile.writeoff,analytic_id:0 msgid "Analytic Account" -msgstr "分析アカウント" +msgstr "分析勘定" #. module: account #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "デフォルト消費税(購入)" #. module: account #: view:account.account:0 @@ -2928,7 +2985,7 @@ msgstr "支払済 / 消し込み済" #: field:account.tax,ref_base_code_id:0 #: field:account.tax.template,ref_base_code_id:0 msgid "Refund Base Code" -msgstr "基本コードの返金" +msgstr "返金基本コード" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_tree @@ -2973,14 +3030,14 @@ msgstr "親チャートテンプレート" #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 msgid "Parent Tax Account" -msgstr "親税金アカウント" +msgstr "親税勘定" #. module: account #: view:account.aged.trial.balance:0 #: model:ir.actions.act_window,name:account.action_account_aged_balance_view #: model:ir.ui.menu,name:account.menu_aged_trial_balance msgid "Aged Partner Balance" -msgstr "パートナ残高年齢表" +msgstr "取引先残高年齢表" #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 @@ -3051,7 +3108,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Accounting Period" -msgstr "" +msgstr "会計期間" #. module: account #: field:account.config.settings,sale_journal_id:0 @@ -3086,7 +3143,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_tax_code_list #: model:ir.ui.menu,name:account.menu_action_tax_code_list msgid "Tax codes" -msgstr "税金コード" +msgstr "税コード" #. module: account #: view:account.account:0 @@ -3118,7 +3175,7 @@ msgstr "8月" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "借方/貸方欄を表示" #. module: account #: selection:account.entries.report,month:0 @@ -3232,7 +3289,7 @@ msgstr "" #. module: account #: field:account.partner.ledger,page_split:0 msgid "One Partner Per Page" -msgstr "ページ毎に1パートナ" +msgstr "ページ毎に1取引先" #. module: account #: field:account.account,child_parent_ids:0 @@ -3297,7 +3354,7 @@ msgstr "条件" #. module: account #: field:account.chart.template,tax_template_ids:0 msgid "Tax Template List" -msgstr "税金テンプレートリスト" +msgstr "税テンプレートリスト" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal @@ -3331,7 +3388,7 @@ msgstr "アカウントコードのために使用される数字の桁数" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "仕入先支払条件" #. module: account #: view:account.fiscalyear:0 @@ -3347,7 +3404,7 @@ msgstr "常に" #: field:account.config.settings,module_account_accountant:0 msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." -msgstr "" +msgstr "完全な会計機能:仕訳、法的な計算書、勘定科目表など。" #. module: account #: view:account.analytic.line:0 @@ -3369,7 +3426,7 @@ msgstr "モデル" #. module: account #: help:account.invoice.tax,base_code_id:0 msgid "The account basis of the tax declaration." -msgstr "税金申告の会計基準" +msgstr "税申告の会計基準" #. module: account #: selection:account.account,type:0 @@ -3404,7 +3461,7 @@ msgstr "電子ファイル" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "消込参照" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 @@ -3414,12 +3471,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_tax_code_template msgid "Tax Code Template" -msgstr "税金コードテンプレート" +msgstr "税コードテンプレート" #. module: account #: model:ir.model,name:account.model_account_partner_ledger msgid "Account Partner Ledger" -msgstr "アカウントパートナ元帳" +msgstr "勘定取引先元帳" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice @@ -3603,7 +3660,7 @@ msgstr "仕訳帳" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 msgid "Remaining Partners" -msgstr "存続パートナ" +msgstr "存続取引先" #. module: account #: view:account.subscription:0 @@ -3632,7 +3689,7 @@ msgstr "会計アプリケーションの設定" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "税申告を報告" #. module: account #: help:account.bank.statement,name:0 @@ -3664,7 +3721,7 @@ msgstr "期首残高" #: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" -msgstr "パートナが定義されていません。" +msgstr "取引先の定義がありません。" #. module: account #: model:ir.actions.act_window,name:account.action_account_period_close @@ -3677,7 +3734,7 @@ msgstr "期間を閉じる" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "期首小計" #. module: account #: constraint:account.move.line:0 @@ -3711,6 +3768,8 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" +"クレジットカードなどでオンライン決済を受信するためのPayPalアカウント(電子メール)を設定した場合、顧客は「PayPalで支払い」ボタンにより自動化さ" +"れた電子メールやOpenERPポータルを通じて請求書や見積書の支払いができるようになります。" #. module: account #: code:addons/account/account_move_line.py:536 @@ -3770,7 +3829,7 @@ msgid "" " waiting for the document to be issued " "by\n" " your supplier/customer." -msgstr "" +msgstr "仕入先/顧客が文書を発行するのを待って、この貸方票を直接または草案にして編集と検証ができます。" #. module: account #: view:validate.account.move.lines:0 @@ -3836,6 +3895,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして顧客請求書を登録してください。\n" +"

\n" +" OpenERPの電子請求は顧客入金の回収を容易にします。\n" +" 顧客は電子メールで請求書を受け取り、顧客のシステムがオンラインで支払うかインポートすることができます。\n" +"

\n" +" 顧客との議論は各請求書の下部に自動で表示されます。\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -3853,7 +3921,7 @@ msgstr "ドラフト請求書" #. module: account #: view:account.config.settings:0 msgid "Options" -msgstr "" +msgstr "オプション" #. module: account #: field:account.aged.trial.balance,period_length:0 @@ -3876,7 +3944,7 @@ msgstr "売上 / 仕入仕訳帳印刷" #. module: account #: view:account.installer:0 msgid "Continue" -msgstr "" +msgstr "次へ" #. module: account #: view:account.invoice.report:0 @@ -3907,12 +3975,12 @@ msgstr "" #. module: account #: field:account.invoice.tax,tax_amount:0 msgid "Tax Code Amount" -msgstr "税金コード金額" +msgstr "税コード金額" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "未消し込み仕訳帳項目" +msgstr "未消込仕訳項目" #. module: account #: selection:account.account.type,close_method:0 @@ -3922,7 +3990,7 @@ msgstr "詳細" #. module: account #: help:account.config.settings,default_purchase_tax:0 msgid "This purchase tax will be assigned by default on new products." -msgstr "" +msgstr "購入税はデフォルトで新製品に割り当てられます。" #. module: account #: report:account.invoice:0 @@ -3959,7 +4027,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "パートナ毎のパートナ消し込みプロセス" +msgstr "取引先毎の消込プロセス" #. module: account #: view:account.chart:0 @@ -4092,7 +4160,7 @@ msgstr "適用可能(Pythonコードによって計算)でない場合は、 #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "仕入先請求書の合計を確認" #. module: account #: view:account.tax:0 @@ -4130,7 +4198,7 @@ msgstr "分析行検索" #. module: account #: field:res.partner,property_account_payable:0 msgid "Account Payable" -msgstr "買掛金" +msgstr "買掛金勘定" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:88 @@ -4190,7 +4258,7 @@ msgstr "" #: field:account.move.reconcile,name:0 #: field:account.subscription,name:0 msgid "Name" -msgstr "名前" +msgstr "名称" #. module: account #: code:addons/account/installer.py:115 @@ -4261,7 +4329,7 @@ msgstr "選択された会計年度、期間、または勘定科目表は同じ msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." -msgstr "" +msgstr "請求書に表示される税コードに関連する税を必要としない場合は、このボックスをチェックします。" #. module: account #: code:addons/account/account_move_line.py:1058 @@ -4343,7 +4411,7 @@ msgstr "定期的行" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "パートナの表示" +msgstr "取引先表示" #. module: account #: view:account.invoice:0 @@ -4358,7 +4426,7 @@ msgstr "資産" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "会計と財務" #. module: account #: view:account.invoice.confirm:0 @@ -4375,7 +4443,7 @@ msgstr "平均レート" #: field:account.common.account.report,display_account:0 #: field:account.report.general.ledger,display_account:0 msgid "Display Accounts" -msgstr "アカウントの表示" +msgstr "表示対象勘定" #. module: account #: view:account.state.open:0 @@ -4385,7 +4453,7 @@ msgstr "(請求書を開く場合は、それは未消し込みでなければ #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "請求書税分析勘定" #. module: account #: field:account.chart,period_from:0 @@ -4397,7 +4465,7 @@ msgstr "期首日" #: field:account.tax.template,name:0 #: report:account.vat.declaration:0 msgid "Tax Name" -msgstr "税金名称" +msgstr "税名称" #. module: account #: view:account.config.settings:0 @@ -4422,7 +4490,7 @@ msgstr "分析的な残高" msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" -msgstr "" +msgstr "この支払い条件は受注と顧客請求でデフォルトの代わりに使用されます。" #. module: account #: view:account.config.settings:0 @@ -4441,7 +4509,7 @@ msgstr "アクティブ項目がFalseに設定されている場合、それを #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "記帳済仕訳帳項目" +msgstr "記帳済仕訳項目" #. module: account #: field:account.move.line,blocked:0 @@ -4451,7 +4519,7 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Search Tax Templates" -msgstr "税金テンプレート検索" +msgstr "税テンプレート検索" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation @@ -4464,7 +4532,7 @@ msgid "" "As an example, a decimal precision of 2 will allow journal entries like: " "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." -msgstr "" +msgstr "例として、小数点以下2桁が9.99 EURとなるのに対し、小数点以下4桁は0.0231 EURのようになります。" #. module: account #: field:account.account,shortcut:0 @@ -4486,7 +4554,7 @@ msgstr "ショートカット" #: field:report.account.receivable,type:0 #: field:report.account_type.sales,user_type:0 msgid "Account Type" -msgstr "アカウントタイプ" +msgstr "勘定科目タイプ" #. module: account #: view:account.bank.statement:0 @@ -4526,6 +4594,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして新しい銀行口座を開設します。\n" +"

\n" +" 報告書のフッタに表示されるあなたの会社の銀行口座の設定と選択を行います。\n" +"

\n" +" OpenERPの会計アプリを使用する場合、これらのデータに基づいた勘定科目と仕訳は自動的に作成されます。\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4587,7 +4663,7 @@ msgstr "PayPalアカウント" #. module: account #: view:account.entries.report:0 msgid "Acc.Type" -msgstr "アカウントタイプ" +msgstr "勘定科目タイプ" #. module: account #: selection:account.journal,type:0 @@ -4659,7 +4735,7 @@ msgstr "オンライン支払を受けるためのPayPalユーザ名(通常は #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "全ての記帳済エントリー" +msgstr "全記帳済エントリ" #. module: account #: field:report.aged.receivable,name:0 @@ -4686,7 +4762,7 @@ msgstr "" #. module: account #: selection:account.move.line,state:0 msgid "Balanced" -msgstr "" +msgstr "貸借一致" #. module: account #: model:process.node,note:account.process_node_importinvoice0 @@ -4704,7 +4780,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart msgid "Set Your Accounting Options" -msgstr "" +msgstr "会計オプションを設定" #. module: account #: model:ir.model,name:account.model_account_chart @@ -4714,7 +4790,7 @@ msgstr "会計表" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "支払参照" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -4783,7 +4859,7 @@ msgstr "クレジットノート" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "調整する仕訳項目" #. module: account #: model:ir.model,name:account.model_account_tax_template @@ -4803,7 +4879,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "税計算" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4830,7 +4906,7 @@ msgstr "モデルからエントリーを作成" #: field:account.account,reconcile:0 #: field:account.account.template,reconcile:0 msgid "Allow Reconciliation" -msgstr "消し込みの許可" +msgstr "消込許可" #. module: account #: constraint:account.account:0 @@ -4900,12 +4976,12 @@ msgstr "" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Cancelled" -msgstr "キャンセル済" +msgstr "取消済" #. module: account #: help:account.config.settings,group_proforma_invoices:0 msgid "Allows you to put invoices in pro-forma state." -msgstr "" +msgstr "請求書を試算状態にできます。" #. module: account #: view:account.journal:0 @@ -4918,7 +4994,7 @@ msgstr "" msgid "" "It adds the currency column on report if the currency differs from the " "company currency." -msgstr "" +msgstr "会社の通貨と異なる場合はレポートに通貨欄を追加します。" #. module: account #: code:addons/account/account.py:3394 @@ -4953,7 +5029,7 @@ msgstr "確認済" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "キャンセル済請求書" +msgstr "取消済請求書" #. module: account #: view:account.invoice:0 @@ -4974,7 +5050,7 @@ msgstr "" #: field:account.tax,ref_tax_code_id:0 #: field:account.tax.template,ref_tax_code_id:0 msgid "Refund Tax Code" -msgstr "税金コードの返金" +msgstr "返金税コード" #. module: account #: view:account.invoice:0 @@ -4984,7 +5060,7 @@ msgstr "" #. module: account #: field:account.chart.template,property_account_income:0 msgid "Income Account on Product Template" -msgstr "製品テンプレート上の損益勘定" +msgstr "製品テンプレート上の収益勘定" #. module: account #: help:account.journal.period,state:0 @@ -5067,7 +5143,7 @@ msgstr "確認" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "または" #. module: account #: view:account.invoice.report:0 @@ -5095,7 +5171,7 @@ msgstr "請求書が支払われる先の銀行口座番号。顧客請求書や #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 msgid "Partners Reconciled Today" -msgstr "本日パートナ消し込み済" +msgstr "本日消込の取引先" #. module: account #: help:account.invoice.tax,tax_code_id:0 @@ -5117,7 +5193,7 @@ msgstr "支払済" #. module: account #: field:account.invoice,tax_line:0 msgid "Tax Lines" -msgstr "税金行" +msgstr "税明細" #. module: account #: help:account.move.line,statement_id:0 @@ -5134,7 +5210,7 @@ msgstr "ドラフト請求書は検証されます。 " msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." -msgstr "" +msgstr "請求書の税明細にデフォルトで設定される勘定を設定します。交際費で使用する場合は空白のままにします。" #. module: account #: code:addons/account/account.py:890 @@ -5150,7 +5226,7 @@ msgstr "レビューすべき仕訳帳エントリー" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round Globally" -msgstr "" +msgstr "全体で丸め" #. module: account #: view:account.bank.statement:0 @@ -5170,6 +5246,8 @@ msgid "" "Please verify the price of the invoice !\n" "The encoded total does not match the computed total." msgstr "" +"請求書の金額をご確認ください。\n" +"ご入力の合計金額が計算された合計金額と合致しません。" #. module: account #: field:account.account,active:0 @@ -5179,13 +5257,13 @@ msgstr "" #: field:account.payment.term,active:0 #: field:account.tax,active:0 msgid "Active" -msgstr "アクティブ" +msgstr "有効" #. module: account #: view:account.bank.statement:0 #: field:account.journal,cash_control:0 msgid "Cash Control" -msgstr "" +msgstr "現金管理" #. module: account #: field:account.analytic.balance,date2:0 @@ -5232,7 +5310,7 @@ msgstr "このビューから財務分析を行います。これは期間毎に #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "財務管理者" #. module: account #: field:account.journal,group_invoice_lines:0 @@ -5242,7 +5320,7 @@ msgstr "グループ請求書行" #. module: account #: view:account.automatic.reconcile:0 msgid "Close" -msgstr "閉じる" +msgstr "完了済" #. module: account #: field:account.bank.statement.line,move_ids:0 @@ -5265,7 +5343,7 @@ msgstr "消費税申告アカウント" msgid "" "If you do not check this box, you will be able to do invoicing & payments, " "but not accounting (Journal Items, Chart of Accounts, ...)" -msgstr "" +msgstr "このボックスをチェックしない場合も請求と支払いは行いますが、仕訳項目や勘定科目には影響しません。" #. module: account #: view:account.period:0 @@ -5285,12 +5363,12 @@ msgstr "テンプレート" #. module: account #: field:account.invoice.tax,name:0 msgid "Tax Description" -msgstr "税金説明" +msgstr "税詳細" #. module: account #: field:account.tax,child_ids:0 msgid "Child Tax Accounts" -msgstr "子税金アカウント" +msgstr "子税勘定" #. module: account #: help:account.tax,price_include:0 @@ -5333,7 +5411,7 @@ msgstr "分析残高 -" #: field:account.vat.declaration,target_move:0 #: field:accounting.report,target_move:0 msgid "Target Moves" -msgstr "ターゲットの移動" +msgstr "対象仕訳" #. module: account #: code:addons/account/account.py:1454 @@ -5346,7 +5424,7 @@ msgstr "" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "" +msgstr "期首数量" #. module: account #: field:account.subscription,period_type:0 @@ -5441,13 +5519,13 @@ msgstr "月" #: view:account.move.line:0 #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "調整の次のパートナー" +msgstr "次に消込する取引先" #. module: account #: field:account.invoice.tax,account_id:0 #: field:account.move.line,tax_code_id:0 msgid "Tax Account" -msgstr "税金アカウント" +msgstr "税勘定" #. module: account #: model:account.financial.report,name:account.account_financial_report_balancesheet0 @@ -5461,7 +5539,7 @@ msgstr "貸借対照表" #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "損益(損益勘定)" +msgstr "損益計算書(収益勘定)" #. module: account #: field:account.journal,allow_date:0 @@ -5537,7 +5615,7 @@ msgstr "金額" #: code:addons/account/wizard/account_fiscalyear_close.py:41 #, python-format msgid "End of Fiscal Year Entry" -msgstr "会計年度エントリーの最後" +msgstr "会計年度締仕訳" #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -5577,7 +5655,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "エントリーのキャンセル許可" +msgstr "エントリの取消許可" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -5598,7 +5676,7 @@ msgstr "親の係数" #. module: account #: report:account.partner.balance:0 msgid "(Account/Partner) Name" -msgstr "アカウント / パートナ名" +msgstr "(勘定/取引先)名称" #. module: account #: field:account.partner.reconcile.process,progress:0 @@ -5634,7 +5712,7 @@ msgstr "基本金額に含む" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "仕入先請求書番号" #. module: account #: help:account.payment.term.line,days:0 @@ -5677,7 +5755,7 @@ msgstr "期首日" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 msgid "Asset View" -msgstr "" +msgstr "資産ビュー" #. module: account #: model:ir.model,name:account.model_account_common_account_report @@ -5695,7 +5773,7 @@ msgstr "アカウント共通アカウントレポート" #: selection:account.period,state:0 #: selection:report.invoice.created,state:0 msgid "Open" -msgstr "開く" +msgstr "オープン" #. module: account #: view:account.config.settings:0 @@ -5715,12 +5793,12 @@ msgstr "" #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "期首残高を含む" +msgstr "期初残高を含む" #. module: account #: view:account.invoice.tax:0 msgid "Tax Codes" -msgstr "税金コード" +msgstr "税コード" #. module: account #: selection:account.invoice,type:0 @@ -5750,7 +5828,7 @@ msgstr "年度エントリー仕訳帳の末尾" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "ドラフト返金 " #. module: account #: view:cash.box.in:0 @@ -5820,7 +5898,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_analytic_account_form #: model:ir.ui.menu,name:account.account_analytic_def_account msgid "Analytic Accounts" -msgstr "分析アカウント" +msgstr "分析勘定" #. module: account #: view:account.invoice.report:0 @@ -5838,7 +5916,7 @@ msgstr "通貨金額" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "" +msgstr "明細ごとに丸め" #. module: account #: report:account.analytic.account.balance:0 @@ -5875,7 +5953,7 @@ msgstr "支払いエントリーは消し込みの第2の入力です。" msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" -msgstr "" +msgstr "この支払い条件は発注と仕入先請求でデフォルトの代わりに使用されます。" #. module: account #: help:account.automatic.reconcile,power:0 @@ -5899,7 +5977,7 @@ msgstr "会計ポジションテンプレート" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "ドラフト返金" #. module: account #: view:account.analytic.chart:0 @@ -5916,7 +5994,7 @@ msgstr "チャートを開く" #: field:account.print.journal,amount_currency:0 #: field:account.report.general.ledger,amount_currency:0 msgid "With Currency" -msgstr "通貨で" +msgstr "通貨表示" #. module: account #: view:account.bank.statement:0 @@ -5959,13 +6037,13 @@ msgstr "アカウント自動消し込み" #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "仕訳帳項目" +msgstr "仕訳項目" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "開始エントリーの生成" +msgstr "期初仕訳生成" #. module: account #: help:account.tax,type:0 @@ -6146,7 +6224,7 @@ msgstr "行数" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(更新)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6186,13 +6264,13 @@ msgstr "期首残高と取引行を基本に計算された残高" #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "損失勘定" #. module: account #: field:account.tax,account_collected_id:0 #: field:account.tax.template,account_collected_id:0 msgid "Invoice Tax Account" -msgstr "請求書税金アカウント" +msgstr "請求書税勘定" #. module: account #: model:ir.actions.act_window,name:account.action_account_general_journal @@ -6280,7 +6358,7 @@ msgstr "この仕訳帳と関係する会社" #. module: account #: help:account.config.settings,group_multi_currency:0 msgid "Allows you multi currency environment" -msgstr "" +msgstr "多通貨を許可します。" #. module: account #: view:account.subscription:0 @@ -6320,7 +6398,7 @@ msgstr "分析エントリー" #: view:res.company:0 #: field:res.company,overdue_msg:0 msgid "Overdue Payments Message" -msgstr "支払延滞のメッセージ" +msgstr "督促メッセージ" #. module: account #: field:account.entries.report,date_created:0 @@ -6359,7 +6437,7 @@ msgstr "分析行" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Models" -msgstr "" +msgstr "モデル" #. module: account #: code:addons/account/account_invoice.py:1124 @@ -6372,7 +6450,7 @@ msgstr "" #. module: account #: field:product.template,taxes_id:0 msgid "Customer Taxes" -msgstr "顧客の税金" +msgstr "顧客税" #. module: account #: help:account.model,name:0 @@ -6402,12 +6480,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして仕入先からの返金を登録してください。\n" +"

\n" +" 仕入先返金をマニュアルで登録する代わりに、関連する仕入先請求書から返金と消し込みを直接生成することもできます。\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 #: field:account.tax.template,type:0 msgid "Tax Type" -msgstr "税金タイプ" +msgstr "税タイプ" #. module: account #: model:ir.actions.act_window,name:account.action_account_template_form @@ -6430,7 +6514,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Tax Statement" -msgstr "税金明細書" +msgstr "税明細書" #. module: account #: model:ir.model,name:account.model_res_company @@ -6450,7 +6534,7 @@ msgstr "子を平坦に表示" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "銀行と現金" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 @@ -6481,7 +6565,7 @@ msgstr "会計年度" #. module: account #: view:account.move.reconcile:0 msgid "Partial Reconcile Entries" -msgstr "部分消し込みエントリー" +msgstr "部分消込エントリ" #. module: account #: view:account.aged.trial.balance:0 @@ -6520,7 +6604,7 @@ msgstr "部分消し込みエントリー" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Cancel" -msgstr "キャンセル" +msgstr "取消" #. module: account #: selection:account.account,type:0 @@ -6581,7 +6665,7 @@ msgstr "株式" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "" +msgstr "内部振替勘定" #. module: account #: code:addons/account/wizard/pos_box.py:32 @@ -6597,12 +6681,12 @@ msgstr "パーセンテージ" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "" +msgstr "全体で丸め" #. module: account #: selection:account.report.general.ledger,sortby:0 msgid "Journal & Partner" -msgstr "仕訳帳とパートナ" +msgstr "仕訳帳・取引先" #. module: account #: field:account.automatic.reconcile,power:0 @@ -6641,7 +6725,7 @@ msgstr "次回税金の計算のために基本金額に税額が含まれるべ #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile msgid "Reconciliation: Go to Next Partner" -msgstr "消し込み:次のパートナへ" +msgstr "消込:次の取引先へ" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance @@ -6663,6 +6747,8 @@ msgid "" "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." msgstr "" +"支払条件を使用する場合、期日は会計項目の生成時に自動で計算されます。支払条件は複数の期日(たとえば直ぐに50%、1ヶ月以内に50%)を計算できます。期日を" +"強制したい場合、支払条件は請求書に設定されないことを確認してください。支払条件を設定して期日が空の場合は直接支払いを意味します。" #. module: account #: code:addons/account/account.py:414 @@ -6702,7 +6788,7 @@ msgstr "" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "破棄" #. module: account #: selection:account.account,type:0 @@ -6715,7 +6801,7 @@ msgstr "流動性" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "分析仕訳帳項目" +msgstr "分析仕訳項目" #. module: account #: field:account.config.settings,has_default_company:0 @@ -6729,8 +6815,7 @@ msgid "" "year. Note that you can run this wizard many times for the same fiscal year: " "it will simply replace the old opening entries with the new ones." msgstr "" -"このウィザードは選択した会計年度の年度仕訳帳項目の終わりを生成します。このウィザードは同じ会計年度で何度も実行できることに注意して下さい:これは単純に古い" -"開始エントリーを新しいもので置き換えます。" +"選択した新会計年度の期初仕訳を生成します。このウィザードは同じ会計年度で何度でも実行可能です(前回の実行で生成された期初仕訳が上書きされます)。" #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash @@ -6957,7 +7042,7 @@ msgstr "借方合計" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "消し込みする次のパートナエントリー" +msgstr "次に消込する取引先エントリ" #. module: account #: report:account.invoice:0 @@ -7014,7 +7099,7 @@ msgstr "損益計算書(費用勘定)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "" +msgstr "総取引" #. module: account #: code:addons/account/account.py:636 @@ -7044,7 +7129,7 @@ msgstr "残高符号の維持" #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "税金レポート" +msgstr "税レポート" #. module: account #: selection:account.journal.period,state:0 @@ -7064,7 +7149,7 @@ msgstr "手動" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "キャンセル:払い戻しと消し込みを作成" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 @@ -7107,7 +7192,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "仕訳帳エントリー" +msgstr "仕訳" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 @@ -7118,7 +7203,7 @@ msgstr "" #. module: account #: help:account.partner.ledger,page_split:0 msgid "Display Ledger Report with One partner per page" -msgstr "" +msgstr "元帳レポートはページごとにひとつの取引先を表示" #. module: account #: report:account.general.ledger:0 @@ -7153,7 +7238,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "全エントリー" +msgstr "全エントリ" #. module: account #: constraint:account.move.reconcile:0 @@ -7277,7 +7362,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "顧客入金を管理" #. module: account #: help:report.invoice.created,origin:0 @@ -7300,7 +7385,7 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "売上で使われる税金" +msgstr "販売で使用する税" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 @@ -7359,12 +7444,12 @@ msgstr "" #: field:account.invoice.line,origin:0 #: field:report.invoice.created,origin:0 msgid "Source Document" -msgstr "基となるドキュメント" +msgstr "参照元" #. module: account #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" -msgstr "" +msgstr "各印刷文書のフッタに印刷される銀行口座" #. module: account #: constraint:account.account:0 @@ -7387,7 +7472,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Taxes:" -msgstr "税金:" +msgstr "税:" #. module: account #: code:addons/account/account_invoice.py:458 @@ -7427,7 +7512,7 @@ msgstr "行" #. module: account #: view:account.tax.template:0 msgid "Account Tax Template" -msgstr "アカウント税金テンプレート" +msgstr "勘定税テンプレート" #. module: account #: view:account.journal.select:0 @@ -7442,12 +7527,12 @@ msgstr "この請求書を本当に開きますか?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "費用勘定の開始エントリー" +msgstr "期初仕訳費用勘定" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "顧客参照" #. module: account #: field:account.account.template,parent_id:0 @@ -7514,7 +7599,7 @@ msgstr "この顧客はあなたに合計金額の支払義務があります。 #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "不均衡状態の仕訳帳項目" +msgstr "不均衡な仕訳項目" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -7534,7 +7619,7 @@ msgstr "OK" #. module: account #: field:account.chart.template,tax_code_root_id:0 msgid "Root Tax Code" -msgstr "ルート税金コード" +msgstr "基税コード" #. module: account #: help:account.journal,centralisation:0 @@ -7563,12 +7648,12 @@ msgstr "デフォルト消費税(仕入)" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "損益勘定の開始エントリー" +msgstr "期初仕訳収益勘定" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "" +msgstr "見積送り状を許可" #. module: account #: view:account.bank.statement:0 @@ -7592,7 +7677,7 @@ msgstr "請求書参照" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "新エントリーの名前" +msgstr "生成仕訳名称" #. module: account #: view:account.use.model:0 @@ -7607,7 +7692,7 @@ msgstr "" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "会社の主な通貨" #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports @@ -7625,7 +7710,7 @@ msgstr "警告" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "契約 / 分析アカウント" +msgstr "契約/分析勘定" #. module: account #: view:account.journal:0 @@ -7636,7 +7721,7 @@ msgstr "アカウント仕訳帳" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "" +msgstr "税計算の丸め方法" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 @@ -7653,6 +7738,7 @@ msgid "" " with the invoice. You will not be able " "to modify the credit note." msgstr "" +"発行すべきでなかった請求書をキャンセルしたい場合は、このオプションを使用します。貸方票が作成、検証され、請求書と消し込みされます。貸方票は変更できません。" #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -7746,7 +7832,7 @@ msgstr "プロフォーマ" #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "アンバランス" +msgstr "貸借不一致" #. module: account #: selection:account.move.line,centralisation:0 @@ -7805,7 +7891,7 @@ msgstr "売上仕訳帳" #. module: account #: model:ir.model,name:account.model_account_invoice_tax msgid "Invoice Tax" -msgstr "請求書税金" +msgstr "請求書税" #. module: account #: code:addons/account/account_move_line.py:1185 @@ -7835,7 +7921,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "未記帳の仕訳帳エントリー" +msgstr "未記帳仕訳" #. module: account #: help:account.invoice.refund,date:0 @@ -7883,13 +7969,13 @@ msgstr "通貨調整" #. module: account #: field:account.fiscalyear.close,fy_id:0 msgid "Fiscal Year to close" -msgstr "閉じる会計年度" +msgstr "締対象会計年度" #. module: account #: view:account.invoice.cancel:0 #: model:ir.actions.act_window,name:account.action_account_invoice_cancel msgid "Cancel Selected Invoices" -msgstr "選択請求書のキャンセル" +msgstr "選択請求書を取消" #. module: account #: help:account.account.type,report_type:0 @@ -7941,7 +8027,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "仕訳帳エントリーの記帳" +msgstr "仕訳の記帳" #. module: account #: selection:account.bank.statement.line,type:0 @@ -7998,12 +8084,12 @@ msgstr "順序" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "PayPalアカウント" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "仕訳帳エントリー番号" +msgstr "仕訳番号" #. module: account #: view:account.financial.report:0 @@ -8110,7 +8196,7 @@ msgstr "現金箱行" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "会計パッケージ" #. module: account #: report:account.third_party_ledger:0 @@ -8120,7 +8206,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other #: model:ir.ui.menu,name:account.menu_account_partner_ledger msgid "Partner Ledger" -msgstr "パートナ元帳" +msgstr "取引先元帳" #. module: account #: selection:account.tax.template,type:0 @@ -8145,7 +8231,7 @@ msgstr "" #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "" +msgstr "税計算の丸め方法" #. module: account #: field:account.entries.report,move_line_state:0 @@ -8191,7 +8277,7 @@ msgstr "未消し込みを開く" #: model:ir.model,name:account.model_res_partner #: field:report.invoice.created,partner_id:0 msgid "Partner" -msgstr "パートナ" +msgstr "取引先" #. module: account #: help:account.change.currency,currency_id:0 @@ -8240,7 +8326,7 @@ msgstr "アカウントエントリー行は有効な状態ではありません #. module: account #: field:account.account.type,close_method:0 msgid "Deferral Method" -msgstr "繰延法" +msgstr "繰越方法" #. module: account #: model:process.node,note:account.process_node_electronicfile0 @@ -8273,13 +8359,13 @@ msgstr "分析エントリー" #. module: account #: view:account.analytic.account:0 msgid "Associated Partner" -msgstr "関連パートナ" +msgstr "関連取引先" #. module: account #: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" -msgstr "最初にパートナを選択して下さい。" +msgstr "始めに取引先を選択してください。" #. module: account #: field:account.invoice,comment:0 @@ -8295,7 +8381,7 @@ msgstr "残差合計" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "" +msgstr "現在の現金管理" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 @@ -8322,7 +8408,7 @@ msgstr "請求書の状態は開いています。" #: field:account.subscription,state:0 #: field:report.invoice.created,state:0 msgid "Status" -msgstr "" +msgstr "ステータス" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -8393,6 +8479,8 @@ msgid "" "recalls.\n" " This installs the module account_followup." msgstr "" +"複数レベルの想起で支払い督促を自動化できます。\n" +" account_followupモジュールがインストールされます。" #. module: account #: field:account.automatic.reconcile,period_id:0 @@ -8440,7 +8528,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "次の請求書番号" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting @@ -8483,7 +8571,7 @@ msgstr "課税基準金額" msgid "" "This wizard will remove the end of year journal entries of selected fiscal " "year. Note that you can run this wizard many times for the same fiscal year." -msgstr "" +msgstr "このウィザードは選択した会計年度の最後の仕訳項目を削除します。同じ会計年度ではこのウィザードを何度も実行できることに注意してください。" #. module: account #: report:account.invoice:0 @@ -8534,20 +8622,20 @@ msgstr "期末残高" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "相手勘定を集約" #. module: account #: help:account.move.line,blocked:0 msgid "" "You can check this box to mark this journal item as a litigation with the " "associated partner" -msgstr "関連するパートナとの訴訟としてこの仕訳帳項目をマークするためには、このボックスをチェックします。" +msgstr "仕訳項目が関連取引先と係争状態にあることを示すには、このボックスをチェックします。" #. module: account #: field:account.move.line,reconcile_partial_id:0 #: view:account.move.line.reconcile:0 msgid "Partial Reconcile" -msgstr "部分消し込み" +msgstr "部分消込" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance @@ -8569,6 +8657,8 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"請求書をキャンセルして新しいものを作成したい場合は、このオプションを使用します。貸方票が作成、検証され、現在の請求書と消し込みされます。編集可能な新しいド" +"ラフト請求書が作成されます。" #. module: account #: model:process.transition,name:account.process_transition_filestatement0 @@ -8589,14 +8679,14 @@ msgstr "銀行消し込みの移動" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "適用" #. module: account #: field:account.financial.report,account_type_ids:0 #: model:ir.actions.act_window,name:account.action_account_type_form #: model:ir.ui.menu,name:account.menu_action_account_type_form msgid "Account Types" -msgstr "アカウントタイプ" +msgstr "勘定科目タイプ" #. module: account #: model:email.template,subject:account.email_template_edi_invoice @@ -8614,7 +8704,7 @@ msgstr "" #. module: account #: field:account.account.type,report_type:0 msgid "P&L / BS Category" -msgstr "損益計算書 / 貸借対照表分類" +msgstr "損益計算書 / 貸借対照表区分" #. module: account #: view:account.automatic.reconcile:0 @@ -8676,7 +8766,7 @@ msgstr "会計年度が閉じた状態" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "仕訳帳の返金" +msgstr "返金仕訳帳" #. module: account #: report:account.account.balance:0 @@ -8705,7 +8795,7 @@ msgstr "会社分析" #. module: account #: help:account.invoice,account_id:0 msgid "The partner account used for this invoice." -msgstr "パートナアカウントはこの請求書に使用されています。" +msgstr "この請求書に使われる取引先勘定" #. module: account #: code:addons/account/account.py:3391 @@ -8739,7 +8829,7 @@ msgstr "小計" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "税金明細書の印刷" +msgstr "税明細書を印刷" #. module: account #: view:account.model.line:0 @@ -8764,7 +8854,7 @@ msgstr "仕入先" #. module: account #: view:account.journal:0 msgid "Accounts Type Allowed (empty for no control)" -msgstr "許可アカウントタイプ(制御なしは空)" +msgstr "許可勘定科目タイプ(制御なしは空)" #. module: account #: help:account.move.line,amount_residual:0 @@ -8790,12 +8880,12 @@ msgid "" "This option allows you to get more details about the way your balances are " "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." -msgstr "" +msgstr "このオプションは残高の計算方法について多くの詳細が得られます。スペースを消費するため、比較しながらの使用はできません。" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close msgid "Fiscalyear Close" -msgstr "会計年度を閉じる" +msgstr "会計年度締" #. module: account #: sql_constraint:account.account:0 @@ -8844,14 +8934,14 @@ msgstr "許可アカウント(制御なしは空)" #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "売上税 (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 #: model:ir.actions.act_window,name:account.action_account_analytic_chart #: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Chart of Analytic Accounts" -msgstr "分析アカウントチャート" +msgstr "分析勘定表" #. module: account #: model:ir.actions.act_window,help:account.action_subscription_form @@ -8869,6 +8959,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして新しい定期項目を定義します。\n" +"

\n" +" " +"定期項目は特定の日付から定期的に発生、つまり契約の署名や顧客または仕入先との取り決めに対応します。システムでの転記を自動化するため、このような項目を作成で" +"きます。\n" +"

\n" +" " #. module: account #: view:account.journal:0 @@ -8911,6 +9009,8 @@ msgid "" "This allows you to check writing and printing.\n" " This installs the module account_check_writing." msgstr "" +"小切手の振り出しと印刷ができます。\n" +" account_check_writingがインストールされます。" #. module: account #: model:res.groups,name:account.group_account_invoice @@ -9023,7 +9123,7 @@ msgstr "強制期間" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "パートナ残高アカウントの印刷" +msgstr "取引先別勘定残高を印刷" #. module: account #: code:addons/account/account_move_line.py:1121 @@ -9065,7 +9165,7 @@ msgstr "不明" #: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" -msgstr "仕訳帳の開始エントリー" +msgstr "期初仕訳帳" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 @@ -9092,6 +9192,8 @@ msgid "" "You cannot select an account type with a deferral method different of " "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"." msgstr "" +"設定エラー!\n" +"内部タイプが「売掛金/買掛金」のアカウントは「未消込」以外の繰延方法でアカウントタイプを選択できません。" #. module: account #: field:account.config.settings,has_fiscal_year:0 @@ -9154,7 +9256,7 @@ msgstr "期間の開始日" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "通貨単位" #. module: account #: code:addons/account/account.py:3195 @@ -9191,7 +9293,7 @@ msgstr "会計年度と期間を閉じる" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "仕入返金仕訳帳" #. module: account #: view:account.analytic.line:0 @@ -9215,7 +9317,7 @@ msgstr "請求書作成" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "会計データ設定" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 @@ -9292,7 +9394,7 @@ msgstr "財務レポート" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 msgid "Liability View" -msgstr "" +msgstr "負債ビュー" #. module: account #: report:account.account.balance:0 @@ -9335,12 +9437,12 @@ msgstr "分析指示" #. module: account #: field:res.partner,ref_companies:0 msgid "Companies that refers to partner" -msgstr "パートナに当てはまる会社" +msgstr "取引先を参照する会社" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "返金要求" #. module: account #: view:account.move.line:0 @@ -9388,6 +9490,10 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"以下を目的とした支払指図の作成と管理ができます。\n" +" * 様々な自動化された支払い手順を容易にプラグインするためのベースとして\n" +" * 請求書の支払いを管理するためのより効率的な方法を提供\n" +" account_paymentモジュールがインストールされます。" #. module: account #: xsl:account.transfer:0 @@ -9450,7 +9556,7 @@ msgstr "表示アカウント" #: model:account.account.type,name:account.data_account_type_payable #: selection:account.entries.report,type:0 msgid "Payable" -msgstr "買掛金" +msgstr "支払対象" #. module: account #: view:board.board:0 @@ -9471,7 +9577,7 @@ msgstr "会計エントリーは消し込みの最初の入力です。" #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "会計年度開始エントリーの生成" +msgstr "会計年度期初仕訳の生成" #. module: account #: report:account.third_party_ledger:0 @@ -9512,7 +9618,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "日付 / 期間" #. module: account #: report:account.central.journal:0 @@ -9542,7 +9648,7 @@ msgstr "" msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." -msgstr "" +msgstr "払い戻しの税明細にデフォルトで設定される勘定を設定します。交際費で使用する場合は空白のままにします。" #. module: account #: help:account.addtmpl.wizard,cparent_id:0 @@ -9575,7 +9681,7 @@ msgstr "" msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." -msgstr "" +msgstr "このフィールドは仕訳帳の記帳番号に関連する情報を含みます。" #. module: account #: field:account.invoice,sent:0 @@ -9591,7 +9697,7 @@ msgstr "一般的なレポート" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "デフォルト消費税(販売)" #. module: account #: report:account.overdue:0 @@ -9607,7 +9713,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "定期処理" #. module: account #: view:account.invoice.report:0 @@ -9676,7 +9782,7 @@ msgstr "期末日" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 msgid "Expense View" -msgstr "" +msgstr "費用ビュー" #. module: account #: field:account.move.line,date_maturity:0 @@ -9687,7 +9793,7 @@ msgstr "期日" #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "即時払い" #. module: account #: code:addons/account/account.py:1502 @@ -9780,13 +9886,13 @@ msgstr "" #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "未消し込み" +msgstr "未消込" #. module: account #: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" -msgstr "合計が誤っています。" +msgstr "合計が不正です。" #. module: account #: field:account.journal,sequence_id:0 @@ -9823,7 +9929,7 @@ msgstr "原価元帳(数量のみ)" #: model:process.transition,name:account.process_transition_analyticinvoice0 #: model:process.transition,name:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts" -msgstr "分析アカウントから" +msgstr "分析勘定より" #. module: account #: view:account.installer:0 @@ -9863,7 +9969,7 @@ msgstr "コード / 日付" #: model:ir.model,name:account.model_account_move_line #: model:ir.ui.menu,name:account.menu_action_account_moves_all msgid "Journal Items" -msgstr "仕訳帳項目" +msgstr "仕訳項目" #. module: account #: view:accounting.report:0 @@ -9888,6 +9994,9 @@ msgid "" "analytic account.\n" " This installs the module account_budget." msgstr "" +"会計担当者は異なる分野の予算と分析を管理できます。\n" +" プロジェクト管理者は全体予算と個別予算を定義することで、各分析会計の予定額を設定できます。\n" +" account_budgetモジュールがインストールされます。" #. module: account #: field:account.bank.statement.line,name:0 @@ -9945,7 +10054,7 @@ msgstr "貸方" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "ドラフト請求書 " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -10248,7 +10357,7 @@ msgstr "" #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "返金税分析勘定" #. module: account #: view:account.move.bank.reconcile:0 @@ -10319,7 +10428,7 @@ msgstr "満期日" #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "理由" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10327,7 +10436,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "未消し込みエントリー" +msgstr "未消込エントリ" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10412,7 +10521,7 @@ msgstr "" #. module: account #: view:account.partner.reconcile.process:0 msgid "Go to Next Partner" -msgstr "次のパートナへ" +msgstr "次の取引先へ" #. module: account #: view:account.automatic.reconcile:0 @@ -10428,7 +10537,7 @@ msgstr "請求書は完了状態です。" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "顧客支払を管理" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -10511,7 +10620,7 @@ msgstr "" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Partner Payment Term" -msgstr "パートナ支払条件" +msgstr "取引先支払条件" #. module: account #: field:temp.range,name:0 @@ -10521,7 +10630,7 @@ msgstr "範囲" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "仕入仕訳帳に関連した分析仕訳帳項目" +msgstr "仕入仕訳帳に紐づく分析仕訳項目" #. module: account #: help:account.account,type:0 @@ -10543,12 +10652,12 @@ msgstr "" #: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" -msgstr "変動" +msgstr "変動があったもの" #. module: account #: view:account.tax.code.template:0 msgid "Account Tax Code Template" -msgstr "アカウント税金コードテンプレート" +msgstr "勘定税コードテンプレート" #. module: account #: model:process.node,name:account.process_node_manually0 @@ -10690,6 +10799,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 記入したい期間と仕訳帳を選択します。\n" +"

\n" +" " +"このビューは会計担当者が受注の際にOpenERPの項目に素早く記録するため使用できます。仕入先請求書を記録したい場合、費用勘定の記録から始めます。Open" +"ERPはこの勘定に関連する税と「買掛金勘定」を自動で提案します。\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 @@ -10759,7 +10876,7 @@ msgstr "アカウント移動行の検証" #: help:res.partner,property_account_position:0 msgid "" "The fiscal position will determine taxes and accounts used for the partner." -msgstr "" +msgstr "財政状況は取引先の税と勘定を決定します。" #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 @@ -10825,7 +10942,7 @@ msgstr "パートナ" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "内部注記" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear @@ -10901,7 +11018,7 @@ msgstr "将来" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "仕訳帳項目検索" +msgstr "仕訳項目検索" #. module: account #: help:account.tax,base_sign:0 @@ -10928,7 +11045,7 @@ msgstr "製品テンプレート上の経費勘定" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "顧客支払条件" #. module: account #: help:accounting.report,label_filter:0 @@ -10940,7 +11057,7 @@ msgstr "このラベルは所定の比較フィルタのために、計算され #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round per line" -msgstr "" +msgstr "明細ごとに丸め" #. module: account #: help:account.move.line,amount_residual_currency:0 @@ -12759,3 +12876,6 @@ msgstr "仕訳帳エントリーの買掛金、または買掛金の残差金額 #~ msgid "Column Name" #~ msgstr "列名" + +#~ msgid "Cancel Invoice" +#~ msgstr "請求書取消" diff --git a/addons/account/i18n/kab.po b/addons/account/i18n/kab.po index 67bde528570..2fa3a3750ce 100644 --- a/addons/account/i18n/kab.po +++ b/addons/account/i18n/kab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/kk.po b/addons/account/i18n/kk.po index e01809b1383..f43c76a7597 100644 --- a/addons/account/i18n/kk.po +++ b/addons/account/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:56+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ko.po b/addons/account/i18n/ko.po index 679ba251ee1..f5e48cbeb40 100644 --- a/addons/account/i18n/ko.po +++ b/addons/account/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lo.po b/addons/account/i18n/lo.po index 7e7ba7cc10a..84036b00824 100644 --- a/addons/account/i18n/lo.po +++ b/addons/account/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:28+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po index 1b3c91baa2c..7010e805d4a 100644 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:29+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lv.po b/addons/account/i18n/lv.po index b18e890ea3e..159fb6835e7 100644 --- a/addons/account/i18n/lv.po +++ b/addons/account/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:29+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po index ea381ca397d..97e9a2ccc4b 100644 --- a/addons/account/i18n/mk.po +++ b/addons/account/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:29+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po index d07bba5704b..763e4654a33 100644 --- a/addons/account/i18n/mn.po +++ b/addons/account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:29+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:57+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po index 35fd0c1512c..c9e597900db 100644 --- a/addons/account/i18n/nb.po +++ b/addons/account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:29+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index a3bbac5fcdf..ae5e44d7352 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:24+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:54+0000\n" +"X-Generator: Launchpad (build 16914)\n" #, python-format #~ msgid "Integrity Error !" @@ -1265,7 +1265,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "Crediteer " +msgstr "Credit factuur " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1282,7 +1282,7 @@ msgstr "Toepasbaarheidsopties" #. module: account #: report:account.partner.balance:0 msgid "In dispute" -msgstr "Wordt betwist" +msgstr "Betwist" #. module: account #: view:account.journal:0 @@ -4005,7 +4005,7 @@ msgid "" "centralized counterpart box in the related journal from the configuration " "menu." msgstr "" -"Het is niet mogelijk een factuur aan te maken op ene centrale tegenrekening. " +"Het is niet mogelijk een factuur aan te maken op een centrale tegenrekening. " "Vink de optie 'centrale tegenrekening' uit bij de instellingen van het " "bijbehorende dagboek." @@ -4998,7 +4998,7 @@ msgstr "Maand" #, python-format msgid "You cannot change the code of account which contains journal items!" msgstr "" -"Het is niet mogelijk de de code van de rekening te wijzigen, welke al regels " +"Het is niet mogelijk de code van de rekening te wijzigen, welke al regels " "bevat!" #. module: account @@ -5304,7 +5304,7 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" -"Kan geen dagboek van het soort \"%s\" vinden voor dit bedrijf.\n" +"Kan geen dagboek van het soort '%s' vinden voor dit bedrijf.\n" "\n" "U kunt deze aanmaken in het menu:\n" "Instellingen\\Dagboeken\\Dagboeken." @@ -7452,7 +7452,7 @@ msgid "" "2%." msgstr "" "Het percentage voor de betalingsconditie regel moet liggen tussen 0 en 1, " -"bijvoorbeeld 0,002 voor 2%." +"bijvoorbeeld 0,02 voor 2%." #. module: account #: report:account.invoice:0 @@ -8341,7 +8341,7 @@ msgstr "Factuurregel" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "Klant en leverancier terugbetalingen" +msgstr "Klant en leverancier credit facturen" #. module: account #: field:account.financial.report,sign:0 @@ -9484,7 +9484,7 @@ msgstr "Leveranciers" #. module: account #: view:account.journal:0 msgid "Accounts Type Allowed (empty for no control)" -msgstr "Toegestane soorten grootboekrekeningen (leeg = alles toestaan)" +msgstr "Rekening categorieën toegestaan ( leeg voor geen controle)" #. module: account #: help:account.move.line,amount_residual:0 @@ -11586,7 +11586,7 @@ msgstr "Zoek factuur" #: code:addons/account/account_invoice.py:1159 #, python-format msgid "Refund" -msgstr "Crediteer" +msgstr "Credit factuur" #. module: account #: model:ir.model,name:account.model_res_partner_bank diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index 90d0c9933a7..5d1533b4f31 100644 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2013-04-15 23:02+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \n" "Language-Team: Els Van Vossel\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: nl\n" #. module: account diff --git a/addons/account/i18n/oc.po b/addons/account/i18n/oc.po index 9afa3633fbd..40a01232596 100644 --- a/addons/account/i18n/oc.po +++ b/addons/account/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:30+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index 4dff0c8c0f7..b2e27ff1697 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:30+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -198,7 +198,7 @@ msgstr "Etykieta kolumny" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "Ilość cyfr do użycia na kod konta" #. module: account #: help:account.analytic.journal,type:0 @@ -4332,7 +4332,7 @@ msgstr "Konto zobowiązań" #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "Nie można znaleźć okresów generowania wpisów otwarcia." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4513,7 +4513,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "General Accounting" -msgstr "Księgowść ogólna" +msgstr "Księgowość ogólna" #. module: account #: help:account.fiscalyear.close,journal_id:0 @@ -4558,7 +4558,7 @@ msgstr "Aktywa" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "Księgowść" +msgstr "Księgowość" #. module: account #: view:account.invoice.confirm:0 @@ -4739,6 +4739,8 @@ msgid "" "Error!\n" "You cannot create recursive Tax Codes." msgstr "" +"Błąd!\n" +"Nie możesz utworzyć rekursywnych kodów podatkowych." #. module: account #: constraint:account.period:0 @@ -4819,7 +4821,7 @@ msgstr "Odwróć znak salda" #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "Bilans (konta zobowiązań)" +msgstr "Bilans (konta pasywów)" #. module: account #: help:account.invoice,date_invoice:0 @@ -4835,7 +4837,7 @@ msgstr "Wartość zamknięcia" #. module: account #: field:account.tax,base_code_id:0 msgid "Account Base Code" -msgstr "Rejstr główny" +msgstr "Rejestr główny" #. module: account #: code:addons/account/account_move_line.py:864 @@ -5707,7 +5709,7 @@ msgstr "Sprawdź, czy data jest w okresie" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports msgid "Accounting Reports" -msgstr "raporty księgowe" +msgstr "Raporty księgowe" #. module: account #: field:account.move,line_id:0 @@ -6148,7 +6150,7 @@ msgstr "Szablon obszaru podatkowego" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "Proejkt korekty" +msgstr "Projekt korekty" #. module: account #: view:account.analytic.chart:0 @@ -6399,7 +6401,7 @@ msgstr "# wierszy" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(oblicz)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6519,7 +6521,7 @@ msgstr "Faktury korygujące dla klienta" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Saldo zagraniczne" #. module: account #: field:account.journal.period,name:0 @@ -6855,7 +6857,7 @@ msgstr "Kapitał własny" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "Konto wenętrznych przeksięgowań" +msgstr "Konto wewnętrznych przeksięgowań" #. module: account #: code:addons/account/wizard/pos_box.py:32 @@ -10167,7 +10169,7 @@ msgstr "Włóż pieniądze" #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "Skasowano uzgodnienie" +msgstr "Nieuzgodnione" #. module: account #: code:addons/account/account_invoice.py:922 @@ -11199,7 +11201,7 @@ msgstr "Warunki płatności dostawcy nie mają pozycji." #. module: account #: field:account.account,parent_right:0 msgid "Parent Right" -msgstr "" +msgstr "Prawa nadrzędne" #. module: account #. openerp-web diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index 7da4c90d5d3..a21780a37a3 100644 --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index 69dba27c430..f050e370177 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:02+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index c2f5f67e61d..54416595d82 100644 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -8,18 +8,18 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-10 07:21+0000\n" -"Last-Translator: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:58+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 msgid "System payment" -msgstr "Sistem de plata" +msgstr "Sistem de plată" #. module: account #: sql_constraint:account.fiscal.position.account:0 @@ -35,7 +35,7 @@ msgid "" "Determine the display order in the report 'Accounting \\ Reporting \\ " "Generic Reporting \\ Taxes \\ Taxes Report'" msgstr "" -"Determinati ordinea de afisare in raportul 'Contabilitate \\ Raportare \\ " +"Determinați ordinea de afișare în raportul 'Contabilitate \\ Raportare \\ " "Raportare Generala \\ Taxe \\ Raport Taxe'" #. module: account @@ -48,7 +48,7 @@ msgstr "Reconciliere Inregistrari in Jurnalul contabil" #: view:account.bank.statement:0 #: view:account.move.line:0 msgid "Account Statistics" -msgstr "Statistica Cont" +msgstr "Statistică cont" #. module: account #: view:account.invoice:0 @@ -58,7 +58,7 @@ msgstr "Facturi Proforma/Deschise/Platite" #. module: account #: field:report.invoice.created,residual:0 msgid "Residual" -msgstr "Valoare reziduala" +msgstr "Valoare reziduală" #. module: account #: code:addons/account/account_bank_statement.py:369 @@ -108,7 +108,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "Reconciliati" +msgstr "Reconciliați" #. module: account #: field:account.bank.statement,name:0 @@ -120,7 +120,7 @@ msgstr "Reconciliati" #: xsl:account.transfer:0 #: field:cash.box.in,ref:0 msgid "Reference" -msgstr "Referinta" +msgstr "Referință" #. module: account #: help:account.payment.term,active:0 @@ -128,8 +128,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" -"In cazul in care campul activ este setat pe Fals, va va permite sa ascundeti " -"termenul de plata fara sa il stergeti." +"În cazul în care câmpul activ este setat pe Fals, vă va permite să ascundeți " +"termenul de plata fără sa îl ștergeți." #. module: account #: code:addons/account/account.py:641 @@ -189,7 +189,7 @@ msgid "" "

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

\n" " Faceti click pentru a adauga o perioada fiscala.\n" "

\n" " O perioada contabila este o luna sau un trimestru. De\n" @@ -322,7 +322,7 @@ msgid "" "

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

\n" " Faceti click pentru a crea o rambursare pentru client. \n" "

\n" " O rambursare este un document care atribuie o factura " @@ -749,8 +749,8 @@ msgid "" "Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " "and 'draft' or ''}" msgstr "" -"Factura_${(obiect.numar sau '').inlocuieste('/','_')}_${obiect.stare == " -"'ciorna' si 'ciorna' sau ''}" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" #. module: account #: view:account.period:0 @@ -928,7 +928,7 @@ msgstr "Linie abonament cont" #. module: account #: help:account.invoice,reference:0 msgid "The partner reference of this invoice." -msgstr "Referinta partener a acestei facturi." +msgstr "Referința partener a acestei facturi." #. module: account #: view:account.invoice.report:0 @@ -1083,7 +1083,7 @@ msgstr "Suma totala" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "Referinta acestei facturi asa cum a fost oferita de furnizor." +msgstr "Referința acestei facturi așa cum a fost transmisă de furnizor." #. module: account #: selection:account.account,type:0 @@ -1207,7 +1207,7 @@ msgid "" "

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

\n" " Faceti click pentru a adauga un cont.\n" "

\n" " Atunci cand efectuati tranzactii cu valute multiple, puteti " @@ -1316,7 +1316,7 @@ msgid "" "

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

\n" " Faceti click pentru a crea un registru de numerar nou.\n" "

\n" " O casa de marcat va permite sa gestionati intrarile de " @@ -1457,7 +1457,7 @@ msgstr "Eticheta Inregistrare" #: help:account.invoice,origin:0 #: help:account.invoice.line,origin:0 msgid "Reference of the document that produced this invoice." -msgstr "Referinta documentului care a produs aceasta factura." +msgstr "Referința documentului care a produs această factură." #. module: account #: view:account.analytic.line:0 @@ -1569,7 +1569,7 @@ msgstr "Reconciliati Inregistrarile" #: model:ir.actions.report.xml,name:account.account_overdue #: view:res.company:0 msgid "Overdue Payments" -msgstr "Plati restante" +msgstr "Plăți restante" #. module: account #: report:account.third_party_ledger:0 @@ -1820,7 +1820,7 @@ msgstr "Cauta Extrasele de cont" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Elemente Neafisate ale Jurnalului" +msgstr "Elemente Nepostate ale Jurnalului" #. module: account #: view:account.chart.template:0 @@ -1837,7 +1837,7 @@ msgstr "Cont Restituire Taxa" #. module: account #: model:ir.model,name:account.model_ir_sequence msgid "ir.sequence" -msgstr "ir.secventa" +msgstr "ir.sequence" #. module: account #: view:account.bank.statement:0 @@ -1879,7 +1879,7 @@ msgid "" "

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

\n" " Faceti click pentru a defini un nou tip de cont.\n" "

\n" " Tipul de cont este folosit pentru a determina modul in care " @@ -2080,7 +2080,7 @@ msgstr "Planuri de Conturi Analitice" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "Referinta Client:" +msgstr "Referință client:" #. module: account #: help:account.tax,base_code_id:0 @@ -2212,7 +2212,7 @@ msgid "" "

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

\n" " Faceti click pentru a inregistra o noua factura a " "furnizorului.\n" "

\n" @@ -2285,7 +2285,7 @@ msgid "" "

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

\n" " Faceti click pentru a inregistra un extras de cont.\n" "

\n" " Un extras de cont este un rezumat al tuturor tranzactiilor " @@ -2413,7 +2413,7 @@ msgstr "Configureaza Contabilitatea" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "Unitatea de Masura de Referinta" +msgstr "Unitatea de Masura de Referință" #. module: account #: help:account.journal,allow_date:0 @@ -2959,7 +2959,7 @@ msgid "" "

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

\n" " Faceti click pentru a crea o inregistrare in registru.\n" "

\n" " O inregistrare in registru consta din mai multe elemente ale " @@ -3113,7 +3113,7 @@ msgstr "Reconciliere bancara" #. module: account #: report:account.invoice:0 msgid "Disc.(%)" -msgstr "Reducere(%)" +msgstr "Disc.(%)" #. module: account #: report:account.general.ledger:0 @@ -3188,7 +3188,7 @@ msgid "" "

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

\n" " Faceti click pentru a incepe un nou an fiscal.\n" "

\n" " Definiti anul fiscal al companiei dumneavoastra in functie " @@ -3257,10 +3257,10 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" -"Bifati aceasta casuta daca nu doriti ca inregistrarile noi din jurnal sa " -"treaca in stadiul de 'ciorna', ci sa ajunga in schimb direct in 'stadiu " -"afisat' fara nici o validare manuala. Observati ca inregistrarile in jurnal " -"care sunt create automat de catre sistem sar intotdeauna peste acel stadiu." +"Bifați aceasta căsuță dacă nu doriți ca înregistrările noi din jurnal să " +"treacă în stadiul de 'ciornă', ci să ajungă în schimb direct în 'stadiu " +"postat' fără nici o validare manuală. Observați ca înregistrările din jurnal " +"care sunt create automat de către sistem sar întotdeauna peste acel stadiu." #. module: account #: field:account.move.line.reconcile,writeoff:0 @@ -3300,7 +3300,7 @@ msgstr "Vanzari dupa Cont" #: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "Nu puteti sterge o inregistrare afisata \"%s\" a registrului." +msgstr "Nu puteți șterge o înregistrare postată \"%s\" a registrului." #. module: account #: view:account.invoice:0 @@ -4162,8 +4162,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" -"Toate inregistrarile in jurnal selectate vor fi validate si afisate. Aceasta " -"inseamna ca nu veti mai putea modifica campurile lor contabile." +"Toate înregistrările din jurnal selectate vor fi validate și postate. " +"Aceasta înseamnă ca nu veți mai putea modifica câmpurile lor contabile." #. module: account #: code:addons/account/account_move_line.py:98 @@ -4224,20 +4224,19 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a crea o factura a clientului.\n" +"

\n" +" Faceți clic pentru a emite o factură unui client.\n" "

\n" -" Facturarea electronica a lui OpenERP permite usurarea si " -"fixarea\n" -" colectarii platilor clientilor. Clientul dumneavoastra " -"primeste\n" -" factura prin email si poate sa o plateasca online si/sau sa " +" Facturarea electronică din OpenERP vă facilitează\n" +" colectarea rapidă a încasărilor. Clientul dumneavoastră " +"primește\n" +" factura prin email și poate să o plătească online si/sau să " "o importe\n" -" in propriul sistem.\n" +" în propriul sistem.\n" "

\n" -" Discutiile cu clientul dumneavoastra sunt afisate automat " -"in\n" -" partea de jos a fiecarei facturi.\n" +" Corespondența cu clientul dumneavoastră este afișată automat " +"în\n" +" partea de jos a fiecărei facturi.\n" "

\n" " " @@ -4271,9 +4270,9 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" -"Nu puteti modifica o inregistrare postata a acestui registru.\n" -"Mai intai ar trebui sa configurati registrul pentru a permite anularea " -"inregistrarilor." +"Nu puteți modifica o înregistrare postată a acestui registru.\n" +"Mai întâi ar trebui să configurați registrul pentru a permite anularea " +"înregistrărilor." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal @@ -4425,7 +4424,7 @@ msgstr "Data" #. module: account #: view:account.move:0 msgid "Post" -msgstr "Afisati" +msgstr "Postați" #. module: account #: view:account.unreconcile:0 @@ -4863,7 +4862,8 @@ msgstr "" msgid "" "If you put \"%(year)s\" in the prefix, it will be replaced by the current " "year." -msgstr "Daca introduceti \"%(an)s\" in pefix, va fi inlocuit cu anul curent." +msgstr "" +"Dacă introduceți \"%(year)s\" în pefix, va fi înlocuit cu anul curent." #. module: account #: help:account.account,active:0 @@ -4877,7 +4877,7 @@ msgstr "" #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "Elemente Afisate ale Jurnalului" +msgstr "Elemente postate ale jurnalului" #. module: account #: field:account.move.line,blocked:0 @@ -4967,7 +4967,7 @@ msgid "" "

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

\n" " Dati click pentru a seta un nou cont bancar. \n" "

\n" " Configurati contul bancar al companiei dumneavoastra si " @@ -5121,7 +5121,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "Toate inregistrarile Afisate" +msgstr "Toate înregistrările postate" #. module: account #: field:report.aged.receivable,name:0 @@ -5178,7 +5178,7 @@ msgstr "Plan de conturi" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "Referinta Plata" +msgstr "Referință Plată" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -5555,7 +5555,7 @@ msgstr "Facturat" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "Inregistrari in Jurnal Afisate" +msgstr "Înregistrări postate în Jurnal" #. module: account #: view:account.use.model:0 @@ -6313,7 +6313,7 @@ msgstr "Cantitatea Produselor" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Unposted" -msgstr "Neafisat" +msgstr "Nepostat" #. module: account #: view:account.change.currency:0 @@ -6582,7 +6582,7 @@ msgstr "Nr. de cont" #: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" -msgstr "Referinta gratuita" +msgstr "Referinţă liberă" #. module: account #: selection:account.aged.trial.balance,result_selection:0 @@ -6670,7 +6670,7 @@ msgid "" "

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

\n" " Dati click pentru a adauga un cont.\n" "

\n" " Un cont este o parte a unui registru de contabilitate care " @@ -6758,11 +6758,11 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" -"Toate inregistrarile noi din registru create manual se afla de obicei in " -"starea 'Neafisate', dar puteti seta optiunea de a sari peste acea stare in " -"registrul respectiv. In acest caz, ele se vor comporta ca niste inregistrari " -"in registru create automat de sistem la validarea documentelor (facturi, " -"extrase de cont...) si vor fi create in starea 'Afisate'." +"Toate înregistrările noi din registru create manual se afla de obicei în " +"starea 'Nepostat', dar puteți seta opțiunea de a sări peste acea stare în " +"registrul respectiv. În acest caz, ele se vor comporta ca niște înregistrări " +"de registru create automat de sistem la validarea documentelor (facturi, " +"extrase de cont...) și vor fi create în starea 'Postat'." #. module: account #: field:account.payment.term.line,days:0 @@ -6964,7 +6964,7 @@ msgid "" "

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

\n" " Faceti click pentru a inregistra o rambursare primita de la " "un furnizor.\n" "

\n" @@ -8116,7 +8116,7 @@ msgstr "Actioneaza ca un cont implicit pentru valoarea debitului" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "Inregistrari afisate" +msgstr "Înregistrari postate" #. module: account #: help:account.payment.term.line,value_amount:0 @@ -8505,7 +8505,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "Inregistrari in Jurnal Neafisate" +msgstr "Înregistrări nepostate în Jurnal" #. module: account #: help:account.invoice.refund,date:0 @@ -8619,7 +8619,7 @@ msgstr "Ordinea notelor de credit" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "Afisati Inregistrarile in Jurnal" +msgstr "Înregistrări postate în Jurnal" #. module: account #: selection:account.bank.statement.line,type:0 @@ -9309,7 +9309,7 @@ msgstr "Tipuri de Conturi" #. module: account #: model:email.template,subject:account.email_template_edi_invoice msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" -msgstr "${obiect.companie_id.nume} Factura (Ref ${obiect.numar sau 'n/a'})" +msgstr "${object.company_id.name} Factura (Ref ${object.number or 'n/a'})" #. module: account #: code:addons/account/account_move_line.py:1210 @@ -9381,7 +9381,7 @@ msgid "" "

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

\n" " Dati click pentru a adauga un registru.\n" "

\n" " Un registru este utilizat pentru a inregistra tranzactii cu " @@ -9422,7 +9422,7 @@ msgstr "Filtrati dupa" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" -"Pentru a inchide o perioada, mai intai trebuie sa afisati inregistrarile in " +"Pentru a închide o perioada, mai întâi trebuie să postați înregistrările de " "jurnal asociate." #. module: account @@ -9606,7 +9606,7 @@ msgid "" "

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

\n" " Dati click pentru a defini o noua inregistrare recurenta.\n" "

\n" " O inregistrare recurenta are loc pe o baza recurenta dintr-o " @@ -10980,7 +10980,7 @@ msgstr "Selectati perioada" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Posted" -msgstr "Afisat" +msgstr "Postat" #. module: account #: report:account.account.balance:0 @@ -11522,7 +11522,7 @@ msgid "" "

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

\n" " Dati click pentru a defini un nou cod fiscal.\n" "

\n" " In functie de tara, un cod fiscal este de obicei o celula " @@ -11560,7 +11560,7 @@ msgid "" "

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

\n" " Selectati perioada si registrul pe care doriti sa il " "completati.\n" "

\n" diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po index 3fd95d491f4..4fc289c54bc 100644 --- a/addons/account/i18n/ru.po +++ b/addons/account/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-20 05:11+0000\n" -"X-Generator: Launchpad (build 16872)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/si.po b/addons/account/i18n/si.po index d5df660ca45..8fb3b37725a 100644 --- a/addons/account/i18n/si.po +++ b/addons/account/i18n/si.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sk.po b/addons/account/i18n/sk.po index e9f4210c463..5aad9c39894 100644 --- a/addons/account/i18n/sk.po +++ b/addons/account/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index 5c1ba8446ac..5cc001fa76c 100644 --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -51,7 +51,7 @@ msgstr "Knjigovodske statistike" #. module: account #: view:account.invoice:0 msgid "Proforma/Open/Paid Invoices" -msgstr "Proforma/Odpri/Plačani računi" +msgstr "Predračuni/Odprti računi/Plačani računi" #. module: account #: field:report.invoice.created,residual:0 @@ -238,7 +238,7 @@ msgstr "Izbor postavke za zapiranje" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "Postavke so vhod za usklajevanje" +msgstr "Knjigovodske transakcije so osnova za uskaljevanje" #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports @@ -1042,7 +1042,7 @@ msgstr "Konsolidacija" #: model:account.financial.report,name:account.account_financial_report_liability0 #: model:account.financial.report,name:account.account_financial_report_liabilitysum0 msgid "Liability" -msgstr "Odgovornost" +msgstr "Obveznost" #. module: account #: code:addons/account/account_invoice.py:899 @@ -1058,7 +1058,7 @@ msgstr "Razširjeni filtri..." #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "Osrednji dnevnik" +msgstr "Zbir po dnevnikih in kontih" #. module: account #: selection:account.journal,type:0 @@ -1704,7 +1704,7 @@ msgstr "Zaprto" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "Ponavljajoči vnosi" +msgstr "Ponavljajoče temeljnice" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template @@ -3275,7 +3275,7 @@ msgstr "Finačno računovodstvo" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "Dobiček/Izguba" +msgstr "Izkaz poslovnega izida" #. module: account #: view:account.fiscal.position:0 @@ -3374,7 +3374,7 @@ msgstr "Seznam davčnih predlog" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "Prodaja/Nabava dneviki" +msgstr "Dnevniki prodaje/nabave" #. module: account #: help:account.account,currency_mode:0 @@ -4377,7 +4377,7 @@ msgstr "Dnevnik mora imeti privzeti debetni in kreditni konto." #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "Nastavite bančne račune" +msgstr "Nastavitev bančnih računov" #. module: account #: xsl:account.transfer:0 @@ -4393,7 +4393,7 @@ msgstr "Sporočila in zgodovina sporočil" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "Analitični dnevnik" +msgstr "Dnevnik analitičnega knjigovodstva" #. module: account #: constraint:account.aged.trial.balance:0 @@ -7046,7 +7046,7 @@ msgstr "account.sequence.fiscalyear" #: model:ir.model,name:account.model_account_analytic_journal #: model:ir.ui.menu,name:account.account_analytic_journal_print msgid "Analytic Journal" -msgstr "Analitični dnevnik" +msgstr "Dnevnik analitičnega knjigovodstva" #. module: account #: view:account.entries.report:0 @@ -7242,7 +7242,7 @@ msgstr "Ohranite predznak salda" #: model:ir.actions.report.xml,name:account.account_vat_declaration #: model:ir.ui.menu,name:account.menu_account_vat_declaration msgid "Taxes Report" -msgstr "Poročilo o davkih" +msgstr "DDV-O obrazec" #. module: account #: selection:account.journal.period,state:0 @@ -7388,7 +7388,7 @@ msgstr "Davčno območje" #: model:ir.actions.report.xml,name:account.account_general_ledger_landscape #: model:ir.ui.menu,name:account.menu_general_ledger msgid "General Ledger" -msgstr "Glavna knjiga" +msgstr "Kartica glavne knjige" #. module: account #: model:process.transition,note:account.process_transition_paymentorderbank0 @@ -9445,7 +9445,7 @@ msgstr "Podatki o izdelku" #: view:account.move.line:0 #: model:ir.ui.menu,name:account.next_id_40 msgid "Analytic" -msgstr "Analitika" +msgstr "Analitično knjigovodstvo" #. module: account #: model:process.node,name:account.process_node_invoiceinvoice0 @@ -10206,7 +10206,7 @@ msgstr "Osnutek računa " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "Splošni dnevniki" +msgstr "Dnevniki" #. module: account #: view:account.model:0 diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po index 9650b0d3a25..7fc79225795 100644 --- a/addons/account/i18n/sq.po +++ b/addons/account/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:22+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr.po b/addons/account/i18n/sr.po index ef5a51a2b0e..1905f80c234 100644 --- a/addons/account/i18n/sr.po +++ b/addons/account/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:59+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr@latin.po b/addons/account/i18n/sr@latin.po index 9a97cd6d0e8..ef0d5883638 100644 --- a/addons/account/i18n/sr@latin.po +++ b/addons/account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:04+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index 9f37aadca18..6786eae43dd 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -80,7 +80,7 @@ msgstr "Importera från fakturor eller betalningar" #: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Fel konto!" #. module: account #: view:account.move:0 @@ -240,7 +240,7 @@ msgstr "Belgiska rapporter" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Validerad" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -261,7 +261,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Nästa kreditfakturanummer" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -365,7 +365,7 @@ msgstr "" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Tillåter dig att använda analys konteringen" #. module: account #: view:account.invoice:0 @@ -439,7 +439,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Period:" #. module: account #: field:account.account.template,chart_template_id:0 @@ -911,7 +911,7 @@ msgstr "JC/Affärshändelse" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Kontokod och namn" #. module: account #: selection:account.entries.report,month:0 @@ -1098,7 +1098,7 @@ msgstr "Kod" #. module: account #: view:account.config.settings:0 msgid "Features" -msgstr "" +msgstr "Egenskaper" #. module: account #: code:addons/account/account.py:2346 @@ -1484,7 +1484,7 @@ msgstr "Rapportinställningar" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Bokföringsår som ska stängas" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 @@ -1605,7 +1605,7 @@ msgstr "Hoppa över preliminär status för manuella registreringar" #: code:addons/account/wizard/account_report_common.py:164 #, python-format msgid "Not implemented." -msgstr "" +msgstr "Ej implementerat" #. module: account #: view:account.invoice.refund:0 @@ -1798,7 +1798,7 @@ msgstr "Bokslutsårsordning" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analyskonto" #. module: account #: report:account.overdue:0 @@ -1871,6 +1871,8 @@ msgid "" "Select a configuration package to setup automatically your\n" " taxes and chart of accounts." msgstr "" +"Välj ett konfigureringspaket för att automatiskt skaap din\n" +" kontoplan, skattekoder och momskoder." #. module: account #: view:account.analytic.account:0 @@ -1971,7 +1973,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Betala dina leverantörer med check" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -2126,7 +2128,7 @@ msgstr "" #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Företagets standardvaluta" #. module: account #: field:account.invoice,move_id:0 diff --git a/addons/account/i18n/ta.po b/addons/account/i18n/ta.po index a04e6af79dd..2be7c6d3d4a 100644 --- a/addons/account/i18n/ta.po +++ b/addons/account/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/te.po b/addons/account/i18n/te.po index 55b9f19f361..4d872832a8b 100644 --- a/addons/account/i18n/te.po +++ b/addons/account/i18n/te.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po index b32366c4e49..03175b8aa5e 100644 --- a/addons/account/i18n/th.po +++ b/addons/account/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tlh.po b/addons/account/i18n/tlh.po index c272a07accf..06b06515397 100644 --- a/addons/account/i18n/tlh.po +++ b/addons/account/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:00+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index e2e30674b8b..f26b6d46edb 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -277,7 +277,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "Sonraki alacak dekontu sayısı" +msgstr "Sonraki alacak dekont numarası" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -370,7 +370,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "Çok para birimine izin ver" +msgstr "Çoklu para birimine izin verme" #. module: account #: code:addons/account/account_invoice.py:77 @@ -1325,7 +1325,7 @@ msgstr "Banka" #. module: account #: field:account.period,date_start:0 msgid "Start of Period" -msgstr "Dönemin Başı" +msgstr "Dönem Başı" #. module: account #: view:account.tax:0 @@ -1746,7 +1746,7 @@ msgstr "Tedarikçi İadeleri" #: field:account.tax.code,code:0 #: field:account.tax.code.template,code:0 msgid "Case Code" -msgstr "Dava Kodu" +msgstr "Vergi Kodu" #. module: account #: field:account.config.settings,company_footer:0 @@ -2090,7 +2090,7 @@ msgstr "Fatura doğrulandı" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "Tedarikçilerinize çek ile ödeme yapın" +msgstr "Tedarikçilere çek ile ödeme yapma" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -2327,7 +2327,7 @@ msgstr "İzleyiciler" #: model:ir.actions.act_window,name:account.action_account_print_journal #: model:ir.model,name:account.model_account_print_journal msgid "Account Print Journal" -msgstr "Hesap Yazdırma Yevmiyesi" +msgstr "Yevmiye Hesap Yazdırma" #. module: account #: model:ir.model,name:account.model_product_category @@ -2500,7 +2500,7 @@ msgstr "Kayıt Aç" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "Sonraki tedarikçi alacak dekontu sayısı" +msgstr "Sonraki tedarikçi alacak dekont numarası" #. module: account #: field:account.automatic.reconcile,account_ids:0 @@ -2551,7 +2551,7 @@ msgstr "Bu %s yevmiyeyi açmak için yetkiniz yok !" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "Tedarikçi faturalarında toplamları denetle" +msgstr "Tedarikçi Faturasında Toplama Denetimi" #. module: account #: selection:account.invoice,state:0 @@ -2955,7 +2955,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "Sonraki tedarikçi fatura no" +msgstr "Sonraki tedarikçi fatura numarası" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -3302,7 +3302,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_tax_code_list #: model:ir.ui.menu,name:account.menu_action_tax_code_list msgid "Tax codes" -msgstr "Vergi kodları" +msgstr "Vergi Kodları" #. module: account #: view:account.account:0 @@ -4194,7 +4194,7 @@ msgstr "" #: field:account.tax.code,name:0 #: field:account.tax.code.template,name:0 msgid "Tax Case Name" -msgstr "Vergi Davası Adı" +msgstr "Vergi Adı" #. module: account #: report:account.invoice:0 @@ -4452,7 +4452,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "Tedarikçi faturalarının toplamını denetle" +msgstr "Tedarikçi faturalarının toplamını denetleme" #. module: account #: view:account.tax:0 @@ -6468,7 +6468,7 @@ msgstr "kayıtlar" #. module: account #: field:res.partner,debit:0 msgid "Total Payable" -msgstr "Total Borç" +msgstr "Toplam Borç" #. module: account #: model:account.account.type,name:account.data_account_type_income @@ -8113,7 +8113,7 @@ msgstr "Gelir Hesabı Açılış Kayıtları" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "Pro-forma faturalara izin ver" +msgstr "Pro-forma faturalara izin verme" #. module: account #: view:account.bank.statement:0 @@ -8139,7 +8139,7 @@ msgstr "Fatura Referansı" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "Yeni kayıtların adı" +msgstr "Yeni Kayıtların Adı" #. module: account #: view:account.use.model:0 @@ -8366,7 +8366,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "Çok-Para Birimli" +msgstr "Çoklu Para Birimi" #. module: account #: field:account.model.line,date_maturity:0 @@ -10668,7 +10668,7 @@ msgstr "Taslak Fatura " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "Genel Günlükler" +msgstr "Genel Yevmiyeler" #. module: account #: view:account.model:0 @@ -11365,7 +11365,7 @@ msgstr "Kalan ödenecek tutar" #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "Kayıtlar buna göre Sıralandı" +msgstr "Kayıtları Sıralama" #. module: account #: code:addons/account/account_invoice.py:1546 diff --git a/addons/account/i18n/ug.po b/addons/account/i18n/ug.po index e56c78e4b99..608e67b1719 100644 --- a/addons/account/i18n/ug.po +++ b/addons/account/i18n/ug.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po index d52bfedaaba..fbe32fc534b 100644 --- a/addons/account/i18n/uk.po +++ b/addons/account/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ur.po b/addons/account/i18n/ur.po index a4a7a8d02bb..14a829a36de 100644 --- a/addons/account/i18n/ur.po +++ b/addons/account/i18n/ur.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/vi.po b/addons/account/i18n/vi.po index 4a6b0c4df2c..5b7417554ef 100644 --- a/addons/account/i18n/vi.po +++ b/addons/account/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index 5569239284e..46465ebb53a 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -49,7 +49,7 @@ msgstr "科目统计" #. module: account #: view:account.invoice:0 msgid "Proforma/Open/Paid Invoices" -msgstr "形式/未结/已支付 传票" +msgstr "形式/未结/已支付发票" #. module: account #: field:report.invoice.created,residual:0 @@ -70,7 +70,7 @@ msgstr "今日到期的应收账款" #. module: account #: model:process.transition,name:account.process_transition_invoiceimport0 msgid "Import from invoice or payment" -msgstr "从传票或付款导入" +msgstr "从发票或支付款导入" #. module: account #: code:addons/account/account_move_line.py:1058 @@ -116,7 +116,7 @@ msgstr "对账" #: xsl:account.transfer:0 #: field:cash.box.in,ref:0 msgid "Reference" -msgstr "参考" +msgstr "关联单号" #. module: account #: help:account.payment.term,active:0 @@ -190,7 +190,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard msgid "Invoices Created Within Past 15 Days" -msgstr "过去15天开的传票" +msgstr "过去15天开的发票" #. module: account #: field:accounting.report,label_filter:0 @@ -208,7 +208,7 @@ msgid "" "Gives the type of the analytic journal. When it needs for a document (eg: an " "invoice) to create analytic entries, OpenERP will look for a matching " "journal of the same type." -msgstr "定义辅助核算账簿的类型。当为同一类单据(如:传票) 创建辅助核算,OpenERP将看成一个相同类型。" +msgstr "定义辅助核算账簿的类型。当为同一类单据(如:发票) 创建辅助核算,OpenERP将看成一个相同类型。" #. module: account #: help:account.tax,account_analytic_collected_id:0 @@ -216,7 +216,7 @@ msgid "" "Set the analytic account that will be used by default on the invoice tax " "lines for invoices. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." -msgstr "设置辅助核算项,用于退款时传票上默认项目。如果默认不要在传票的税上 使用辅助核算项,留空。" +msgstr "设置辅助核算项,用于退款时发票上默认项目。如果默认不要在发票的税上 使用辅助核算项,留空。" #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -462,7 +462,7 @@ msgstr "科目模板一览表" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "修改:创建退款,对账并创建一个新的传票草稿" +msgstr "修改:创建退款,核销并创建一个新的发票草稿" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -531,12 +531,12 @@ msgstr "允许比较" #: model:ir.model,name:account.model_account_journal #: field:validate.account.move,journal_id:0 msgid "Journal" -msgstr "账簿" +msgstr "凭证簿" #. module: account #: model:ir.model,name:account.model_account_invoice_confirm msgid "Confirm the selected invoices" -msgstr "确认选定的传票" +msgstr "确认选定的发票" #. module: account #: field:account.addtmpl.wizard,cparent_id:0 @@ -546,12 +546,12 @@ msgstr "上级目标" #. module: account #: help:account.invoice.line,sequence:0 msgid "Gives the sequence of this line when displaying the invoice." -msgstr "显示传票的时候给出明细编号。" +msgstr "显示发票的时候给出明细编号。" #. module: account #: field:account.bank.statement,account_id:0 msgid "Account used in this journal" -msgstr "使用在账簿里的科目" +msgstr "使用在凭证簿里的科目" #. module: account #: help:account.aged.trial.balance,chart_account_id:0 @@ -574,7 +574,7 @@ msgstr "选择科目一览表" #. module: account #: model:ir.model,name:account.model_account_invoice_refund msgid "Invoice Refund" -msgstr "退返传票" +msgstr "红字发票" #. module: account #: report:account.overdue:0 @@ -620,7 +620,7 @@ msgstr "没有什么被对账" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "账簿分录小数精度" +msgstr "凭证簿分录小数精度" #. module: account #: selection:account.config.settings,period:0 @@ -656,7 +656,7 @@ msgstr "税一览表" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "汇总账簿" +msgstr "汇总凭证簿" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 @@ -726,13 +726,13 @@ msgstr "会计期间的启用分录" #. module: account #: model:ir.model,name:account.model_account_journal_period msgid "Journal Period" -msgstr "账簿的会计期间" +msgstr "凭证簿的会计期间" #. module: account #: constraint:account.move:0 msgid "" "You cannot create more than one move per period on a centralized journal." -msgstr "在每个会计期间,你不可以创建1个以上的总账簿" +msgstr "在每个会计期间,你不可以创建1个以上的总凭证簿" #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -740,7 +740,7 @@ msgid "" "Set the analytic account that will be used by default on the invoice tax " "lines for refunds. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." -msgstr "设置辅助核算项,用于退款时传票上默认税科目。如果默认不要在传票的税上 使用辅助核算项,留空。" +msgstr "设置辅助核算项,用于退款时发票上默认税科目。如果默认不要在发票的税上 使用辅助核算项,留空。" #. module: account #: view:account.account:0 @@ -770,7 +770,7 @@ msgstr "创建退款" msgid "" "The date of your Journal Entry is not in the defined period! You should " "change the date or remove this constraint from the journal." -msgstr "账簿分录日期不在所选期间内!可以修改账簿分录日期或在账簿上去掉这个检查项。" +msgstr "凭证簿分录日期不在所选期间内!可以修改账簿分录日期或在账簿上去掉这个检查项。" #. module: account #: model:ir.model,name:account.model_account_report_general_ledger @@ -791,12 +791,12 @@ msgstr "你确定创建分录?" #: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "传票已经支付:%s%s ,总额: %s%s (剩余:%s%s )。" +msgstr "发票已经支付:%s%s ,总额: %s%s (剩余:%s%s )。" #. module: account #: view:account.invoice:0 msgid "Print Invoice" -msgstr "打印传票" +msgstr "打印发票" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:111 @@ -804,7 +804,7 @@ msgstr "打印传票" msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." -msgstr "不能 %s 已经对账的传票, 传票必须被首先反对账.。只能退还这张传票。" +msgstr "不能 %s 已经核销的发票, 发票必须被首先反核销.。只能退还这张发票。" #. module: account #: selection:account.financial.report,display_detail:0 @@ -862,7 +862,9 @@ msgstr "类型" msgid "" "Taxes are missing!\n" "Click on compute button." -msgstr "没有选择税!" +msgstr "" +"税额计算有问题!\n" +"请点击\"更新税\"按钮." #. module: account #: model:ir.model,name:account.model_account_subscription_line @@ -872,12 +874,12 @@ msgstr "科目的周期性分录明细" #. module: account #: help:account.invoice,reference:0 msgid "The partner reference of this invoice." -msgstr "该传票对应的业务伙伴单号" +msgstr "该发票对应的业务伙伴单号" #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "供应商传票和退款" +msgstr "供应商发票和退款" #. module: account #: code:addons/account/account_move_line.py:851 @@ -895,7 +897,7 @@ msgstr "反对账" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "辅助核算账簿" +msgstr "辅助核算凭证簿" #. module: account #: view:account.invoice:0 @@ -951,7 +953,7 @@ msgid "" " " msgstr "" "

\n" -" 账簿明细未找到.\n" +" 凭证簿明细未找到.\n" "

\n" " " @@ -1000,12 +1002,12 @@ msgstr "到期" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "采购分类账" +msgstr "采购凭证簿" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "传票已付清" +msgstr "发票已付清" #. module: account #: view:validate.account.move:0 @@ -1023,7 +1025,7 @@ msgstr "总金额" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "这个传票的编号由供应商提供。" +msgstr "这个发票的编号由供应商提供。" #. module: account #: selection:account.account,type:0 @@ -1043,7 +1045,7 @@ msgstr "负债" #: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." -msgstr "请为这张传票对应的账簿选择编号规则" +msgstr "请为这张发票对应的凭证簿选择编号规则" #. module: account #: view:account.entries.report:0 @@ -1167,7 +1169,7 @@ msgstr "用上个期末余额作期初" msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" -msgstr "如果你不想该税款编码相关的税务信息显示在传票中, 请选中此项" +msgstr "如果你不想该税款编码相关的税务信息显示在发票中, 请选中此项" #. module: account #: field:report.account.receivable,name:0 @@ -1304,7 +1306,7 @@ msgstr "" #. module: account #: view:account.invoice.cancel:0 msgid "Cancel Invoices" -msgstr "作废传票" +msgstr "作废发票" #. module: account #: help:account.journal,code:0 @@ -1363,7 +1365,7 @@ msgstr "分录标签" #: help:account.invoice,origin:0 #: help:account.invoice.line,origin:0 msgid "Reference of the document that produced this invoice." -msgstr "传票上产品的关联单据" +msgstr "发票上产品的关联单据" #. module: account #: view:account.analytic.line:0 @@ -1426,7 +1428,7 @@ msgstr "级别" #: code:addons/account/wizard/account_change_currency.py:38 #, python-format msgid "You can only change currency for Draft Invoice." -msgstr "您只能修改传票草稿的货币。" +msgstr "您只能修改发票草稿的货币。" #. module: account #: report:account.invoice:0 @@ -1502,7 +1504,7 @@ msgstr "财政年度结束" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "传票序列" +msgstr "发票序列" #. module: account #: model:ir.model,name:account.model_account_entries_report @@ -1527,7 +1529,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "传票状态" +msgstr "发票状态" #. module: account #: view:account.bank.statement:0 @@ -1602,8 +1604,8 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" -"没有需要对账的。\n" -"所有传票和付款已经被对账,合作伙伴余额已经结清。" +"没有需要核销的。\n" +"所有发票和付款已经被核销,合作伙伴余额已经结清。" #. module: account #: field:account.chart.template,code_digits:0 @@ -1781,6 +1783,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 点击创建一个新的账户类型.\n" +"

\n" +" 账户类型用来说明在各个日记账中如何使用这个账户。\n" +" 账户类型的递延方式决定了该账户在年终结账时的处理流程。\n" +" 财务报表,如资产负债表、利润表,将会使用这个分类。\n" +"

\n" +" " #. module: account #: report:account.invoice:0 @@ -1792,7 +1802,7 @@ msgstr "" #: model:res.request.link,name:account.req_link_invoice #, python-format msgid "Invoice" -msgstr "开传票" +msgstr "开发票" #. module: account #: field:account.move,balance:0 @@ -1803,7 +1813,7 @@ msgstr "余额" #: model:process.node,note:account.process_node_analytic0 #: model:process.node,note:account.process_node_analyticcost0 msgid "Analytic costs to invoice" -msgstr "成本开传票" +msgstr "开票成本分析" #. module: account #: view:ir.sequence:0 @@ -1878,7 +1888,7 @@ msgstr "年合计" #. module: account #: view:account.change.currency:0 msgid "This wizard will change the currency of the invoice" -msgstr "该向导将改变传票的币种" +msgstr "该向导将改变发票的币种" #. module: account #: view:account.installer:0 @@ -1981,7 +1991,7 @@ msgstr "银行单据草稿" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "传票已核准" +msgstr "发票已核准" #. module: account #: field:account.config.settings,module_account_check_writing:0 @@ -2009,8 +2019,8 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" -"这个菜单基于传票或者支付打印一个纳税申报。选择财务年度的一个或几个会计期间。\r\n" -"纳税申报需要的信息由Openerp自动从传票(或者在有些国家是付款单)生成。数据是实时更新的。\r\n" +"这个菜单基于发票或者支付打印一个纳税申报。选择财务年度的一个或几个会计期间。\r\n" +"纳税申报需要的信息由Openerp自动从发票(或者在有些国家是付款单)生成。数据是实时更新的。\r\n" "这非常有用,他使你任何时间可预览 在月份(或季度)的开始和结束欠了多少税。" #. module: account @@ -2083,9 +2093,9 @@ msgid "" " " msgstr "" "

\n" -" 单击以便一张新的供应商传票。\n" +" 单击以便一张新的供应商发票。\n" "

\n" -" 你可以根据从供应商处所采购或收到的货物来管理传票。OpenERP也可以根据采购订单或者收货自动生成一张草稿状态的传票。\n" +" 你可以根据从供应商处所采购或收到的货物来管理发票。OpenERP也可以根据采购订单或者收货自动生成一张草稿状态的发票。\n" "

\n" " " @@ -2099,7 +2109,7 @@ msgstr "错误的出纳会计分录" #: model:ir.actions.act_window,name:account.action_account_invoice_report_all #: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all msgid "Invoices Analysis" -msgstr "传票分析" +msgstr "发票分析" #. module: account #: model:ir.model,name:account.model_mail_compose_message @@ -2383,7 +2393,7 @@ msgstr "从电子文件中导入" #. module: account #: model:process.node,name:account.process_node_importinvoice0 msgid "Import from invoice" -msgstr "从传票传票" +msgstr "导入发票" #. module: account #: selection:account.entries.report,month:0 @@ -2419,7 +2429,7 @@ msgstr "你没有权限打开 %s 账簿。" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total msgid "Check Total on supplier invoices" -msgstr "检查供应商传票合计" +msgstr "检查供应商发票合计" #. module: account #: selection:account.invoice,state:0 @@ -2657,7 +2667,7 @@ msgstr "筛选" #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "草稿状态的传票" +msgstr "草稿状态的发票" #. module: account #: view:product.category:0 @@ -2677,7 +2687,7 @@ msgstr "往来业务对账" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "财务账目" #. module: account #: field:account.tax,tax_code_id:0 @@ -2705,7 +2715,7 @@ msgstr "税基编码" #. module: account #: help:account.invoice.tax,sequence:0 msgid "Gives the sequence order when displaying a list of invoice tax." -msgstr "指定传票税列表的序列。" +msgstr "指定发票税列表的序列。" #. module: account #: field:account.tax,base_sign:0 @@ -2724,7 +2734,7 @@ msgstr "借方汇总" #: view:account.invoice.confirm:0 #: model:ir.actions.act_window,name:account.action_account_invoice_confirm msgid "Confirm Draft Invoices" -msgstr "确认传票草稿" +msgstr "确认发票草稿" #. module: account #: field:account.entries.report,day:0 @@ -2795,7 +2805,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "下个供应商传票编号" +msgstr "下个供应商发票编号" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -3066,7 +3076,7 @@ msgstr "未读消息" msgid "" "Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" "Forma' state." -msgstr "选择的传票不能被确认,因为它们不是“草稿”或者“形式传票”状态" +msgstr "选择的发票不能被确认,因为它们不是“草稿”或者“形式发票”状态" #. module: account #: code:addons/account/account.py:1071 @@ -3202,7 +3212,7 @@ msgstr "摘要" #. module: account #: help:account.invoice,period_id:0 msgid "Keep empty to use the period of the validation(invoice) date." -msgstr "留空使用复核(传票)日期的会计期间" +msgstr "留空使用复核(发票)日期的会计期间" #. module: account #: help:account.bank.statement,account_id:0 @@ -3298,7 +3308,7 @@ msgstr "不能适应初始余额(负数)" #: model:process.process,name:account.process_process_invoiceprocess0 #: selection:report.invoice.created,type:0 msgid "Customer Invoice" -msgstr "客户传票" +msgstr "客户发票" #. module: account #: model:ir.model,name:account.model_account_open_closed_fiscalyear @@ -3319,7 +3329,7 @@ msgstr "搜寻会计周期" #. module: account #: view:account.change.currency:0 msgid "Invoice Currency" -msgstr "传票币别" +msgstr "发票币别" #. module: account #: field:accounting.report,account_report_id:0 @@ -3431,7 +3441,7 @@ msgstr "辅助核算明细" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "形式传票" +msgstr "形式发票" #. module: account #: model:process.node,name:account.process_node_electronicfile0 @@ -3685,7 +3695,7 @@ msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " "centralized counterpart box in the related journal from the configuration " "menu." -msgstr "你不能在汇总账簿上面创建传票。在配置菜单中 相关的 分类账簿表单里不要选中“合并对方科目”。" +msgstr "你不能在汇总账簿上面创建发票。在配置菜单中 相关的 分类账簿表单里不要选中“合并对方科目”。" #. module: account #: field:account.bank.statement,balance_start:0 @@ -3772,7 +3782,7 @@ msgstr "反对账分录" #: field:account.tax.code,notprintable:0 #: field:account.tax.code.template,notprintable:0 msgid "Not Printable in Invoice" -msgstr "不打印在传票上" +msgstr "不打印在发票上" #. module: account #: report:account.vat.declaration:0 @@ -3887,7 +3897,7 @@ msgstr "税名称" #: view:account.invoice:0 #: model:process.node,name:account.process_node_draftinvoices0 msgid "Draft Invoice" -msgstr "传票草稿" +msgstr "发票草稿" #. module: account #: view:account.config.settings:0 @@ -4115,7 +4125,7 @@ msgstr "无筛选" #: view:account.invoice.report:0 #: model:res.groups,name:account.group_proforma_invoices msgid "Pro-forma Invoices" -msgstr "形式传票" +msgstr "形式发票" #. module: account #: view:res.partner:0 @@ -4128,7 +4138,7 @@ msgstr "日志" msgid "" "If not applicable (computed through a Python code), the tax won't appear on " "the invoice." -msgstr "如果没适用的 (计算通过python代码), 税将不显示在传票上。" +msgstr "如果没适用的 (计算通过python代码), 税将不显示在发票上。" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 @@ -4208,7 +4218,7 @@ msgstr "# 项" #. module: account #: view:account.state.open:0 msgid "Open Invoice" -msgstr "未结传票" +msgstr "未结发票" #. module: account #: field:account.invoice.tax,factor_tax:0 @@ -4339,7 +4349,7 @@ msgstr "合并子科目" #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "数据不足!" #. module: account #: help:account.account,unrealized_gain_loss:0 @@ -4403,7 +4413,7 @@ msgstr "会计 & 财务" #. module: account #: view:account.invoice.confirm:0 msgid "Confirm Invoices" -msgstr "确认传票" +msgstr "确认发票" #. module: account #: selection:account.account,currency_mode:0 @@ -4420,12 +4430,12 @@ msgstr "显示科目列表" #. module: account #: view:account.state.open:0 msgid "(Invoice should be unreconciled if you want to open it)" -msgstr "(如果你想打开它传票要反对账)" +msgstr "(如果你想打开它发票要反核销)" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "发票税的辅助核算科目" #. module: account #: field:account.chart,period_from:0 @@ -4536,7 +4546,7 @@ msgstr "关闭出纳账" #. module: account #: model:ir.model,name:account.model_account_invoice_cancel msgid "Cancel the Selected Invoices" -msgstr "取消选定的传票" +msgstr "取消选定的发票" #. module: account #: code:addons/account/account_bank_statement.py:424 @@ -4549,7 +4559,7 @@ msgstr "必须分配一个辅助核算账簿给\"%s\"账簿" msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft supplier invoices." -msgstr "(时间表,一些采购产品,... ...)分析成本来辅助核算项。用来产生供应商传票草稿。" +msgstr "(时间表,一些采购产品,... ...)分析成本来辅助核算项。用来产生供应商发票草稿。" #. module: account #: model:ir.actions.act_window,help:account.action_bank_tree @@ -4731,7 +4741,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_importinvoice0 msgid "Statement from invoice or payment" -msgstr "传票或付款清单" +msgstr "发票或付款清单" #. module: account #: code:addons/account/installer.py:115 @@ -4775,7 +4785,7 @@ msgstr "给新条目名称" #. module: account #: model:ir.model,name:account.model_account_invoice_report msgid "Invoices Statistics" -msgstr "传票统计" +msgstr "发票统计" #. module: account #: field:account.account,exchange_rate:0 @@ -4828,7 +4838,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_tax_template msgid "Templates for Taxes" -msgstr "" +msgstr "税费模版" #. module: account #: sql_constraint:account.period:0 @@ -4843,7 +4853,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "计算税款" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4991,12 +5001,12 @@ msgstr "已确认" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "已取消的传票" +msgstr "已取消的发票" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "我的发票" #. module: account #: selection:account.bank.statement,state:0 @@ -5006,7 +5016,7 @@ msgstr "新建" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Sale Tax" -msgstr "" +msgstr "营业税" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -5017,7 +5027,7 @@ msgstr "退税编码" #. module: account #: view:account.invoice:0 msgid "Invoice " -msgstr "传票 " +msgstr "发票 " #. module: account #: field:account.chart.template,property_account_income:0 @@ -5054,7 +5064,7 @@ msgstr "新的会计年度" #: view:report.invoice.created:0 #: field:res.partner,invoice_ids:0 msgid "Invoices" -msgstr "传票列表" +msgstr "发票列表" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 @@ -5110,7 +5120,7 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Invoiced" -msgstr "已开票" +msgstr "已开发票" #. module: account #: view:account.move:0 @@ -5128,7 +5138,7 @@ msgid "" "Bank Account Number to which the invoice will be paid. A Company bank " "account if this is a Customer Invoice or Supplier Refund, otherwise a " "Partner bank account number." -msgstr "传票的收款银行帐号。如果是客户传票或供应商红字传票,这里是本公司的银行账号,否则这里是业务伙伴的银行账号。" +msgstr "发票的收款银行帐号。如果是客户发票或供应商红字发票,这里是本公司的银行账号,否则这里是业务伙伴的银行账号。" #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 @@ -5165,14 +5175,14 @@ msgstr "这银行对账单用于对账" #. module: account #: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 msgid "Draft invoices are validated. " -msgstr "传票草稿已生效。 " +msgstr "发票草稿已生效。 " #. module: account #: help:account.tax,account_collected_id:0 msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." -msgstr "设置科目,用于退款时传票上默认税科目。留空使用费用科目。" +msgstr "设置科目,用于退款时发票上默认税科目。留空使用费用科目。" #. module: account #: code:addons/account/account.py:890 @@ -5237,12 +5247,12 @@ msgstr "结束会计期间" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 msgid "Payment of invoices" -msgstr "传票付款" +msgstr "发票付款" #. module: account #: sql_constraint:account.invoice:0 msgid "Invoice Number must be unique per Company!" -msgstr "传票号必须在公司范围内唯一" +msgstr "发票号必须在公司范围内唯一" #. module: account #: model:ir.actions.act_window,name:account.action_account_receivable_graph @@ -5275,7 +5285,7 @@ msgstr "" #. module: account #: field:account.journal,group_invoice_lines:0 msgid "Group Invoice Lines" -msgstr "传票明细" +msgstr "发票明细" #. module: account #: view:account.automatic.reconcile:0 @@ -5336,7 +5346,7 @@ msgstr "子税科目" msgid "" "Check this if the price you use on the product and invoices includes this " "tax." -msgstr "勾选, 如果您使用的产品和传票价格含税." +msgstr "勾选, 如果您使用的产品和发票价格含税." #. module: account #: report:account.analytic.account.balance:0 @@ -5774,7 +5784,7 @@ msgstr "税编码符号(1为正数)" #. module: account #: model:ir.model,name:account.model_report_invoice_created msgid "Report of Invoices Created within Last 15 days" -msgstr "最近15天创建传票的报告" +msgstr "最近15天创建发票的报表" #. module: account #: field:account.fiscalyear,end_journal_period_id:0 @@ -5858,7 +5868,7 @@ msgstr "辅助核算项" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "客户传票和退款" +msgstr "客户发票和退款" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -6124,7 +6134,7 @@ msgstr "最大数量:" #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.action_account_invoice_refund msgid "Refund Invoice" -msgstr "红字传票" +msgstr "红字发票" #. module: account #: model:ir.actions.act_window,help:account.action_account_entries_report_all @@ -6222,7 +6232,7 @@ msgstr "" #: field:account.tax,account_collected_id:0 #: field:account.tax.template,account_collected_id:0 msgid "Invoice Tax Account" -msgstr "传票税科目" +msgstr "发票税科目" #. module: account #: model:ir.actions.act_window,name:account.action_account_general_journal @@ -6367,7 +6377,7 @@ msgstr "account.analytic.line.extended" msgid "" "As soon as the reconciliation is done, the invoice's state turns to “done” " "(i.e. paid) in the system." -msgstr "对账一旦完成,这传票的状态就马上改为“完成”。在系统里也就是已支付。" +msgstr "核销一旦完成,这发票的状态就马上改为“完成”。在系统里也就是已支付。" #. module: account #: view:account.chart.template:0 @@ -6468,7 +6478,7 @@ msgstr "公司" #. module: account #: view:account.invoice.report:0 msgid "Open and Paid Invoices" -msgstr "打开并支付传票" +msgstr "打开并支付发票" #. module: account #: selection:account.financial.report,display_detail:0 @@ -6652,7 +6662,7 @@ msgstr "辅助核算明细视图" #: field:account.invoice,internal_number:0 #: field:report.invoice.created,number:0 msgid "Invoice Number" -msgstr "传票号" +msgstr "发票编号" #. module: account #: field:account.bank.statement,difference:0 @@ -6851,7 +6861,7 @@ msgstr "计量单位" msgid "" "If this box is checked, the system will try to group the accounting lines " "when generating them from invoices." -msgstr "如果勾选此项, 系统将试图对生成的传票分组" +msgstr "如果勾选此项, 系统将试图对生成的发票分组" #. module: account #: field:account.installer,has_default_company:0 @@ -7014,7 +7024,7 @@ msgstr "当前期间凭证列表" msgid "" "Check this box if you want to allow the cancellation the entries related to " "this journal or of the invoice related to this journal" -msgstr "勾选这里,则此账簿下的会计凭证或传票可以被作废。" +msgstr "勾选这里,则此凭证簿下的会计凭证或发票可以被作废。" #. module: account #: view:account.fiscalyear.close:0 @@ -7103,7 +7113,7 @@ msgid "" "reconcile in a series of accounts. It finds entries for each partner where " "the amounts correspond." msgstr "" -"对传票涉及的如付款,这传票的条目必须有要对账对应的一方。通常付款有自动对账的功能。系统能搜索在每个业务伙伴的科目里找到一有相等金额的科目去对账。" +"对发票涉及的如付款,这发票的条目必须有要核销对应的一方。通常付款有自动核销的功能。系统能搜索在每个业务伙伴的科目里找到一有相等金额的科目去核销。" #. module: account #: view:account.move:0 @@ -7301,7 +7311,7 @@ msgstr "管理客户付款" #. module: account #: help:report.invoice.created,origin:0 msgid "Reference of the document that generated this invoice report." -msgstr "相关单据生成此传票报告" +msgstr "相关单据生成此发票报表" #. module: account #: field:account.tax.code,child_ids:0 @@ -7325,7 +7335,7 @@ msgstr "销售中用到的税" #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "客户传票" +msgstr "客户发票" #. module: account #: view:account.tax:0 @@ -7455,7 +7465,7 @@ msgstr "你确定要显示这个账簿的会计凭证么?" #. module: account #: view:account.state.open:0 msgid "Are you sure you want to open this invoice ?" -msgstr "你确定要打开这传票?" +msgstr "你确定要打开这发票?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 @@ -7512,12 +7522,12 @@ msgstr "百分数请输入一个 0-1的数字" #: field:account.invoice,date_invoice:0 #: field:report.invoice.created,date_invoice:0 msgid "Invoice Date" -msgstr "传票日期" +msgstr "发票日期" #. module: account #: view:account.invoice.report:0 msgid "Group by year of Invoice Date" -msgstr "按传票年度分组" +msgstr "按发票年度分组" #. module: account #: field:account.config.settings,purchase_tax_rate:0 @@ -7604,7 +7614,7 @@ msgstr "这字段只用于,如果您开发自己的模块允许开发者在自 #: field:account.invoice,reference:0 #: field:account.invoice.line,invoice_id:0 msgid "Invoice Reference" -msgstr "传票" +msgstr "发票" #. module: account #: field:account.fiscalyear.close,report_name:0 @@ -7659,7 +7669,7 @@ msgstr "" #: model:process.node,name:account.process_node_paidinvoice0 #: model:process.node,name:account.process_node_supplierpaidinvoice0 msgid "Paid invoice" -msgstr "支付传票" +msgstr "支付发票" #. module: account #: view:account.invoice.refund:0 @@ -7708,7 +7718,7 @@ msgstr "" #: field:account.invoice.tax,invoice_id:0 #: model:ir.model,name:account.model_account_invoice_line msgid "Invoice Line" -msgstr "传票明细" +msgstr "发票明细" #. module: account #: view:account.invoice.report:0 @@ -7822,7 +7832,7 @@ msgstr "销售账簿" #. module: account #: model:ir.model,name:account.model_account_invoice_tax msgid "Invoice Tax" -msgstr "传票税" +msgstr "发票税" #. module: account #: code:addons/account/account_move_line.py:1185 @@ -7905,7 +7915,7 @@ msgstr "关闭会计年度" #: view:account.invoice.cancel:0 #: model:ir.actions.act_window,name:account.action_account_invoice_cancel msgid "Cancel Selected Invoices" -msgstr "取消选择的传票" +msgstr "取消选择的发票" #. module: account #: help:account.account.type,report_type:0 @@ -7926,7 +7936,7 @@ msgstr "5" #: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" -msgstr "定义了全局税,但传票行中没有!" +msgstr "定义了全局税,但发票行中没有!" #. module: account #: model:ir.model,name:account.model_account_chart_template @@ -8209,13 +8219,13 @@ msgstr "业务伙伴" #. module: account #: help:account.change.currency,currency_id:0 msgid "Select a currency to apply on the invoice" -msgstr "在传票上选择合适的币别" +msgstr "在发票上选择合适的币别" #. module: account #: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" -msgstr "没有传票明细" +msgstr "没有发票明细" #. module: account #: view:account.financial.report:0 @@ -8314,7 +8324,7 @@ msgstr "" #: model:process.node,note:account.process_node_invoiceinvoice0 #: model:process.node,note:account.process_node_supplierinvoiceinvoice0 msgid "Invoice's state is Open" -msgstr "传票的状态是待处理" +msgstr "发票的状态是待处理" #. module: account #: view:account.analytic.account:0 @@ -8392,7 +8402,7 @@ msgstr "当前科目" #. module: account #: view:account.invoice.report:0 msgid "Group by Invoice Date" -msgstr "按传票日期分组" +msgstr "按发票日期分组" #. module: account #: help:account.journal,user_id:0 @@ -8658,8 +8668,8 @@ msgid "" "You should press this button to re-open it and let it continue its normal " "process after having resolved the eventual exceptions it may have created." msgstr "" -"这个按钮只在传票的状态是‘已付款’的时候才显示(意味着传票已经全部对账了),只读字段‘已对账’却是没有勾选的(实际上不应该这样)。换句话说,这张传票被反核" -"销了,不应该在‘已付款’状态。你应该单击这个按钮来更改传票状态到‘未付款’。这样解决了异常问题后就可以按正常流程继续处理这张传票了。" +"这个按钮只在发票的状态是‘已付款’的时候才显示(意味着发票已经全部核销了),只读字段‘已核销’却是没有勾选的(实际上不应该这样)。换句话说,这张发票被反核" +"销了,不应该在‘已付款’状态。你应该单击这个按钮来更改发票状态到‘未付款’。这样解决了异常问题后就可以按正常流程继续处理这张发票了。" #. module: account #: model:ir.actions.act_window,help:account.action_account_journal_form @@ -8717,7 +8727,7 @@ msgstr "公司的辅助核算" #. module: account #: help:account.invoice,account_id:0 msgid "The partner account used for this invoice." -msgstr "这传票用这业务伙伴科目" +msgstr "这发票用这业务伙伴科目" #. module: account #: code:addons/account/account.py:3391 @@ -8824,7 +8834,7 @@ msgstr "" #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened msgid "Unpaid Invoices" -msgstr "未支付的传票" +msgstr "未支付的发票" #. module: account #: field:account.move.line.reconcile,debit:0 @@ -8934,7 +8944,7 @@ msgstr "传票与付款" msgid "" "Unique number of the invoice, computed automatically when the invoice is " "created." -msgstr "传票创建时自动计算出唯一的传票编号" +msgstr "发票创建时自动计算出唯一的发票编号" #. module: account #: model:account.account.type,name:account.data_account_type_expense @@ -9007,7 +9017,7 @@ msgstr "提供显示银行对账单的序列" #. module: account #: model:process.transition,note:account.process_transition_validentries0 msgid "Accountant validates the accounting entries coming from the invoice." -msgstr "会计使该传票的分录生效" +msgstr "会计使该发票的分录生效" #. module: account #: view:account.entries.report:0 @@ -9082,7 +9092,7 @@ msgstr "账簿的开账分录" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 msgid "Draft invoices are checked, validated and printed." -msgstr "传票草稿待检查,生效和打印。" +msgstr "发票草稿待检查,生效和打印。" #. module: account #: field:account.bank.statement,message_is_follower:0 @@ -9222,7 +9232,7 @@ msgstr "辅助核算" #: model:process.node,name:account.process_node_invoiceinvoice0 #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 msgid "Create Invoice" -msgstr "创建传票" +msgstr "创建发票" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer @@ -9238,7 +9248,7 @@ msgstr "进项税(%)" #: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." -msgstr "请创建传票明细。" +msgstr "请创建发票明细。" #. module: account #: code:addons/account/wizard/pos_box.py:36 @@ -9264,7 +9274,7 @@ msgstr "SCNJ" msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft invoices." -msgstr "从这些传票草稿产生的成本辅助核算项(计工单或原材料投入)。" +msgstr "从这些发票草稿产生的成本辅助核算项(计工单或原材料投入)。" #. module: account #: view:account.analytic.line:0 @@ -9362,7 +9372,7 @@ msgstr "贷方合计" #. module: account #: model:process.transition,note:account.process_transition_suppliervalidentries0 msgid "Accountant validates the accounting entries coming from the invoice. " -msgstr "经会计师生效的传票分录 " +msgstr "经会计师生效的发票分录 " #. module: account #: field:account.subscription,period_total:0 @@ -9388,7 +9398,7 @@ msgstr "" #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "传票已经被对账" +msgstr "发票已经被核销" #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9554,7 +9564,7 @@ msgstr "" msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." -msgstr "设置科目,用于退款时传票上默认税科目。留空使用费用科目。" +msgstr "设置科目,用于退款时发票上默认税科目。留空使用费用科目。" #. module: account #: help:account.addtmpl.wizard,cparent_id:0 @@ -9622,7 +9632,7 @@ msgstr "周期性处理" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "客户和供应商的传票" +msgstr "客户和供应商的发票" #. module: account #: model:process.node,note:account.process_node_paymententries0 @@ -9714,8 +9724,8 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" -"‘销售’用于客户传票的账簿;‘采购’用于供应商传票的账簿;‘现金’或‘银行’用于客户或供应商付款的账簿。‘普通’用于其他各种业务。‘初始化’用于生成新会计" -"年度的年初余额。" +"‘销售’用于客户发票的凭证簿;‘采购’用于供应商发票的凭证簿;‘现金’或‘银行’用于客户或供应商付款的凭证簿。‘普通’用于其他各种业务。‘初始化’用于生成" +"新会计年度的年初余额。" #. module: account #: view:account.subscription:0 @@ -9768,14 +9778,14 @@ msgstr "开始日期" msgid "" "It indicates that the invoice has been paid and the journal entry of the " "invoice has been reconciled with one or several journal entries of payment." -msgstr "此字段表示传票已付款,也就是说这张传票对应的会计凭证与一张或几张付款对应的会计凭证已对账。" +msgstr "此字段表示发票已付款,也就是说这张发票对应的会计凭证与一张或几张付款对应的会计凭证已核销。" #. module: account #: view:account.invoice:0 #: view:account.invoice.report:0 #: model:process.node,name:account.process_node_supplierdraftinvoices0 msgid "Draft Invoices" -msgstr "传票草稿" +msgstr "发票草稿" #. module: account #: view:cash.box.in:0 @@ -10074,7 +10084,7 @@ msgstr "标题2(加粗)" #: model:ir.actions.act_window,name:account.action_invoice_tree2 #: model:ir.ui.menu,name:account.menu_action_invoice_tree2 msgid "Supplier Invoices" -msgstr "供应商传票" +msgstr "供应商发票" #. module: account #: view:account.analytic.line:0 @@ -10396,7 +10406,7 @@ msgstr "所选的账簿和期间必须属于相同公司。" #. module: account #: view:account.invoice:0 msgid "Invoice lines" -msgstr "传票明细" +msgstr "发票明细" #. module: account #: field:account.chart,period_to:0 @@ -10430,7 +10440,7 @@ msgstr "补差额凭证" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 msgid "Invoice's state is Done" -msgstr "传票的状态已完成" +msgstr "发票的状态已完成" #. module: account #: field:account.config.settings,module_account_followup:0 @@ -10457,7 +10467,7 @@ msgstr "替换规则" #: selection:report.invoice.created,type:0 #, python-format msgid "Supplier Invoice" -msgstr "供应商传票" +msgstr "供应商发票" #. module: account #: field:account.account,debit:0 @@ -10492,7 +10502,7 @@ msgstr "标题3(加粗,略小)" #: view:account.invoice:0 #: field:account.invoice,invoice_line:0 msgid "Invoice Lines" -msgstr "传票明细" +msgstr "发票明细" #. module: account #: help:account.model.line,quantity:0 @@ -10578,7 +10588,7 @@ msgstr "12月" #. module: account #: view:account.invoice.report:0 msgid "Group by month of Invoice Date" -msgstr "按传票月份分组" +msgstr "按发票月份分组" #. module: account #: code:addons/account/account_analytic_line.py:99 @@ -10606,7 +10616,7 @@ msgstr "如果是一个多货币凭证可选其它货币" #: model:process.transition,note:account.process_transition_invoiceimport0 msgid "" "Import of the statement in the system from a supplier or customer invoice" -msgstr "为表单导入供应商或客户传票" +msgstr "为表单导入供应商或客户发票" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing @@ -10715,7 +10725,7 @@ msgstr "普通账簿" #. module: account #: view:account.invoice:0 msgid "Search Invoice" -msgstr "搜索传票" +msgstr "搜索发票" #. module: account #: report:account.invoice:0 @@ -10774,7 +10784,7 @@ msgstr "已开票" #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 msgid "As soon as the reconciliation is done, the invoice can be paid." -msgstr "一旦对账完成,这传票可能已被支付。" +msgstr "一旦核销完成,这发票可能已被支付。" #. module: account #: code:addons/account/wizard/account_change_currency.py:59 @@ -10790,7 +10800,7 @@ msgstr "搜索科目模板" #. module: account #: view:account.invoice.tax:0 msgid "Manual Invoice Taxes" -msgstr "手动的传票税(非主营业务纳税)" +msgstr "手动的发票税(非主营业务纳税)" #. module: account #: code:addons/account/account_invoice.py:573 @@ -10985,6 +10995,9 @@ msgstr "基于当前币别的应收或应付款的余额" #~ msgid "Untaxed amount" #~ msgstr "未完税金额" +#~ msgid "Cancel Invoice" +#~ msgstr "取消发票" + #, python-format #~ msgid "Supplier invoice" #~ msgstr "供应商发票" @@ -14672,6 +14685,3 @@ msgstr "基于当前币别的应收或应付款的余额" #~ msgid "Column Name" #~ msgstr "栏目名称" - -#~ msgid "Cancel Invoice" -#~ msgstr "取消传票" diff --git a/addons/account/i18n/zh_HK.po b/addons/account/i18n/zh_HK.po index 3cc2f792bc4..66d49e79eeb 100644 --- a/addons/account/i18n/zh_HK.po +++ b/addons/account/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:36+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:01+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index f6ab25cbc72..91ef9273989 100644 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-02 05:23+0000\n" -"X-Generator: Launchpad (build 16856)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:03+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -12728,3 +12728,6 @@ msgstr "基於當前幣別的應收或應付帳款的餘額" #~ msgid "Analytic Entries during last 7 days" #~ msgstr "最近7天內的輔助核算分錄" + +#~ msgid "Cancel Invoice" +#~ msgstr "取消發票" diff --git a/addons/account/report/account_analytic_entries_report_view.xml b/addons/account/report/account_analytic_entries_report_view.xml index 8a421e3cb36..047d563cc58 100644 --- a/addons/account/report/account_analytic_entries_report_view.xml +++ b/addons/account/report/account_analytic_entries_report_view.xml @@ -1,32 +1,6 @@ - - analytic.entries.report.tree - analytic.entries.report - - - - - - - - - - - - - - - - - - - - - - - analytic.entries.report.search analytic.entries.report @@ -58,8 +32,8 @@ account.analytic.entries.graph analytic.entries.report - - + + @@ -69,7 +43,7 @@ Analytic Entries Analysis analytic.entries.report form - tree,graph + graph {'search_default_year':1,'search_default_month':1, 'group_by_no_leaf':1, 'search_default_Account':1, 'search_default_Month':1, 'group_by':[]} From this view, have an analysis of your different analytic entries following the analytic account you defined matching your business need. Use the tool search to analyse information about analytic entries generated in the system. diff --git a/addons/account/report/account_entries_report_view.xml b/addons/account/report/account_entries_report_view.xml index 66959051ea4..2d1af681062 100644 --- a/addons/account/report/account_entries_report_view.xml +++ b/addons/account/report/account_entries_report_view.xml @@ -38,8 +38,8 @@ account.entries.report.graph account.entries.report - - + + @@ -103,9 +103,9 @@ Entries Analysis account.entries.report form - tree,graph + graph - + {'group_by':[], 'search_default_usertype':1, 'search_default_thisyear':1, 'group_by_no_leaf':1} From this view, have an analysis of your different financial accounts. The document shows your debit and credit taking in consideration some criteria you can choose by using the search tool. diff --git a/addons/account/report/account_invoice_report_view.xml b/addons/account/report/account_invoice_report_view.xml index 47ce75b4d61..67d568801b7 100644 --- a/addons/account/report/account_invoice_report_view.xml +++ b/addons/account/report/account_invoice_report_view.xml @@ -1,47 +1,14 @@ - - account.invoice.report.tree - account.invoice.report - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - account.invoice.report.graph account.invoice.report - - - + + + + @@ -72,7 +39,7 @@ - + @@ -92,8 +59,8 @@ Invoices Analysis account.invoice.report form - tree,graph - {'search_default_period':1,'search_default_current':1, 'search_default_year': 1, 'search_default_category_product':1, 'search_default_customer':1, 'group_by':[], 'group_by_no_leaf':1,} + graph + {'search_default_current':1, 'search_default_year': 1, 'search_default_customer':1, 'group_by':[], 'group_by_no_leaf':1,} From this report, you can have an overview of the amount invoiced to your customer. The tool search can also be used to personalise your Invoices reports and so, match this analysis to your needs. diff --git a/addons/account/report/account_treasury_report_view.xml b/addons/account/report/account_treasury_report_view.xml index be6ae0dfdc9..fe898cd81ce 100644 --- a/addons/account/report/account_treasury_report_view.xml +++ b/addons/account/report/account_treasury_report_view.xml @@ -22,9 +22,9 @@ account.treasury.report.graph account.treasury.report - - - + + +
@@ -43,9 +43,9 @@ Treasury Analysis account.treasury.report form - tree,graph + graph - + {'group_by':[], 'group_by_no_leaf':0} From this view, have an analysis of your treasury. It sums the balance of every accounting entries made on liquidity accounts per period.
diff --git a/addons/account/res_config.py b/addons/account/res_config.py index bf28e900378..8980a31927e 100644 --- a/addons/account/res_config.py +++ b/addons/account/res_config.py @@ -105,6 +105,9 @@ class account_config_settings(osv.osv_memory): 'module_account_followup': fields.boolean('Manage customer payment follow-ups', help='This allows to automate letters for unpaid invoices, with multi-level recalls.\n' '-This installs the module account_followup.'), + 'module_product_email_template': fields.boolean('Send products tools and information at the invoice confirmation', + help='With this module, link your products to a template to send complete information and tools to your customer.\n' + 'For instance when invoicing a training, the training agenda and materials will automatically be send to your customers.'), 'group_proforma_invoices': fields.boolean('Allow pro-forma invoices', implied_group='account.group_proforma_invoices', help="Allows you to put invoices in pro-forma state."), diff --git a/addons/account/res_config_view.xml b/addons/account/res_config_view.xml index ce8b41fc2da..103344daa3a 100644 --- a/addons/account/res_config_view.xml +++ b/addons/account/res_config_view.xml @@ -183,6 +183,10 @@
diff --git a/addons/account/static/src/css/account_bank_and_cash.css b/addons/account/static/src/css/account_bank_and_cash.css new file mode 100644 index 00000000000..5b5643d0d8e --- /dev/null +++ b/addons/account/static/src/css/account_bank_and_cash.css @@ -0,0 +1,27 @@ +.openerp .oe_force_bold { + font-weight: bold !important; +} +.openerp label.oe_open_balance{ + margin-right: -18px; +} +.openerp label.oe_subtotal_footer_separator{ + float:right; + width: 184px !important; +} +.openerp label.oe_mini_subtotal_footer_separator{ + margin-right: -14px; +} +.openerp .oe_account_total, .openerp .oe_pos_total { + margin-left: -2px; +} +.openerp label.oe_real_closing_balance{ + min-width: 184px !important; +} +.openerp label.oe_difference, .openerp label.oe_pos_difference { + margin-right: -10px; + padding-left: 10px !important; + min-width: 195px !important; +} +.openerp .oe_opening_total{ + margin-right: 4px; +} diff --git a/addons/account/wizard/account_fiscalyear_close.py b/addons/account/wizard/account_fiscalyear_close.py index 928f0647084..266b8ccbc50 100644 --- a/addons/account/wizard/account_fiscalyear_close.py +++ b/addons/account/wizard/account_fiscalyear_close.py @@ -224,14 +224,6 @@ class account_fiscalyear_close(osv.osv_memory): query_2nd_part = "" query_2nd_part_args = [] for account in obj_acc_account.browse(cr, uid, account_ids, context={'fiscalyear': fy_id}): - balance_in_currency = 0.0 - if account.currency_id: - cr.execute('SELECT sum(COALESCE(amount_currency,0.0)) as balance_in_currency FROM account_move_line ' \ - 'WHERE account_id = %s ' \ - 'AND ' + query_line + ' ' \ - 'AND currency_id = %s', (account.id, account.currency_id.id)) - balance_in_currency = cr.dictfetchone()['balance_in_currency'] - company_currency_id = self.pool.get('res.users').browse(cr, uid, uid).company_id.currency_id if not currency_obj.is_zero(cr, uid, company_currency_id, abs(account.balance)): if query_2nd_part: @@ -246,7 +238,7 @@ class account_fiscalyear_close(osv.osv_memory): period.id, account.id, account.currency_id and account.currency_id.id or None, - balance_in_currency, + account.foreign_balance if account.currency_id else 0.0, account.company_id.id, 'draft') if query_2nd_part: diff --git a/addons/account_accountant/i18n/ar.po b/addons/account_accountant/i18n/ar.po index 5c2ffbd15bc..b6010f15390 100644 --- a/addons/account_accountant/i18n/ar.po +++ b/addons/account_accountant/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/az.po b/addons/account_accountant/i18n/az.po index 57a4b0f3d06..421a80b3f58 100644 --- a/addons/account_accountant/i18n/az.po +++ b/addons/account_accountant/i18n/az.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bg.po b/addons/account_accountant/i18n/bg.po index e3e9d0715c0..523ccd6f1bd 100644 --- a/addons/account_accountant/i18n/bg.po +++ b/addons/account_accountant/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bn.po b/addons/account_accountant/i18n/bn.po index 9e0d1bd2455..3433bf2e616 100644 --- a/addons/account_accountant/i18n/bn.po +++ b/addons/account_accountant/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bs.po b/addons/account_accountant/i18n/bs.po index 46ec08cbec0..39dd169d594 100644 --- a/addons/account_accountant/i18n/bs.po +++ b/addons/account_accountant/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ca.po b/addons/account_accountant/i18n/ca.po index f18881a0632..6e473195e73 100644 --- a/addons/account_accountant/i18n/ca.po +++ b/addons/account_accountant/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/cs.po b/addons/account_accountant/i18n/cs.po index f8d59601501..d9f65ee1e72 100644 --- a/addons/account_accountant/i18n/cs.po +++ b/addons/account_accountant/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/da.po b/addons/account_accountant/i18n/da.po index 0ce461fdb57..ad2336979ed 100644 --- a/addons/account_accountant/i18n/da.po +++ b/addons/account_accountant/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/de.po b/addons/account_accountant/i18n/de.po index 2fddae53f68..4358acd600e 100644 --- a/addons/account_accountant/i18n/de.po +++ b/addons/account_accountant/i18n/de.po @@ -9,18 +9,18 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-04 07:23+0000\n" -"Last-Translator: Ferdinand @ Camptocamp \n" +"Last-Translator: Ferdinand \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-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "Öffne Finanz Menü" +msgstr "Finanzmenü öffnen" #~ msgid "Accountant" #~ msgstr "Finanzbuchhaltung Administrator" diff --git a/addons/account_accountant/i18n/el.po b/addons/account_accountant/i18n/el.po index bca20e06bbf..c2dccfdebd4 100644 --- a/addons/account_accountant/i18n/el.po +++ b/addons/account_accountant/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/en_GB.po b/addons/account_accountant/i18n/en_GB.po index a310dec66e2..6f9da5b56c9 100644 --- a/addons/account_accountant/i18n/en_GB.po +++ b/addons/account_accountant/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es.po b/addons/account_accountant/i18n/es.po index 016fef4f86c..23cc529335e 100644 --- a/addons/account_accountant/i18n/es.po +++ b/addons/account_accountant/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_AR.po b/addons/account_accountant/i18n/es_AR.po index 0e2684b0431..2ae20372047 100644 --- a/addons/account_accountant/i18n/es_AR.po +++ b/addons/account_accountant/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-08 05:42+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_CO.po b/addons/account_accountant/i18n/es_CO.po index 24335eaf913..8420312bee4 100644 --- a/addons/account_accountant/i18n/es_CO.po +++ b/addons/account_accountant/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_CR.po b/addons/account_accountant/i18n/es_CR.po index dd56be0a86c..d3c93cb2e2e 100644 --- a/addons/account_accountant/i18n/es_CR.po +++ b/addons/account_accountant/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/es_DO.po b/addons/account_accountant/i18n/es_DO.po index 0a995fe53b8..2d6506e1458 100644 --- a/addons/account_accountant/i18n/es_DO.po +++ b/addons/account_accountant/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_EC.po b/addons/account_accountant/i18n/es_EC.po index a7895c70acb..bcafe32ef54 100644 --- a/addons/account_accountant/i18n/es_EC.po +++ b/addons/account_accountant/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_MX.po b/addons/account_accountant/i18n/es_MX.po index 524515c8f93..0b8110b9136 100644 --- a/addons/account_accountant/i18n/es_MX.po +++ b/addons/account_accountant/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_PE.po b/addons/account_accountant/i18n/es_PE.po index 8b13f317656..5df4f24b04d 100644 --- a/addons/account_accountant/i18n/es_PE.po +++ b/addons/account_accountant/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-12 05:15+0000\n" -"X-Generator: Launchpad (build 16869)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_PY.po b/addons/account_accountant/i18n/es_PY.po index ebc125c9c27..4bac2632a4c 100644 --- a/addons/account_accountant/i18n/es_PY.po +++ b/addons/account_accountant/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/et.po b/addons/account_accountant/i18n/et.po index a7d8ed05bec..f2aa7b48e91 100644 --- a/addons/account_accountant/i18n/et.po +++ b/addons/account_accountant/i18n/et.po @@ -14,10 +14,10 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Ava raamatupidamise menüü" diff --git a/addons/account_accountant/i18n/fa.po b/addons/account_accountant/i18n/fa.po index 53b1ed80035..0d9fdbf7e43 100644 --- a/addons/account_accountant/i18n/fa.po +++ b/addons/account_accountant/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fi.po b/addons/account_accountant/i18n/fi.po index 6c9161b724a..d9ff26d833c 100644 --- a/addons/account_accountant/i18n/fi.po +++ b/addons/account_accountant/i18n/fi.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Avaa kirjanpitovalikko" #~ msgid "Accountant" #~ msgstr "Kirjanpitäjä" diff --git a/addons/account_accountant/i18n/fr.po b/addons/account_accountant/i18n/fr.po index 9b0e8c79dd3..6e903c7efe7 100644 --- a/addons/account_accountant/i18n/fr.po +++ b/addons/account_accountant/i18n/fr.po @@ -9,14 +9,14 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-03 20:18+0000\n" -"Last-Translator: Frederic Clementi - Camptocamp.com " +"Last-Translator: Frederic Clementi - Camptocamp " "\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-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/gl.po b/addons/account_accountant/i18n/gl.po index a57307870c6..6763129ff5d 100644 --- a/addons/account_accountant/i18n/gl.po +++ b/addons/account_accountant/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/he.po b/addons/account_accountant/i18n/he.po index f9d5c663089..f1769d64e8e 100644 --- a/addons/account_accountant/i18n/he.po +++ b/addons/account_accountant/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hi.po b/addons/account_accountant/i18n/hi.po index 22f3a47a03f..fe479de4e85 100644 --- a/addons/account_accountant/i18n/hi.po +++ b/addons/account_accountant/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hr.po b/addons/account_accountant/i18n/hr.po index acbbbefc27f..9bdb7ba2c0b 100644 --- a/addons/account_accountant/i18n/hr.po +++ b/addons/account_accountant/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hu.po b/addons/account_accountant/i18n/hu.po index 9da40e725f1..ea6bd9a543f 100644 --- a/addons/account_accountant/i18n/hu.po +++ b/addons/account_accountant/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/id.po b/addons/account_accountant/i18n/id.po index b9f7625494b..62ac8f860ab 100644 --- a/addons/account_accountant/i18n/id.po +++ b/addons/account_accountant/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/it.po b/addons/account_accountant/i18n/it.po index 14a7767cbfd..96b287f3590 100644 --- a/addons/account_accountant/i18n/it.po +++ b/addons/account_accountant/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-11-28 19:50+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \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: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ja.po b/addons/account_accountant/i18n/ja.po index 8214018aa51..e66deb45c20 100644 --- a/addons/account_accountant/i18n/ja.po +++ b/addons/account_accountant/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ko.po b/addons/account_accountant/i18n/ko.po index 772261c71fa..ea6da0da1d1 100644 --- a/addons/account_accountant/i18n/ko.po +++ b/addons/account_accountant/i18n/ko.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2011-05-10 14:38+0000\n" -"Last-Translator: Sungjin Gang \n" +"Last-Translator: Sungjin Kang \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: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lo.po b/addons/account_accountant/i18n/lo.po index 2d4875b4241..7e4cd4661a7 100644 --- a/addons/account_accountant/i18n/lo.po +++ b/addons/account_accountant/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lt.po b/addons/account_accountant/i18n/lt.po index 2322c90caa7..3c855c1524c 100644 --- a/addons/account_accountant/i18n/lt.po +++ b/addons/account_accountant/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lv.po b/addons/account_accountant/i18n/lv.po index 00893dbd5aa..7251a8b937a 100644 --- a/addons/account_accountant/i18n/lv.po +++ b/addons/account_accountant/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mk.po b/addons/account_accountant/i18n/mk.po index 49457313f74..edc52964911 100644 --- a/addons/account_accountant/i18n/mk.po +++ b/addons/account_accountant/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mn.po b/addons/account_accountant/i18n/mn.po index 255a374d564..db5d66b72b0 100644 --- a/addons/account_accountant/i18n/mn.po +++ b/addons/account_accountant/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nb.po b/addons/account_accountant/i18n/nb.po index b7d94b1413d..a0914b10c83 100644 --- a/addons/account_accountant/i18n/nb.po +++ b/addons/account_accountant/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl.po b/addons/account_accountant/i18n/nl.po index 4baff389479..132fbebd81d 100644 --- a/addons/account_accountant/i18n/nl.po +++ b/addons/account_accountant/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl_BE.po b/addons/account_accountant/i18n/nl_BE.po index 391e5389100..faafa6261c8 100644 --- a/addons/account_accountant/i18n/nl_BE.po +++ b/addons/account_accountant/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-11-27 13:16+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \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: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/oc.po b/addons/account_accountant/i18n/oc.po index d63ab5fee0e..b42732899f0 100644 --- a/addons/account_accountant/i18n/oc.po +++ b/addons/account_accountant/i18n/oc.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Dobrissètz lo menú Comptabilitat" #~ msgid "" #~ "\n" diff --git a/addons/account_accountant/i18n/pl.po b/addons/account_accountant/i18n/pl.po index 4ebf80193d6..5679cf52e2d 100644 --- a/addons/account_accountant/i18n/pl.po +++ b/addons/account_accountant/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt.po b/addons/account_accountant/i18n/pt.po index 957d01d464e..b0bdc56b25f 100644 --- a/addons/account_accountant/i18n/pt.po +++ b/addons/account_accountant/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt_BR.po b/addons/account_accountant/i18n/pt_BR.po index 295edf01676..3fdb1dc0de5 100644 --- a/addons/account_accountant/i18n/pt_BR.po +++ b/addons/account_accountant/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-16 22:40+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\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-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ro.po b/addons/account_accountant/i18n/ro.po index 25cbabf596d..d79fd24ee49 100644 --- a/addons/account_accountant/i18n/ro.po +++ b/addons/account_accountant/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ru.po b/addons/account_accountant/i18n/ru.po index 8d2c290c788..38e5941ff23 100644 --- a/addons/account_accountant/i18n/ru.po +++ b/addons/account_accountant/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sk.po b/addons/account_accountant/i18n/sk.po index 2770df85235..140a81da180 100644 --- a/addons/account_accountant/i18n/sk.po +++ b/addons/account_accountant/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sl.po b/addons/account_accountant/i18n/sl.po index 59d7cd438ed..6ab713dbd95 100644 --- a/addons/account_accountant/i18n/sl.po +++ b/addons/account_accountant/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sq.po b/addons/account_accountant/i18n/sq.po index 026e05e11c1..e8f572e6154 100644 --- a/addons/account_accountant/i18n/sq.po +++ b/addons/account_accountant/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr.po b/addons/account_accountant/i18n/sr.po index 9ab294c0975..4ad707e7311 100644 --- a/addons/account_accountant/i18n/sr.po +++ b/addons/account_accountant/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr@latin.po b/addons/account_accountant/i18n/sr@latin.po index 1b49ca80cb1..909024174c2 100644 --- a/addons/account_accountant/i18n/sr@latin.po +++ b/addons/account_accountant/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sv.po b/addons/account_accountant/i18n/sv.po index 7f7e4429a9e..056f71f87e0 100644 --- a/addons/account_accountant/i18n/sv.po +++ b/addons/account_accountant/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ta.po b/addons/account_accountant/i18n/ta.po index db2a93af6dc..90d2f71b548 100644 --- a/addons/account_accountant/i18n/ta.po +++ b/addons/account_accountant/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/th.po b/addons/account_accountant/i18n/th.po index 6794bb42348..f12588d7365 100644 --- a/addons/account_accountant/i18n/th.po +++ b/addons/account_accountant/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/tr.po b/addons/account_accountant/i18n/tr.po index 387b796fa8d..6efddf609cb 100644 --- a/addons/account_accountant/i18n/tr.po +++ b/addons/account_accountant/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/uk.po b/addons/account_accountant/i18n/uk.po index b1e3ba0bd12..7f241f53b0e 100644 --- a/addons/account_accountant/i18n/uk.po +++ b/addons/account_accountant/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/vi.po b/addons/account_accountant/i18n/vi.po index 56c349aa3c6..9b9995a09f9 100644 --- a/addons/account_accountant/i18n/vi.po +++ b/addons/account_accountant/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/zh_CN.po b/addons/account_accountant/i18n/zh_CN.po index db1cf114b04..25dd34fc3d0 100644 --- a/addons/account_accountant/i18n/zh_CN.po +++ b/addons/account_accountant/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/zh_TW.po b/addons/account_accountant/i18n/zh_TW.po index 47ccd55a6a9..06a86392406 100644 --- a/addons/account_accountant/i18n/zh_TW.po +++ b/addons/account_accountant/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_analytic_analysis/i18n/ar.po b/addons/account_analytic_analysis/i18n/ar.po index 1416754ac45..56f18cadb31 100644 --- a/addons/account_analytic_analysis/i18n/ar.po +++ b/addons/account_analytic_analysis/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:09+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po index 34800065d7b..c6bea7ee999 100644 --- a/addons/account_analytic_analysis/i18n/bg.po +++ b/addons/account_analytic_analysis/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:09+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/bs.po b/addons/account_analytic_analysis/i18n/bs.po index 7cfc25aff24..ba0c37a5a58 100644 --- a/addons/account_analytic_analysis/i18n/bs.po +++ b/addons/account_analytic_analysis/i18n/bs.po @@ -13,13 +13,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:09+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "No order to invoice, create" -msgstr "" +msgstr "Nema narudžbe za fakturisanje, kreiraj" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -29,12 +29,12 @@ msgstr "Grupiraj po..." #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "To Invoice" -msgstr "" +msgstr "Za fakturisanje" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Remaining" -msgstr "" +msgstr "Preostalo" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -73,7 +73,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "⇒ Invoice" -msgstr "" +msgstr "⇒ Faktura" #. module: account_analytic_analysis #: field:account.analytic.account,ca_invoiced:0 @@ -88,7 +88,7 @@ msgstr "Datum zadnjeg fakturiranog troška" #. module: account_analytic_analysis #: help:account.analytic.account,fix_price_to_invoice:0 msgid "Sum of quotations for this contract." -msgstr "" +msgstr "Suma ponuda za ovaj ugovor" #. module: account_analytic_analysis #: help:account.analytic.account,ca_invoiced:0 @@ -98,18 +98,18 @@ msgstr "Ukupni iznos izlaznih Faktura za ovaj konto kupca." #. module: account_analytic_analysis #: help:account.analytic.account,timesheet_ca_invoiced:0 msgid "Sum of timesheet lines invoiced for this contract." -msgstr "" +msgstr "Suma stavki vremenskih listova fakturisanih za ovaj ugovor." #. module: account_analytic_analysis #: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" -msgstr "" +msgstr "Stavke prodajne narudžbe od %s" #. module: account_analytic_analysis #: help:account.analytic.account,revenue_per_hour:0 msgid "Computed using the formula: Invoiced Amount / Total Time" -msgstr "" +msgstr "Izračunato korištenjem formule: fakturisani iznos / ukupno vrijeme" #. module: account_analytic_analysis #: field:account_analytic_analysis.summary.month,account_id:0 @@ -121,12 +121,12 @@ msgstr "Analitičko konto" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts that are not assigned to an account manager." -msgstr "" +msgstr "Ugovori koji nisu pridruženi manadžeru klijenta" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue @@ -146,6 +146,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za definiranje novog ugovora.\n" +"

\n" +" Ovdje se nalaze ugovori koje bi trebalo obnoviti\n" +" jer je prošao datum završetka.\n" +"

\n" +" OpenERP automatski postavlja ugovore koji se trebaju " +"obnaviti u status 'na čekanju'. \n" +" Nakon pregovora, prodavač bi trebao zatvoriti ili obnoviti " +"ugovore na čekanju.. \n" +"

\n" +" " #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -155,32 +167,32 @@ msgstr "Datum završetka" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Account Manager" -msgstr "" +msgstr "Manager zadužen za klijenta" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours_to_invoice:0 msgid "Computed using the formula: Maximum Time - Total Invoiced Time" -msgstr "" +msgstr "Izračunato kao: maksimalno vrijeme - ukupno fakturisano vrijeme" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Expected" -msgstr "" +msgstr "Očekivano" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts not assigned" -msgstr "" +msgstr "Ugovori koji nisu dodijeljeni" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 msgid "Computed using the formula: Theoretical Revenue - Total Costs" -msgstr "" +msgstr "Izračunato kao: Teoretski prihod - ukupni trošak" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_invoiced:0 msgid "Invoiced Time" -msgstr "" +msgstr "Fakturisano vrijeme" #. module: account_analytic_analysis #: field:account.analytic.account,fix_price_to_invoice:0 @@ -188,7 +200,7 @@ msgstr "" #: field:account.analytic.account,remaining_hours_to_invoice:0 #: field:account.analytic.account,timesheet_ca_invoiced:0 msgid "Remaining Time" -msgstr "" +msgstr "Preostalo vrijeme" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -205,29 +217,29 @@ msgstr "Realna stopa marže (%)" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours:0 msgid "Computed using the formula: Maximum Time - Total Worked Time" -msgstr "" +msgstr "Izračunato kao: maksimalno vrijeme - ukupno odrađeno vrijeme" #. module: account_analytic_analysis #: help:account.analytic.account,hours_quantity:0 msgid "" "Number of time you spent on the analytic account (from timesheet). It " "computes quantities on all journal of type 'general'." -msgstr "" +msgstr "Vrijeme provedeno na analitičkom računu (iz evidencije rada)." #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Nothing to invoice, create" -msgstr "" +msgstr "Ništa za fakturisanje, kreiraj" #. module: account_analytic_analysis #: model:res.groups,name:account_analytic_analysis.group_template_required msgid "Mandatory use of templates in contracts" -msgstr "" +msgstr "Obvezno korištenje predložaka u ugovorima" #. module: account_analytic_analysis #: field:account.analytic.account,hours_quantity:0 msgid "Total Worked Time" -msgstr "" +msgstr "Ukupno odrađeno vrijeme" #. module: account_analytic_analysis #: field:account.analytic.account,real_margin:0 @@ -248,17 +260,17 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "or view" -msgstr "" +msgstr "ili pogledaj" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Customer Contracts" -msgstr "" +msgstr "Ugovori s kupcima" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Parent" -msgstr "" +msgstr "Roditelj" #. module: account_analytic_analysis #: field:account.analytic.account,month_ids:0 @@ -270,24 +282,24 @@ msgstr "Mjesec" #: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all msgid "Time & Materials to Invoice" -msgstr "" +msgstr "Vrijeme i Materijali za fakturisanje" #. module: account_analytic_analysis #: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue_all #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue_all msgid "Contracts" -msgstr "" +msgstr "Ugovori" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Start Date" -msgstr "" +msgstr "Datum početka" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Invoiced" -msgstr "" +msgstr "Fakturisano" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -304,7 +316,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Timesheets" -msgstr "" +msgstr "Vremenski listovi" #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_non_invoiced:0 @@ -312,6 +324,8 @@ msgid "" "Number of time (hours/days) (from journal of type 'general') that can be " "invoiced if you invoice based on analytic account." msgstr "" +"Vrijeme (sati / dani) (iz dnevnika tipa 'opšte') koje se može fakturisati " +"ako se fakturiše na osnovu analitičkog konta." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -321,12 +335,12 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,is_overdue_quantity:0 msgid "Overdue Quantity" -msgstr "" +msgstr "Zakašnjela količina" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: account_analytic_analysis #: field:account.analytic.account,ca_theorical:0 @@ -348,12 +362,12 @@ msgstr "" #: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" -msgstr "" +msgstr "Prodajne narudžbe" #. module: account_analytic_analysis #: help:account.analytic.account,last_invoice_date:0 msgid "If invoice from the costs, this is the date of the latest invoiced." -msgstr "" +msgstr "Ako je fakturisano iz troškova, ovo je datum zadnje fakturisanog." #. module: account_analytic_analysis #: help:account.analytic.account,ca_theorical:0 @@ -384,16 +398,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite ovdje da biste stvorili predložak ugovora.\n" +"

\n" +" Predlošci se koriste kako bi unaprijed postavili ugovor " +"/ projekt koji\n" +" prodavač može odabrati da bi brzo podesio \n" +" uslove ugovora.\n" +"

\n" +" " #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user msgid "Hours Summary by User" -msgstr "" +msgstr "Rekapitulacija sati po korisniku" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contract" -msgstr "" +msgstr "Ugovor" #. module: account_analytic_analysis #: help:sale.config.settings,group_template_required:0 @@ -401,6 +424,8 @@ msgid "" "Allows you to set the template field as required when creating an analytic " "account or a contract." msgstr "" +"Omogućuje vam da postavite polje predloška kao obvezno prilikom izrade " +"analitičkog konta ili ugovora." #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_invoiced:0 @@ -408,6 +433,8 @@ msgid "" "Number of time (hours/days) that can be invoiced plus those that already " "have been invoiced." msgstr "" +"Vrijeme (sati / dani) koje se može fakturisati plus ono koje je već " +"fakturisano." #. module: account_analytic_analysis #: field:account.analytic.account,revenue_per_hour:0 @@ -429,11 +456,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za stvaranje novog ugovora.\n" +"

\n" +" Koristite ugovore za praćenje zadataka, pitanja, " +"evidencije rada ili fakturisanja na osnovu\n" +" obavljenog posla, troškova i/ili prodajnih naloga. \n" +" OpenERP će automatski upravljati upozorenjima za obnovu " +"ugovora dodijeljenom prodavaču.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 msgid "Total to Invoice" -msgstr "" +msgstr "Ukupno za fakturisati" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -448,7 +485,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,invoiced_total:0 msgid "Total Invoiced" -msgstr "" +msgstr "Ukupno fakturisano" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_ca:0 @@ -465,7 +502,7 @@ msgstr "Posljednji datum fakture" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Units Remaining" -msgstr "" +msgstr "Preostalo jedinica" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_hr_tree_invoiced_all @@ -480,11 +517,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Ovdje ćete pronaći evidencije rada i nabave koje ste obavili " +"za\n" +" ugovore i koji se mogu prefakturisati klijentu. Ako pak " +"želite\n" +" zapisati nove aktivnosti koje će se fakturisati, trebali bi " +"umjesto ovog\n" +" koristiti meni evidencije rada.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 msgid "Uninvoiced Time" -msgstr "" +msgstr "Nefakturisano vrijeme" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -503,17 +550,20 @@ msgid "" "remaining subtotals which, in turn, are computed as the maximum between " "'(Estimation - Invoiced)' and 'To Invoice' amounts" msgstr "" +"Procjena preostalog prihoda za ovaj ugovor. Izračunava kao zbroj preostalih " +"podzbrojeva koji se, pak, računaju se kao maksimum između '(procjena - " +"fakturisanja)' i 'za fakturisati' iznose" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue msgid "Contracts to Renew" -msgstr "" +msgstr "Ugovori za obnoviti" #. module: account_analytic_analysis #: help:account.analytic.account,toinvoice_total:0 msgid " Sum of everything that could be invoiced for this contract." -msgstr "" +msgstr " Suma svega što se može fakturisati za ovaj ugovor." #. module: account_analytic_analysis #: field:account.analytic.account,theorical_margin:0 @@ -523,7 +573,7 @@ msgstr "Teoretska marža" #. module: account_analytic_analysis #: field:account.analytic.account,remaining_total:0 msgid "Total Remaining" -msgstr "" +msgstr "Ukupno preostalo" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin:0 @@ -533,12 +583,12 @@ msgstr "Izračunato korištenjem formule: Fakturirani iznos - Ukupni troškovi." #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_est:0 msgid "Estimation of Hours to Invoice" -msgstr "" +msgstr "Procjena sati za fakturisanje" #. module: account_analytic_analysis #: field:account.analytic.account,fix_price_invoices:0 msgid "Fixed Price" -msgstr "" +msgstr "Fiksna cijena" #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_date:0 @@ -548,18 +598,18 @@ msgstr "Datum posljednje izmjene/rada na ovom kontu" #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: account_analytic_analysis #: field:sale.config.settings,group_template_required:0 msgid "Mandatory use of templates." -msgstr "" +msgstr "Obvezno korištenje predložaka." #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action #: model:ir.ui.menu,name:account_analytic_analysis.menu_template_of_contract_action msgid "Contract Template" -msgstr "" +msgstr "Predložak ugovora" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -578,7 +628,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,est_total:0 msgid "Total Estimation" -msgstr "" +msgstr "Ukupna procjena" #. module: account_analytic_analysis #: field:account.analytic.account,remaining_ca:0 @@ -604,17 +654,17 @@ msgstr "Ukupno Vrijeme" #: model:res.groups,comment:account_analytic_analysis.group_template_required msgid "" "the field template of the analytic accounts and contracts will be required." -msgstr "" +msgstr "polje predložak od analitičkih konta i ugovora će biti obavezan." #. module: account_analytic_analysis #: field:account.analytic.account,invoice_on_timesheets:0 msgid "On Timesheets" -msgstr "" +msgstr "Na vremenskim listovima" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Total" -msgstr "" +msgstr "Ukupno" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Neodgovarajući XML za arhitekturu prikaza!" diff --git a/addons/account_analytic_analysis/i18n/ca.po b/addons/account_analytic_analysis/i18n/ca.po index 577b7469d76..8b54b1e2777 100644 --- a/addons/account_analytic_analysis/i18n/ca.po +++ b/addons/account_analytic_analysis/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:09+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/cs.po b/addons/account_analytic_analysis/i18n/cs.po index babe4754b5e..b74c2a0a925 100644 --- a/addons/account_analytic_analysis/i18n/cs.po +++ b/addons/account_analytic_analysis/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:09+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/da.po b/addons/account_analytic_analysis/i18n/da.po index 3fe6211e478..09685657917 100644 --- a/addons/account_analytic_analysis/i18n/da.po +++ b/addons/account_analytic_analysis/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -125,7 +125,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts that are not assigned to an account manager." -msgstr "" +msgstr "Kontrakter der ikke er tildelt en ansvarlig." #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue @@ -169,7 +169,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts not assigned" -msgstr "" +msgstr "Ikke tildelte-kontrakter" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 @@ -221,7 +221,7 @@ msgstr "" #. module: account_analytic_analysis #: model:res.groups,name:account_analytic_analysis.group_template_required msgid "Mandatory use of templates in contracts" -msgstr "" +msgstr "Tvungen brug af skabeloner ved kontrakter" #. module: account_analytic_analysis #: field:account.analytic.account,hours_quantity:0 @@ -251,7 +251,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Customer Contracts" -msgstr "" +msgstr "Kunde kontrakter" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -268,14 +268,14 @@ msgstr "Måned" #: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all msgid "Time & Materials to Invoice" -msgstr "" +msgstr "Varer og timer til fakturering" #. module: account_analytic_analysis #: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue_all #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue_all msgid "Contracts" -msgstr "" +msgstr "Kontrakter" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -389,7 +389,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contract" -msgstr "" +msgstr "Kontrakt" #. module: account_analytic_analysis #: help:sale.config.settings,group_template_required:0 @@ -502,7 +502,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue msgid "Contracts to Renew" -msgstr "" +msgstr "Kontrakter der skal fornys" #. module: account_analytic_analysis #: help:account.analytic.account,toinvoice_total:0 @@ -553,7 +553,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action #: model:ir.ui.menu,name:account_analytic_analysis.menu_template_of_contract_action msgid "Contract Template" -msgstr "" +msgstr "Kontrakt skabelon" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/de.po b/addons/account_analytic_analysis/i18n/de.po index 52012b9094d..18784635df1 100644 --- a/addons/account_analytic_analysis/i18n/de.po +++ b/addons/account_analytic_analysis/i18n/de.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "No order to invoice, create" -msgstr "Kein Auftrag abzurechnen, erstelle" +msgstr "Kein Auftrag abzurechnen, erstellen" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -110,7 +110,7 @@ msgstr "Auftragspositionen von %s" #. module: account_analytic_analysis #: help:account.analytic.account,revenue_per_hour:0 msgid "Computed using the formula: Invoiced Amount / Total Time" -msgstr "Berechnungsformel: Abgerechnete Beträge / Abgerechnete Stunden" +msgstr "Berechnungsformel: Abgerechnete Beträge / abgerechnete Stunden" #. module: account_analytic_analysis #: field:account_analytic_analysis.summary.month,account_id:0 @@ -156,8 +156,8 @@ msgstr "" "nicht mehr durch die vertraglich vereinbarte abrechenbare Arbeitszeit " "abgedeckt wird.\n" "

\n" -" OpenERP versetzt automatisch die zu erneuernden Verträge in " -"den Status Wiedervorlage. Nach der Erneuerung einer Vereinbarung sollte der " +" OpenERP setzt automatisch die zu erneuernden Verträge in den " +"Status 'Wiedervorlage'. Nach der Erneuerung einer Vereinbarung sollte der " "Verkäufer den alten Vertrag entweder abschließen oder erneuern. \n" "

\n" " " @@ -165,7 +165,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "End Date" -msgstr "Ende Datum" +msgstr "Enddatum" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -175,7 +175,7 @@ msgstr "Buchhalter" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours_to_invoice:0 msgid "Computed using the formula: Maximum Time - Total Invoiced Time" -msgstr "Berechnungsformel: Maximale Zeit - Abgerechnete Zeit" +msgstr "Berechnungsformel: Maximale Zeit - abgerechnete Zeit" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -190,7 +190,7 @@ msgstr "Nicht unterzeichnete Verträge" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 msgid "Computed using the formula: Theoretical Revenue - Total Costs" -msgstr "Berechnungsformel: Geplanter Umsatz - Gesamte Kosten" +msgstr "Berechnungsformel: Geplanter Umsatz - gesamte Kosten" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_invoiced:0 @@ -300,7 +300,7 @@ msgstr "Verträge" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Start Date" -msgstr "Start Datum" +msgstr "Startdatum" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -358,7 +358,7 @@ msgstr "Theoretische Einnahmen" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "To Renew" -msgstr "Zu Erneuern" +msgstr "Zu erneuern" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -433,7 +433,7 @@ msgid "" "Allows you to set the template field as required when creating an analytic " "account or a contract." msgstr "" -"Bei Erstellung eines Vertrags oder Projekt ist die Verwendung einer Vorlage " +"Bei Erstellung eines Vertrags oder Projekts ist die Verwendung einer Vorlage " "verpflichtend." #. module: account_analytic_analysis @@ -468,7 +468,7 @@ msgstr "" "

\n" " Klicken Sie zur Erstellung eines Vertrags.\n" "

\n" -" Setzen Sie Verträge ein, um hierüber Aufgaben, Vorfälle, " +" Setzen Sie Verträge ein, um hierüber Aufgaben, Fälle, " "Stundenzettel oder Abrechnungen \n" " geleisteter Arbeitszeiten, Personalspesen und/oder " "Verkaufsaufträge zu verfolgen. OpenERP\n" @@ -481,7 +481,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 msgid "Total to Invoice" -msgstr "Gesamt Abrechnungsbetrag" +msgstr "Gesamt-Abrechnungsbetrag" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -550,7 +550,7 @@ msgstr "Abrechnung" #. module: account_analytic_analysis #: field:account.analytic.account,total_cost:0 msgid "Total Costs" -msgstr "Gesamt Kosten" +msgstr "Gesamtkosten" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_total:0 @@ -588,7 +588,7 @@ msgstr "Summe verbleibende Abrechnung" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin:0 msgid "Computed using the formula: Invoiced Amount - Total Costs." -msgstr "Berechnungsformel: Rechnungsbetrag - Gesamt Kosten." +msgstr "Berechnungsformel: Rechnungsbetrag - Gesamtkosten." #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_est:0 @@ -632,9 +632,9 @@ msgid "" "Total of costs for this account. It includes real costs (from invoices) and " "indirect costs, like time spent on timesheets." msgstr "" -"Gesamte Kosten für dieses Konto. Hier sind integriert tatsächliche Kosten " -"(von Rechnung) sowie indirekte Kosten, wie z.B. erfasste Zeiten einer " -"Zeiterfassung." +"Gesamte Kosten für dieses Konto. Hier sind tatsächliche Kosten (von " +"Rechnung) sowie indirekte Kosten, wie z.B. erfasste Zeiten einer " +"Zeiterfassung, integriert." #. module: account_analytic_analysis #: field:account.analytic.account,est_total:0 @@ -653,7 +653,7 @@ msgid "" "the customer based on the total costs." msgstr "" "Falls eine Rechnung über Kostenstellen generiert wird, basiert der " -"verbleibende Betrag der an den Kunden weiter berechnet werden kann, auf den " +"verbleibende Betrag, der an den Kunden weiter berechnet werden kann, auf den " "gesamten Kosten." #. module: account_analytic_analysis @@ -667,13 +667,13 @@ msgstr "Gesamtzeit" msgid "" "the field template of the analytic accounts and contracts will be required." msgstr "" -"ein Auswahl für die Projekt Vorlage und Vertragseinstellungen sind " +"ein Auswahl für die Projektvorlage und Vertragseinstellungen sind " "erforderlich" #. module: account_analytic_analysis #: field:account.analytic.account,invoice_on_timesheets:0 msgid "On Timesheets" -msgstr "auf Stundenzettel" +msgstr "Auf Stundenzettel" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/el.po b/addons/account_analytic_analysis/i18n/el.po index f90616d9608..e8e94050c2e 100644 --- a/addons/account_analytic_analysis/i18n/el.po +++ b/addons/account_analytic_analysis/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/en_GB.po b/addons/account_analytic_analysis/i18n/en_GB.po index 94fd5d7b12e..e0d1ac6dbdc 100644 --- a/addons/account_analytic_analysis/i18n/en_GB.po +++ b/addons/account_analytic_analysis/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es.po b/addons/account_analytic_analysis/i18n/es.po index a4c696d38fb..29c912bef1d 100644 --- a/addons/account_analytic_analysis/i18n/es.po +++ b/addons/account_analytic_analysis/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po index f0392fdb515..cfec0ac04db 100644 --- a/addons/account_analytic_analysis/i18n/es_AR.po +++ b/addons/account_analytic_analysis/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_CR.po b/addons/account_analytic_analysis/i18n/es_CR.po index 707d6f7b810..1fffdaa81ff 100644 --- a/addons/account_analytic_analysis/i18n/es_CR.po +++ b/addons/account_analytic_analysis/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/es_EC.po b/addons/account_analytic_analysis/i18n/es_EC.po index 98544eb8a5a..242b83c9957 100644 --- a/addons/account_analytic_analysis/i18n/es_EC.po +++ b/addons/account_analytic_analysis/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_MX.po b/addons/account_analytic_analysis/i18n/es_MX.po index 45b36f417f2..db272b35812 100644 --- a/addons/account_analytic_analysis/i18n/es_MX.po +++ b/addons/account_analytic_analysis/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_PY.po b/addons/account_analytic_analysis/i18n/es_PY.po index 07d7392b025..7170700c745 100644 --- a/addons/account_analytic_analysis/i18n/es_PY.po +++ b/addons/account_analytic_analysis/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/et.po b/addons/account_analytic_analysis/i18n/et.po index 628e876abd4..f2296e1b03b 100644 --- a/addons/account_analytic_analysis/i18n/et.po +++ b/addons/account_analytic_analysis/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fa.po b/addons/account_analytic_analysis/i18n/fa.po index 738b43e3907..c3ccf1ef5a4 100644 --- a/addons/account_analytic_analysis/i18n/fa.po +++ b/addons/account_analytic_analysis/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po index fab530441fe..4582b2d013b 100644 --- a/addons/account_analytic_analysis/i18n/fi.po +++ b/addons/account_analytic_analysis/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgstr "Asiakkaiden kokonaislaskutuksen määrä tälle tilille." #. module: account_analytic_analysis #: help:account.analytic.account,timesheet_ca_invoiced:0 msgid "Sum of timesheet lines invoiced for this contract." -msgstr "" +msgstr "Tällä sopimuksella laskutettujen tuntikorttirivien määrä" #. module: account_analytic_analysis #: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 @@ -110,7 +110,7 @@ msgstr "" #. module: account_analytic_analysis #: help:account.analytic.account,revenue_per_hour:0 msgid "Computed using the formula: Invoiced Amount / Total Time" -msgstr "" +msgstr "Laskettu käyttäen kaavaa: Laskutettu määrä / Kokonaisaika" #. module: account_analytic_analysis #: field:account_analytic_analysis.summary.month,account_id:0 @@ -161,7 +161,7 @@ msgstr "" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours_to_invoice:0 msgid "Computed using the formula: Maximum Time - Total Invoiced Time" -msgstr "" +msgstr "Laskettu käyttäen kaavaa: Maksimiaika - Laskutettu kokonaisaika" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -181,7 +181,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_invoiced:0 msgid "Invoiced Time" -msgstr "" +msgstr "Laskutettu aika" #. module: account_analytic_analysis #: field:account.analytic.account,fix_price_to_invoice:0 @@ -206,7 +206,7 @@ msgstr "Toteutunut kate (%)" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours:0 msgid "Computed using the formula: Maximum Time - Total Worked Time" -msgstr "" +msgstr "Laskettu käyttäen kaavaa: Kokonaisaika - Kokonaistyöaika" #. module: account_analytic_analysis #: help:account.analytic.account,hours_quantity:0 @@ -228,7 +228,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,hours_quantity:0 msgid "Total Worked Time" -msgstr "" +msgstr "Kokonaistyöaika" #. module: account_analytic_analysis #: field:account.analytic.account,real_margin:0 @@ -271,7 +271,7 @@ msgstr "Kuukausi" #: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all msgid "Time & Materials to Invoice" -msgstr "" +msgstr "Laskutettava aika ja materiaali" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -307,7 +307,7 @@ msgstr "Asiakkaan kanssa uusittavat odottavat sopimukset" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Timesheets" -msgstr "" +msgstr "Tuntikortit" #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_non_invoiced:0 @@ -415,7 +415,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,revenue_per_hour:0 msgid "Revenue per Time (real)" -msgstr "" +msgstr "Tulo per todellinen aika" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue_all @@ -432,6 +432,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodakasesi uuden sopimuksen.\n" +"

\n" +" Käytä sopimuksia seurataksesi tehtäviä, asioita, " +"työkortteja tai laskuttaaksesi \n" +" tehdyt työt, kulut ja/tai myyntitilaukset. OpenERP " +"hallitsee automaattisesti\n" +" sopimuksen uusinnasta hälytykset oikealle myyjälle.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 @@ -485,7 +495,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 msgid "Uninvoiced Time" -msgstr "" +msgstr "Laskuttamaton aika" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -610,7 +620,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,invoice_on_timesheets:0 msgid "On Timesheets" -msgstr "" +msgstr "Työkorteilla" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po index f5ca9bf5fe2..9d740c71a62 100644 --- a/addons/account_analytic_analysis/i18n/fr.po +++ b/addons/account_analytic_analysis/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/gl.po b/addons/account_analytic_analysis/i18n/gl.po index 898a80dd6aa..f0c1e2f25e6 100644 --- a/addons/account_analytic_analysis/i18n/gl.po +++ b/addons/account_analytic_analysis/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/gu.po b/addons/account_analytic_analysis/i18n/gu.po index a78a554a27f..9ed1ac877cd 100644 --- a/addons/account_analytic_analysis/i18n/gu.po +++ b/addons/account_analytic_analysis/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/hr.po b/addons/account_analytic_analysis/i18n/hr.po index aa288518284..644dda01e08 100644 --- a/addons/account_analytic_analysis/i18n/hr.po +++ b/addons/account_analytic_analysis/i18n/hr.po @@ -13,13 +13,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "No order to invoice, create" -msgstr "" +msgstr "Nema naloga za fakturiranje, stvori" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -78,7 +78,7 @@ msgstr "⇒ račun" #. module: account_analytic_analysis #: field:account.analytic.account,ca_invoiced:0 msgid "Invoiced Amount" -msgstr "Iznos na računu" +msgstr "Fakturirani iznos" #. module: account_analytic_analysis #: field:account.analytic.account,last_worked_invoiced_date:0 @@ -88,7 +88,7 @@ msgstr "Zadnje fakturiranje troška" #. module: account_analytic_analysis #: help:account.analytic.account,fix_price_to_invoice:0 msgid "Sum of quotations for this contract." -msgstr "" +msgstr "Suma ponuda za ovaj ugovor" #. module: account_analytic_analysis #: help:account.analytic.account,ca_invoiced:0 @@ -98,25 +98,25 @@ msgstr "Ukupno fakturirani iznos." #. module: account_analytic_analysis #: help:account.analytic.account,timesheet_ca_invoiced:0 msgid "Sum of timesheet lines invoiced for this contract." -msgstr "" +msgstr "Suma stavaka kontrole kartice fakturiranih za ovaj ugovor." #. module: account_analytic_analysis #: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" -msgstr "" +msgstr "Stavke prodajnog naloga od %s" #. module: account_analytic_analysis #: help:account.analytic.account,revenue_per_hour:0 msgid "Computed using the formula: Invoiced Amount / Total Time" -msgstr "" +msgstr "Izračunato korištenjem formule: fakturirani iznos / ukupno vrijeme" #. module: account_analytic_analysis #: field:account_analytic_analysis.summary.month,account_id:0 #: field:account_analytic_analysis.summary.user,account_id:0 #: model:ir.model,name:account_analytic_analysis.model_account_analytic_account msgid "Analytic Account" -msgstr "Konto analitike" +msgstr "Analitički konto" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -126,7 +126,7 @@ msgstr "Partner" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts that are not assigned to an account manager." -msgstr "" +msgstr "Ugovori koji nisu pridruženi manageru klijenta" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue @@ -146,6 +146,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za definiranje novog ugovora.\n" +"

\n" +" Ovdje se nalaze ugovori koje bi trebalo obnoviti\n" +" jer je prošao datum završetka.\n" +"

\n" +" OpenERP automatski postavlja ugovore koji se trebaju " +"obnaviti u status 'na čekanju'. \n" +" Nakon pregovora, prodavač bi trebao zatvoriti ili obnoviti " +"ugovore na čekanju.\n" +" state. \n" +"

\n" +" " #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -155,12 +168,12 @@ msgstr "Datum završetka" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Account Manager" -msgstr "" +msgstr "Manager zadužen za klijenta" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours_to_invoice:0 msgid "Computed using the formula: Maximum Time - Total Invoiced Time" -msgstr "" +msgstr "Izračunato kao: maksimalno vrijeme - ukupno fakturirano vrijeme" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -170,17 +183,17 @@ msgstr "Očekivano" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts not assigned" -msgstr "" +msgstr "Ugovori koji nisu dodijeljeni" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 msgid "Computed using the formula: Theoretical Revenue - Total Costs" -msgstr "" +msgstr "Izračunato kao: Teoretski prihod - ukupni trošak" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_invoiced:0 msgid "Invoiced Time" -msgstr "" +msgstr "Fakturirano vrijeme" #. module: account_analytic_analysis #: field:account.analytic.account,fix_price_to_invoice:0 @@ -196,6 +209,8 @@ msgid "" "{'required': [('type','=','contract')], 'invisible': [('type','in',['view', " "'normal','template'])]}" msgstr "" +"{'required': [('type','=','contract')], 'invisible': [('type','in',['view', " +"'normal','template'])]}" #. module: account_analytic_analysis #: field:account.analytic.account,real_margin_rate:0 @@ -205,29 +220,29 @@ msgstr "Realna marža(%)" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours:0 msgid "Computed using the formula: Maximum Time - Total Worked Time" -msgstr "" +msgstr "Izračunato kao: maksimalno vrijeme - ukupno odrađeno vrijeme" #. module: account_analytic_analysis #: help:account.analytic.account,hours_quantity:0 msgid "" "Number of time you spent on the analytic account (from timesheet). It " "computes quantities on all journal of type 'general'." -msgstr "" +msgstr "Vrijeme provedeno na analitičkom računu (iz evidencije rada)." #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Nothing to invoice, create" -msgstr "" +msgstr "Ništa za fakturiranje, stvori" #. module: account_analytic_analysis #: model:res.groups,name:account_analytic_analysis.group_template_required msgid "Mandatory use of templates in contracts" -msgstr "" +msgstr "Obvezno korištenje predložaka u ugovorima" #. module: account_analytic_analysis #: field:account.analytic.account,hours_quantity:0 msgid "Total Worked Time" -msgstr "" +msgstr "Ukupno odrađeno vrijeme" #. module: account_analytic_analysis #: field:account.analytic.account,real_margin:0 @@ -242,17 +257,17 @@ msgstr "Uk. sati po mjesecima" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin_rate:0 msgid "Computes using the formula: (Real Margin / Total Costs) * 100." -msgstr "Computes using the formula: (Real Margin / Total Costs) * 100." +msgstr "Izračunato kao: (realna marža / ukupni trošak) * 100" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "or view" -msgstr "" +msgstr "ili pogled" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Customer Contracts" -msgstr "" +msgstr "Ugovori s kupcima" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -269,7 +284,7 @@ msgstr "Mjesec" #: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all msgid "Time & Materials to Invoice" -msgstr "" +msgstr "Vrijeme i materijali za fakturiranje" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -303,7 +318,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Timesheets" -msgstr "" +msgstr "Evidencija rada" #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_non_invoiced:0 @@ -311,6 +326,8 @@ msgid "" "Number of time (hours/days) (from journal of type 'general') that can be " "invoiced if you invoice based on analytic account." msgstr "" +"Vrijeme (sati / dani) (iz dnevnika tipa 'općenito') koje se može fakturirati " +"ako se fakturira na temelju analitičkog konta." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -320,7 +337,7 @@ msgstr "Na čekanju" #. module: account_analytic_analysis #: field:account.analytic.account,is_overdue_quantity:0 msgid "Overdue Quantity" -msgstr "" +msgstr "Zakašnjela količina" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -352,7 +369,7 @@ msgstr "Prodajni nalozi" #. module: account_analytic_analysis #: help:account.analytic.account,last_invoice_date:0 msgid "If invoice from the costs, this is the date of the latest invoiced." -msgstr "" +msgstr "Ako je akturirano iz troškova, ovo je datum zadnje fakturiranog." #. module: account_analytic_analysis #: help:account.analytic.account,ca_theorical:0 @@ -383,6 +400,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite ovdje da biste stvorili predložak ugovora.\n" +"

\n" +" Predlošci se koriste kako bi unaprijed postavili ugovor " +"/ projekt koji\n" +" prodavač može odabrati da bi brzo podesio \n" +" uvjete ugovora.\n" +"

\n" +" " #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user @@ -400,6 +426,8 @@ msgid "" "Allows you to set the template field as required when creating an analytic " "account or a contract." msgstr "" +"Omogućuje vam da postavite polje predloška kao obvezno prilikom izrade " +"analitičkog konta ili ugovora." #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_invoiced:0 @@ -407,11 +435,13 @@ msgid "" "Number of time (hours/days) that can be invoiced plus those that already " "have been invoiced." msgstr "" +"Vrijeme (sati / dani) koje se može fakturirati plus ono koje je već " +"fakturirano." #. module: account_analytic_analysis #: field:account.analytic.account,revenue_per_hour:0 msgid "Revenue per Time (real)" -msgstr "" +msgstr "Prihodi po vremenu (realni)" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue_all @@ -428,11 +458,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za stvaranje novog ugovora.\n" +"

\n" +" Koristite ugovore za praćenje zadataka, pitanja, " +"evidencije rada ili fakturiranja na temelju\n" +" obavljenog posla, troškova i/ili prodajnih naloga. \n" +" OpenERP će automatski upravljati upozorenjima za obnovu " +"ugovora dodijeljenom prodavaču.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 msgid "Total to Invoice" -msgstr "" +msgstr "Ukupno za fakturirati" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -452,7 +492,7 @@ msgstr "Ukupno fakturirano" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_ca:0 msgid "Computed using the formula: Max Invoice Price - Invoiced Amount." -msgstr "Izračun: Max. cijena računa - Fakturirani iznos." +msgstr "Izračun: Max. cijena računa - fakturirani iznos." #. module: account_analytic_analysis #: field:account.analytic.account,last_invoice_date:0 @@ -462,7 +502,7 @@ msgstr "Zadnji datum računa" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Units Remaining" -msgstr "" +msgstr "Preostalo jedinica" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_hr_tree_invoiced_all @@ -477,11 +517,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Ovdje ćete pronaći evidencije rada i nabave koje ste obavili " +"za\n" +" ugovore i koji se mogu prefakturirati klijentu. Ako pak " +"želite\n" +" zapisati nove aktivnosti koje će se fakturirati, trebali bi " +"umjesto ovog\n" +" koristiti meni evidencije rada.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 msgid "Uninvoiced Time" -msgstr "" +msgstr "Nefakturirano vrijeme" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -500,63 +550,66 @@ msgid "" "remaining subtotals which, in turn, are computed as the maximum between " "'(Estimation - Invoiced)' and 'To Invoice' amounts" msgstr "" +"Procjena preostalog prihoda za ovaj ugovor. Izračunava kao zbroj preostalih " +"podzbrojeva koji se, pak, računaju se kao maksimum između '(procjena - " +"fakturirana)' i 'za fakturirati' iznose" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue msgid "Contracts to Renew" -msgstr "" +msgstr "Ugovori za obnoviti" #. module: account_analytic_analysis #: help:account.analytic.account,toinvoice_total:0 msgid " Sum of everything that could be invoiced for this contract." -msgstr "" +msgstr " Suma svega što se može fakturirati za ovaj ugovor." #. module: account_analytic_analysis #: field:account.analytic.account,theorical_margin:0 msgid "Theoretical Margin" -msgstr "Teoretski iznos" +msgstr "Teoretska marža" #. module: account_analytic_analysis #: field:account.analytic.account,remaining_total:0 msgid "Total Remaining" -msgstr "" +msgstr "Ukupno preostalo" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin:0 msgid "Computed using the formula: Invoiced Amount - Total Costs." -msgstr "Izračun: Iznos računa - Ukupni troškovi." +msgstr "Izračunato kao: fakturirani iznos - ukupni troškovi." #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_est:0 msgid "Estimation of Hours to Invoice" -msgstr "" +msgstr "Procjena sati za fakturiranje" #. module: account_analytic_analysis #: field:account.analytic.account,fix_price_invoices:0 msgid "Fixed Price" -msgstr "" +msgstr "Fiksna cijena" #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_date:0 msgid "Date of the latest work done on this account." -msgstr "Datum najnovijeg rada obavljenog na ovom računu." +msgstr "Datum najnovijeg rada obavljenog na ovom kontu." #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: account_analytic_analysis #: field:sale.config.settings,group_template_required:0 msgid "Mandatory use of templates." -msgstr "" +msgstr "Obvezno korištenje predložaka." #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action #: model:ir.ui.menu,name:account_analytic_analysis.menu_template_of_contract_action msgid "Contract Template" -msgstr "" +msgstr "Predložak ugovora" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -575,7 +628,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,est_total:0 msgid "Total Estimation" -msgstr "" +msgstr "Ukupna procjena" #. module: account_analytic_analysis #: field:account.analytic.account,remaining_ca:0 @@ -601,17 +654,17 @@ msgstr "Ukupno vrijeme" #: model:res.groups,comment:account_analytic_analysis.group_template_required msgid "" "the field template of the analytic accounts and contracts will be required." -msgstr "" +msgstr "polje predložak od analitičkih konta i ugovora će biti obavezan." #. module: account_analytic_analysis #: field:account.analytic.account,invoice_on_timesheets:0 msgid "On Timesheets" -msgstr "" +msgstr "Na evidenciji rada" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Total" -msgstr "" +msgstr "Ukupno" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Neispravan XML za arhitekturu prikaza!" diff --git a/addons/account_analytic_analysis/i18n/hu.po b/addons/account_analytic_analysis/i18n/hu.po index 0f0e331986c..927e0c06319 100644 --- a/addons/account_analytic_analysis/i18n/hu.po +++ b/addons/account_analytic_analysis/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -476,6 +476,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új szerződés létrehozásához.\n" +"

\n" +" Használja a szerződéseket az elvégzett feladat, költség " +"és/vagy megrendelés alapján egy \n" +" feladat, ügy, időkimutatás vagy számlázás nyomon " +"követéséhez. OpenERP automatikusan felügyeli\n" +" a szerződés megújítására szóló riasztásokat, a megfelelő " +"értékesítő számára.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 @@ -527,6 +538,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Itt találja a szerződéséhez tartozó időbeosztást és " +"beszerzéseket,\n" +" melyeket újra számlázhat az ügyfél részére. Ha új " +"tevékenységet\n" +" szeretne felvinni a számlára, akkor inkább használja az " +"időbeosztás\n" +" menüt.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 @@ -550,6 +571,9 @@ msgid "" "remaining subtotals which, in turn, are computed as the maximum between " "'(Estimation - Invoiced)' and 'To Invoice' amounts" msgstr "" +"Lehetséges maradvány bevétel erre a szerződésre. A maradvány összértékből " +"számítva, ami folyamatosan számítva, a '(Becsült - Számlázott)' és " +"'Számlázandó' értékek közötti maximumból számított érték" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue diff --git a/addons/account_analytic_analysis/i18n/id.po b/addons/account_analytic_analysis/i18n/id.po index 05e41479d5c..1616a674ecb 100644 --- a/addons/account_analytic_analysis/i18n/id.po +++ b/addons/account_analytic_analysis/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po index 5da1aa7d8c6..0eb1d4462a2 100644 --- a/addons/account_analytic_analysis/i18n/it.po +++ b/addons/account_analytic_analysis/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ja.po b/addons/account_analytic_analysis/i18n/ja.po index 70e22c17e45..32ca5dd14e6 100644 --- a/addons/account_analytic_analysis/i18n/ja.po +++ b/addons/account_analytic_analysis/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -30,12 +30,12 @@ msgstr "グループ化…" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "To Invoice" -msgstr "" +msgstr "請求対象" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Remaining" -msgstr "" +msgstr "残余" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -115,7 +115,7 @@ msgstr "式を使った計算:請求金額 / 合計時間" #: field:account_analytic_analysis.summary.user,account_id:0 #: model:ir.model,name:account_analytic_analysis.model_account_analytic_account msgid "Analytic Account" -msgstr "分析アカウント" +msgstr "分析勘定" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -164,7 +164,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Expected" -msgstr "" +msgstr "見込" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -285,7 +285,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Invoiced" -msgstr "" +msgstr "請求済" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -483,7 +483,7 @@ msgstr "未請求時間" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Invoicing" -msgstr "" +msgstr "請求方針" #. module: account_analytic_analysis #: field:account.analytic.account,total_cost:0 @@ -502,7 +502,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue #: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue msgid "Contracts to Renew" -msgstr "更新契約" +msgstr "要更新契約" #. module: account_analytic_analysis #: help:account.analytic.account,toinvoice_total:0 @@ -532,7 +532,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,fix_price_invoices:0 msgid "Fixed Price" -msgstr "" +msgstr "固定金額" #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_date:0 @@ -599,12 +599,12 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,invoice_on_timesheets:0 msgid "On Timesheets" -msgstr "" +msgstr "タイムシート基準" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Total" -msgstr "" +msgstr "合計" #, python-format #~ msgid "AccessError" diff --git a/addons/account_analytic_analysis/i18n/ko.po b/addons/account_analytic_analysis/i18n/ko.po index 5980a7c3890..9c7fb029c56 100644 --- a/addons/account_analytic_analysis/i18n/ko.po +++ b/addons/account_analytic_analysis/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/lt.po b/addons/account_analytic_analysis/i18n/lt.po index 3b8f84a1140..0214805e77e 100644 --- a/addons/account_analytic_analysis/i18n/lt.po +++ b/addons/account_analytic_analysis/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/lv.po b/addons/account_analytic_analysis/i18n/lv.po index 68cca550a15..c4f8aaccf6b 100644 --- a/addons/account_analytic_analysis/i18n/lv.po +++ b/addons/account_analytic_analysis/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/mk.po b/addons/account_analytic_analysis/i18n/mk.po index 9401b80bd02..84a134f09bb 100644 --- a/addons/account_analytic_analysis/i18n/mk.po +++ b/addons/account_analytic_analysis/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/mn.po b/addons/account_analytic_analysis/i18n/mn.po index a52203a03c8..b0857b36448 100644 --- a/addons/account_analytic_analysis/i18n/mn.po +++ b/addons/account_analytic_analysis/i18n/mn.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nb.po b/addons/account_analytic_analysis/i18n/nb.po index 526287b6e85..bc571a5fab4 100644 --- a/addons/account_analytic_analysis/i18n/nb.po +++ b/addons/account_analytic_analysis/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nl.po b/addons/account_analytic_analysis/i18n/nl.po index ff7ac1d8d6a..86b155bc426 100644 --- a/addons/account_analytic_analysis/i18n/nl.po +++ b/addons/account_analytic_analysis/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -228,7 +228,7 @@ msgstr "Werkelijke marge (%)" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours:0 msgid "Computed using the formula: Maximum Time - Total Worked Time" -msgstr "Berekend met de formule: Maximun tijd - Totaal gewerkte tijd" +msgstr "Berekend met de formule: Maximum tijd - Totaal gewerkte tijd" #. module: account_analytic_analysis #: help:account.analytic.account,hours_quantity:0 @@ -583,7 +583,7 @@ msgstr "Te vernieuwen contracten" #: help:account.analytic.account,toinvoice_total:0 msgid " Sum of everything that could be invoiced for this contract." msgstr "" -" Totaal van alles wat gefactureerd zou kunnen worden op dit contrcat." +" Totaal van alles wat gefactureerd zou kunnen worden op dit contract." #. module: account_analytic_analysis #: field:account.analytic.account,theorical_margin:0 diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po index e350a84f297..9c1359a348f 100644 --- a/addons/account_analytic_analysis/i18n/nl_BE.po +++ b/addons/account_analytic_analysis/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/oc.po b/addons/account_analytic_analysis/i18n/oc.po index 1c5f1159541..c329412e731 100644 --- a/addons/account_analytic_analysis/i18n/oc.po +++ b/addons/account_analytic_analysis/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pl.po b/addons/account_analytic_analysis/i18n/pl.po index 716e4a89fa1..5ea106e9864 100644 --- a/addons/account_analytic_analysis/i18n/pl.po +++ b/addons/account_analytic_analysis/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -107,7 +107,7 @@ msgstr "Suma pozycji kart czasu pracy zafakturowanych dla tej umowy." #: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" -msgstr "" +msgstr "Zlecenie sprzedaży %s" #. module: account_analytic_analysis #: help:account.analytic.account,revenue_per_hour:0 @@ -124,7 +124,7 @@ msgstr "Konto analityczne" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Partner" -msgstr "" +msgstr "Kontrahent" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -169,7 +169,7 @@ msgstr "Data Końcowa" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Account Manager" -msgstr "" +msgstr "Zarządzający kontem" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours_to_invoice:0 @@ -268,7 +268,7 @@ msgstr "lub widok" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Customer Contracts" -msgstr "" +msgstr "Umowy z klientami" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -504,7 +504,7 @@ msgstr "Data ostatniej faktury" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Units Remaining" -msgstr "" +msgstr "Pozostałe jednostki" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_hr_tree_invoiced_all @@ -609,7 +609,7 @@ msgstr "Obowiązkowe stosowanie szablonów" #: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action #: model:ir.ui.menu,name:account_analytic_analysis.menu_template_of_contract_action msgid "Contract Template" -msgstr "" +msgstr "Szablon umowy" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pt.po b/addons/account_analytic_analysis/i18n/pt.po index fe169110433..5e6a3125c39 100644 --- a/addons/account_analytic_analysis/i18n/pt.po +++ b/addons/account_analytic_analysis/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index 3bbcd2446a6..133a819af4f 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-21 23:04+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ro.po b/addons/account_analytic_analysis/i18n/ro.po index 2ff56365ac8..fb400013215 100644 --- a/addons/account_analytic_analysis/i18n/ro.po +++ b/addons/account_analytic_analysis/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ru.po b/addons/account_analytic_analysis/i18n/ru.po index 6cfc0a626e8..7e298693cc8 100644 --- a/addons/account_analytic_analysis/i18n/ru.po +++ b/addons/account_analytic_analysis/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sk.po b/addons/account_analytic_analysis/i18n/sk.po new file mode 100644 index 00000000000..8e23b25ce5c --- /dev/null +++ b/addons/account_analytic_analysis/i18n/sk.po @@ -0,0 +1,607 @@ +# Slovak translation for openobject-addons +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2014. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"PO-Revision-Date: 2014-01-04 11:30+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: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "No order to invoice, create" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Group By..." +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "To Invoice" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Remaining" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Contracts in progress" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,last_worked_invoiced_date:0 +msgid "" +"If invoice from the costs, this is the date of the latest work or cost that " +"have been invoiced." +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,last_worked_date:0 +msgid "Date of Last Cost/Work" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,ca_to_invoice:0 +msgid "Uninvoiced Amount" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "" +"When invoicing on timesheet, OpenERP uses the\n" +" pricelist of the contract which uses the price\n" +" defined on the product related to each employee " +"to\n" +" define the customer invoice price rate." +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "⇒ Invoice" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,ca_invoiced:0 +msgid "Invoiced Amount" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,last_worked_invoiced_date:0 +msgid "Date of Last Invoiced Cost" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,fix_price_to_invoice:0 +msgid "Sum of quotations for this contract." +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,ca_invoiced:0 +msgid "Total customer invoiced amount for this account." +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,timesheet_ca_invoiced:0 +msgid "Sum of timesheet lines invoiced for this contract." +msgstr "" + +#. module: account_analytic_analysis +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 +#, python-format +msgid "Sales Order Lines of %s" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,revenue_per_hour:0 +msgid "Computed using the formula: Invoiced Amount / Total Time" +msgstr "" + +#. module: account_analytic_analysis +#: field:account_analytic_analysis.summary.month,account_id:0 +#: field:account_analytic_analysis.summary.user,account_id:0 +#: model:ir.model,name:account_analytic_analysis.model_account_analytic_account +msgid "Analytic Account" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Partner" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Contracts that are not assigned to an account manager." +msgstr "" + +#. module: account_analytic_analysis +#: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue +msgid "" +"

\n" +" Click to define a new contract.\n" +"

\n" +" You will find here the contracts to be renewed because the\n" +" end date is passed or the working effort is higher than the\n" +" maximum authorized one.\n" +"

\n" +" OpenERP automatically sets contracts to be renewed in a " +"pending\n" +" state. After the negociation, the salesman should close or " +"renew\n" +" pending contracts.\n" +"

\n" +" " +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "End Date" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Account Manager" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,remaining_hours_to_invoice:0 +msgid "Computed using the formula: Maximum Time - Total Invoiced Time" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Expected" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Contracts not assigned" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,theorical_margin:0 +msgid "Computed using the formula: Theoretical Revenue - Total Costs" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,hours_qtt_invoiced:0 +msgid "Invoiced Time" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,fix_price_to_invoice:0 +#: field:account.analytic.account,remaining_hours:0 +#: field:account.analytic.account,remaining_hours_to_invoice:0 +#: field:account.analytic.account,timesheet_ca_invoiced:0 +msgid "Remaining Time" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "" +"{'required': [('type','=','contract')], 'invisible': [('type','in',['view', " +"'normal','template'])]}" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,real_margin_rate:0 +msgid "Real Margin Rate (%)" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,remaining_hours:0 +msgid "Computed using the formula: Maximum Time - Total Worked Time" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,hours_quantity:0 +msgid "" +"Number of time you spent on the analytic account (from timesheet). It " +"computes quantities on all journal of type 'general'." +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Nothing to invoice, create" +msgstr "" + +#. module: account_analytic_analysis +#: model:res.groups,name:account_analytic_analysis.group_template_required +msgid "Mandatory use of templates in contracts" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,hours_quantity:0 +msgid "Total Worked Time" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,real_margin:0 +msgid "Real Margin" +msgstr "" + +#. module: account_analytic_analysis +#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_month +msgid "Hours summary by month" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,real_margin_rate:0 +msgid "Computes using the formula: (Real Margin / Total Costs) * 100." +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "or view" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Customer Contracts" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Parent" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,month_ids:0 +#: field:account_analytic_analysis.summary.month,month:0 +msgid "Month" +msgstr "" + +#. module: account_analytic_analysis +#: model:ir.actions.act_window,name:account_analytic_analysis.action_hr_tree_invoiced_all +#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_hr_tree_invoiced_all +msgid "Time & Materials to Invoice" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue_all +#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue_all +msgid "Contracts" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Start Date" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Invoiced" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "" +"The contracts to be renewed because the deadline is passed or the working " +"hours are higher than the allocated hours" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Pending contracts to renew with your customer" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Timesheets" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,hours_qtt_non_invoiced:0 +msgid "" +"Number of time (hours/days) (from journal of type 'general') that can be " +"invoiced if you invoice based on analytic account." +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Pending" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,is_overdue_quantity:0 +msgid "Overdue Quantity" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Status" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,ca_theorical:0 +msgid "Theoretical Revenue" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "To Renew" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "" +"A contract in OpenERP is an analytic account having a partner set on it." +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +#: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order +msgid "Sales Orders" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,last_invoice_date:0 +msgid "If invoice from the costs, this is the date of the latest invoiced." +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,ca_theorical:0 +msgid "" +"Based on the costs you had on the project, what would have been the revenue " +"if all these costs have been invoiced at the normal sale price provided by " +"the pricelist." +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,user_ids:0 +#: field:account_analytic_analysis.summary.user,user:0 +msgid "User" +msgstr "" + +#. module: account_analytic_analysis +#: model:ir.actions.act_window,help:account_analytic_analysis.template_of_contract_action +msgid "" +"

\n" +" Click here to create a template of contract.\n" +"

\n" +" Templates are used to prefigure contract/project that \n" +" can be selected by the salespeople to quickly configure " +"the\n" +" terms and conditions of the contract.\n" +"

\n" +" " +msgstr "" + +#. module: account_analytic_analysis +#: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user +msgid "Hours Summary by User" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Contract" +msgstr "" + +#. module: account_analytic_analysis +#: help:sale.config.settings,group_template_required:0 +msgid "" +"Allows you to set the template field as required when creating an analytic " +"account or a contract." +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,hours_qtt_invoiced:0 +msgid "" +"Number of time (hours/days) that can be invoiced plus those that already " +"have been invoiced." +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,revenue_per_hour:0 +msgid "Revenue per Time (real)" +msgstr "" + +#. module: account_analytic_analysis +#: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue_all +msgid "" +"

\n" +" Click to create a new contract.\n" +"

\n" +" Use contracts to follow tasks, issues, timesheets or " +"invoicing based on\n" +" work done, expenses and/or sales orders. OpenERP will " +"automatically manage\n" +" the alerts for the renewal of the contracts to the right " +"salesperson.\n" +"

\n" +" " +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,toinvoice_total:0 +msgid "Total to Invoice" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Sale Orders" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Open" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,invoiced_total:0 +msgid "Total Invoiced" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,remaining_ca:0 +msgid "Computed using the formula: Max Invoice Price - Invoiced Amount." +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,last_invoice_date:0 +msgid "Last Invoice Date" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Units Remaining" +msgstr "" + +#. module: account_analytic_analysis +#: model:ir.actions.act_window,help:account_analytic_analysis.action_hr_tree_invoiced_all +msgid "" +"

\n" +" You will find here timesheets and purchases you did for\n" +" contracts that can be reinvoiced to the customer. If you " +"want\n" +" to record new activities to invoice, you should use the " +"timesheet\n" +" menu instead.\n" +"

\n" +" " +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,hours_qtt_non_invoiced:0 +msgid "Uninvoiced Time" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Invoicing" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,total_cost:0 +msgid "Total Costs" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,remaining_total:0 +msgid "" +"Expectation of remaining income for this contract. Computed as the sum of " +"remaining subtotals which, in turn, are computed as the maximum between " +"'(Estimation - Invoiced)' and 'To Invoice' amounts" +msgstr "" + +#. module: account_analytic_analysis +#: model:ir.actions.act_window,name:account_analytic_analysis.action_account_analytic_overdue +#: model:ir.ui.menu,name:account_analytic_analysis.menu_action_account_analytic_overdue +msgid "Contracts to Renew" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,toinvoice_total:0 +msgid " Sum of everything that could be invoiced for this contract." +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,theorical_margin:0 +msgid "Theoretical Margin" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,remaining_total:0 +msgid "Total Remaining" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,real_margin:0 +msgid "Computed using the formula: Invoiced Amount - Total Costs." +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,hours_qtt_est:0 +msgid "Estimation of Hours to Invoice" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,fix_price_invoices:0 +msgid "Fixed Price" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,last_worked_date:0 +msgid "Date of the latest work done on this account." +msgstr "" + +#. module: account_analytic_analysis +#: model:ir.model,name:account_analytic_analysis.model_sale_config_settings +msgid "sale.config.settings" +msgstr "" + +#. module: account_analytic_analysis +#: field:sale.config.settings,group_template_required:0 +msgid "Mandatory use of templates." +msgstr "" + +#. module: account_analytic_analysis +#: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action +#: model:ir.ui.menu,name:account_analytic_analysis.menu_template_of_contract_action +msgid "Contract Template" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Units Done" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,total_cost:0 +msgid "" +"Total of costs for this account. It includes real costs (from invoices) and " +"indirect costs, like time spent on timesheets." +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,est_total:0 +msgid "Total Estimation" +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,remaining_ca:0 +msgid "Remaining Revenue" +msgstr "" + +#. module: account_analytic_analysis +#: help:account.analytic.account,ca_to_invoice:0 +msgid "" +"If invoice from analytic account, the remaining amount you can invoice to " +"the customer based on the total costs." +msgstr "" + +#. module: account_analytic_analysis +#: field:account_analytic_analysis.summary.month,unit_amount:0 +#: field:account_analytic_analysis.summary.user,unit_amount:0 +msgid "Total Time" +msgstr "" + +#. module: account_analytic_analysis +#: model:res.groups,comment:account_analytic_analysis.group_template_required +msgid "" +"the field template of the analytic accounts and contracts will be required." +msgstr "" + +#. module: account_analytic_analysis +#: field:account.analytic.account,invoice_on_timesheets:0 +msgid "On Timesheets" +msgstr "" + +#. module: account_analytic_analysis +#: view:account.analytic.account:0 +msgid "Total" +msgstr "" diff --git a/addons/account_analytic_analysis/i18n/sl.po b/addons/account_analytic_analysis/i18n/sl.po index 8c8e132955b..85c4155db5d 100644 --- a/addons/account_analytic_analysis/i18n/sl.po +++ b/addons/account_analytic_analysis/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sq.po b/addons/account_analytic_analysis/i18n/sq.po index df82a769628..fe9ef405b09 100644 --- a/addons/account_analytic_analysis/i18n/sq.po +++ b/addons/account_analytic_analysis/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:46+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:09+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sr.po b/addons/account_analytic_analysis/i18n/sr.po index e8d4b5f6700..91d7212e004 100644 --- a/addons/account_analytic_analysis/i18n/sr.po +++ b/addons/account_analytic_analysis/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sr@latin.po b/addons/account_analytic_analysis/i18n/sr@latin.po index 16273864fc3..044861c1feb 100644 --- a/addons/account_analytic_analysis/i18n/sr@latin.po +++ b/addons/account_analytic_analysis/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sv.po b/addons/account_analytic_analysis/i18n/sv.po index 92e05d87295..5951bd745a0 100644 --- a/addons/account_analytic_analysis/i18n/sv.po +++ b/addons/account_analytic_analysis/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/tlh.po b/addons/account_analytic_analysis/i18n/tlh.po index 75b9dafb89b..dfaf60ffa97 100644 --- a/addons/account_analytic_analysis/i18n/tlh.po +++ b/addons/account_analytic_analysis/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po index 6feb4c6d882..5500f543676 100644 --- a/addons/account_analytic_analysis/i18n/tr.po +++ b/addons/account_analytic_analysis/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -242,12 +242,12 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Nothing to invoice, create" -msgstr "Faturalanacak Bir şey yok, oluiştur" +msgstr "Faturalanacak Bir şey yok, oluştur" #. module: account_analytic_analysis #: model:res.groups,name:account_analytic_analysis.group_template_required msgid "Mandatory use of templates in contracts" -msgstr "Sözlemleşerde şablon kullanılması zorunluluğu" +msgstr "Sözleşmelerde Şablon Kullanma Zorunluluğu" #. module: account_analytic_analysis #: field:account.analytic.account,hours_quantity:0 diff --git a/addons/account_analytic_analysis/i18n/uk.po b/addons/account_analytic_analysis/i18n/uk.po index a103d9c3941..d66658f94bc 100644 --- a/addons/account_analytic_analysis/i18n/uk.po +++ b/addons/account_analytic_analysis/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/vi.po b/addons/account_analytic_analysis/i18n/vi.po index 712c94cc805..59e8bf9aa78 100644 --- a/addons/account_analytic_analysis/i18n/vi.po +++ b/addons/account_analytic_analysis/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po index f00b5cf991b..519fdd43db2 100644 --- a/addons/account_analytic_analysis/i18n/zh_CN.po +++ b/addons/account_analytic_analysis/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:25+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po index d3b4f7d472a..478253dc78a 100644 --- a/addons/account_analytic_analysis/i18n/zh_TW.po +++ b/addons/account_analytic_analysis/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_default/i18n/ar.po b/addons/account_analytic_default/i18n/ar.po index 1301e144362..86b0bda7ecb 100644 --- a/addons/account_analytic_default/i18n/ar.po +++ b/addons/account_analytic_default/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bg.po b/addons/account_analytic_default/i18n/bg.po index 9c2b066593a..9a821ee9c60 100644 --- a/addons/account_analytic_default/i18n/bg.po +++ b/addons/account_analytic_default/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bs.po b/addons/account_analytic_default/i18n/bs.po index 30265c0f9f0..7effa21e9e1 100644 --- a/addons/account_analytic_default/i18n/bs.po +++ b/addons/account_analytic_default/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -26,12 +26,12 @@ msgstr "Pravila analitike" #. module: account_analytic_default #: view:account.analytic.default:0 msgid "Group By..." -msgstr "" +msgstr "Grupiši po..." #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 msgid "Default end date for this Analytic Account." -msgstr "" +msgstr "Predodređeni datum završetka za ovaj analitički konto" #. module: account_analytic_default #: help:account.analytic.default,product_id:0 @@ -40,11 +40,14 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "product, it will automatically take this as an analytic account)" msgstr "" +"Odaberite proizvod koji će koristiti analitički konto specifiran u " +"analitički zadatom (npr.: kreiraj novu fakturu kupca ili prodajnu narudžbu " +"ako odaberemo ovaj proizvod, automatski će ovo uzeti kao analitički konto)" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "Lista prikupljanja proizvoda" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -64,6 +67,9 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "partner, it will automatically take this as an analytic account)" msgstr "" +"Odaberite partnera koji će koristiti analitički konto specifiran u " +"analitički zadatom (npr.: kreiraj novu fakturu kupcu ili prodajnu narudžbu " +"ako odaberemo ovog partnera, automatski će uzeti ovo kao analitički konto)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -104,11 +110,13 @@ msgstr "Redoslijed" msgid "" "Select a user which will use analytic account specified in analytic default." msgstr "" +"Odaberite korisnika koji će koristiti analitički konto specifiran u " +"analitički zadatom." #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Stavka fakture" #. module: account_analytic_default #: help:account.analytic.default,company_id:0 @@ -117,6 +125,9 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "company, it will automatically take this as an analytic account)" msgstr "" +"Odaberite kompaniju koja će koristiti analitički konto specifiran u " +"analitički zadatom (npr.: kreiraj novu fakturu kupcu ili prodajnu narudžbu " +"ako odaberemo ovu kompaniju, automatski će uzeti ovo kao analitički konto)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -127,17 +138,17 @@ msgstr "Analitičko konto" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_analytic_default msgid "Analytic Distribution" -msgstr "" +msgstr "Analitička raspodjela" #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytic Account." -msgstr "" +msgstr "Zadani datum početka za ovaj analitički konto" #. module: account_analytic_default #: view:account.analytic.default:0 msgid "Accounts" -msgstr "" +msgstr "Konta" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -155,11 +166,12 @@ msgstr "Početni datum" msgid "" "Gives the sequence order when displaying a list of analytic distribution" msgstr "" +"Definira redosljed sekvence prilikom prikazivanja analitičkih raspodjela" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_sale_order_line msgid "Sales Order Line" -msgstr "" +msgstr "Stavka prodajne narudžbe" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Neodgovarajući XML za arhitekturu prikaza!" diff --git a/addons/account_analytic_default/i18n/ca.po b/addons/account_analytic_default/i18n/ca.po index 74fdc2d4345..1f909fe38fb 100644 --- a/addons/account_analytic_default/i18n/ca.po +++ b/addons/account_analytic_default/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/cs.po b/addons/account_analytic_default/i18n/cs.po index be03333d873..be76346f2fa 100644 --- a/addons/account_analytic_default/i18n/cs.po +++ b/addons/account_analytic_default/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/da.po b/addons/account_analytic_default/i18n/da.po index ed1c7b0d155..d011cfbaa0b 100644 --- a/addons/account_analytic_default/i18n/da.po +++ b/addons/account_analytic_default/i18n/da.po @@ -14,25 +14,25 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_product #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_user msgid "Analytic Rules" -msgstr "" +msgstr "Analytiske regler" #. module: account_analytic_default #: view:account.analytic.default:0 msgid "Group By..." -msgstr "Gruppér efter..." +msgstr "Sorter efter" #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 msgid "Default end date for this Analytic Account." -msgstr "" +msgstr "Standard slutdato for denne analyse konto" #. module: account_analytic_default #: help:account.analytic.default,product_id:0 @@ -45,7 +45,7 @@ msgstr "" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking msgid "Picking List" -msgstr "Plukseddel" +msgstr "Plukliste" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -56,7 +56,7 @@ msgstr "Betingelser" #: view:account.analytic.default:0 #: field:account.analytic.default,product_id:0 msgid "Product" -msgstr "Produkt" +msgstr "Vare" #. module: account_analytic_default #: help:account.analytic.default,partner_id:0 @@ -70,7 +70,7 @@ msgstr "" #: view:account.analytic.default:0 #: field:account.analytic.default,company_id:0 msgid "Company" -msgstr "Virksomhed" +msgstr "Firma" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -93,7 +93,7 @@ msgstr "Slutdato" #: model:ir.actions.act_window,name:account_analytic_default.action_analytic_default_list #: model:ir.ui.menu,name:account_analytic_default.menu_analytic_default_list msgid "Analytic Defaults" -msgstr "" +msgstr "Analytiske standarder" #. module: account_analytic_default #: field:account.analytic.default,sequence:0 @@ -123,17 +123,17 @@ msgstr "" #: view:account.analytic.default:0 #: field:account.analytic.default,analytic_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analyse konto" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_analytic_default msgid "Analytic Distribution" -msgstr "" +msgstr "Analytisk Distribution" #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytic Account." -msgstr "" +msgstr "Standard start dato for denne analytiske konto." #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/de.po b/addons/account_analytic_default/i18n/de.po index 396299e3d1c..1d0211d8c1a 100644 --- a/addons/account_analytic_default/i18n/de.po +++ b/addons/account_analytic_default/i18n/de.po @@ -14,15 +14,15 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_product #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_user msgid "Analytic Rules" -msgstr "Kostenstellen Kontierungsregeln" +msgstr "Kostenstellen-Kontierungsregeln" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -32,7 +32,7 @@ msgstr "Gruppierung ..." #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 msgid "Default end date for this Analytic Account." -msgstr "Vorgabe für Ende Datum der Kostenstelle" +msgstr "Vorgabe für Enddatum der Kostenstelle" #. module: account_analytic_default #: help:account.analytic.default,product_id:0 @@ -94,14 +94,14 @@ msgstr "Buchungen" #. module: account_analytic_default #: field:account.analytic.default,date_stop:0 msgid "End Date" -msgstr "Ende Datum" +msgstr "Enddatum" #. module: account_analytic_default #: view:account.analytic.default:0 #: model:ir.actions.act_window,name:account_analytic_default.action_analytic_default_list #: model:ir.ui.menu,name:account_analytic_default.menu_analytic_default_list msgid "Analytic Defaults" -msgstr "Kostenstellen Buchungsvorlage" +msgstr "Kostenstellen-Buchungsvorlage" #. module: account_analytic_default #: field:account.analytic.default,sequence:0 @@ -112,7 +112,7 @@ msgstr "Reihenfolge" #: help:account.analytic.default,user_id:0 msgid "" "Select a user which will use analytic account specified in analytic default." -msgstr "Wählen Sie einen Benutzer mit der hinterlegten Standard Kostenstelle" +msgstr "Wählen Sie einen Benutzer mit der hinterlegten Standardkostenstelle" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line @@ -140,12 +140,12 @@ msgstr "Kostenstelle" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_analytic_default msgid "Analytic Distribution" -msgstr "Kostenstellen Distribution" +msgstr "Kostenstellen-Distribution" #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytic Account." -msgstr "Standard Start Datum für Kostenstelle" +msgstr "Standard Startdatum für Kostenstelle" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -161,7 +161,7 @@ msgstr "Partner" #. module: account_analytic_default #: field:account.analytic.default,date_start:0 msgid "Start Date" -msgstr "Start Datum" +msgstr "Startdatum" #. module: account_analytic_default #: help:account.analytic.default,sequence:0 diff --git a/addons/account_analytic_default/i18n/el.po b/addons/account_analytic_default/i18n/el.po index b53b65f831a..15800543bf8 100644 --- a/addons/account_analytic_default/i18n/el.po +++ b/addons/account_analytic_default/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/en_GB.po b/addons/account_analytic_default/i18n/en_GB.po index 634829581d7..49085d5bfc7 100644 --- a/addons/account_analytic_default/i18n/en_GB.po +++ b/addons/account_analytic_default/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es.po b/addons/account_analytic_default/i18n/es.po index 7b0eb00b969..dac36676b39 100644 --- a/addons/account_analytic_default/i18n/es.po +++ b/addons/account_analytic_default/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_AR.po b/addons/account_analytic_default/i18n/es_AR.po index 34c26a393c0..57612fca790 100644 --- a/addons/account_analytic_default/i18n/es_AR.po +++ b/addons/account_analytic_default/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_CR.po b/addons/account_analytic_default/i18n/es_CR.po index 18fa56e0928..0ebf8eef9e7 100644 --- a/addons/account_analytic_default/i18n/es_CR.po +++ b/addons/account_analytic_default/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/es_EC.po b/addons/account_analytic_default/i18n/es_EC.po index 10e4fcadd12..6083ab7ce99 100644 --- a/addons/account_analytic_default/i18n/es_EC.po +++ b/addons/account_analytic_default/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_MX.po b/addons/account_analytic_default/i18n/es_MX.po index b6ebd4141c4..34b5f33dc6c 100644 --- a/addons/account_analytic_default/i18n/es_MX.po +++ b/addons/account_analytic_default/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_PY.po b/addons/account_analytic_default/i18n/es_PY.po index 4fc909ebbfb..ca00b77a324 100644 --- a/addons/account_analytic_default/i18n/es_PY.po +++ b/addons/account_analytic_default/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/et.po b/addons/account_analytic_default/i18n/et.po index 10671f8227b..3f706e8e126 100644 --- a/addons/account_analytic_default/i18n/et.po +++ b/addons/account_analytic_default/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fa.po b/addons/account_analytic_default/i18n/fa.po index 9948931f7fd..f63b37f8203 100644 --- a/addons/account_analytic_default/i18n/fa.po +++ b/addons/account_analytic_default/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fi.po b/addons/account_analytic_default/i18n/fi.po index b26eb42b0f0..31890be08e2 100644 --- a/addons/account_analytic_default/i18n/fi.po +++ b/addons/account_analytic_default/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fr.po b/addons/account_analytic_default/i18n/fr.po index 63c9ce41fa9..698fb3ffeaa 100644 --- a/addons/account_analytic_default/i18n/fr.po +++ b/addons/account_analytic_default/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gl.po b/addons/account_analytic_default/i18n/gl.po index 1759b453ec2..6ecee1efd9f 100644 --- a/addons/account_analytic_default/i18n/gl.po +++ b/addons/account_analytic_default/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gu.po b/addons/account_analytic_default/i18n/gu.po index 5ba30fe6275..097a4119540 100644 --- a/addons/account_analytic_default/i18n/gu.po +++ b/addons/account_analytic_default/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hr.po b/addons/account_analytic_default/i18n/hr.po index 64530033700..4f02b51bafb 100644 --- a/addons/account_analytic_default/i18n/hr.po +++ b/addons/account_analytic_default/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -31,7 +31,7 @@ msgstr "Grupiraj po..." #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 msgid "Default end date for this Analytic Account." -msgstr "" +msgstr "Predodređeni datum završetka za ovaj analitički konto" #. module: account_analytic_default #: help:account.analytic.default,product_id:0 @@ -55,7 +55,7 @@ msgstr "Uvjeti" #: view:account.analytic.default:0 #: field:account.analytic.default,product_id:0 msgid "Product" -msgstr "Proizvod" +msgstr "Artikl" #. module: account_analytic_default #: help:account.analytic.default,partner_id:0 diff --git a/addons/account_analytic_default/i18n/hu.po b/addons/account_analytic_default/i18n/hu.po index 0cf6bef59d8..a015192296d 100644 --- a/addons/account_analytic_default/i18n/hu.po +++ b/addons/account_analytic_default/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/id.po b/addons/account_analytic_default/i18n/id.po index ef149f78137..7eb422bbcc1 100644 --- a/addons/account_analytic_default/i18n/id.po +++ b/addons/account_analytic_default/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/it.po b/addons/account_analytic_default/i18n/it.po index 830d9c0a956..f655dbd5f82 100644 --- a/addons/account_analytic_default/i18n/it.po +++ b/addons/account_analytic_default/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ja.po b/addons/account_analytic_default/i18n/ja.po index c44a6409fee..b25599fff5e 100644 --- a/addons/account_analytic_default/i18n/ja.po +++ b/addons/account_analytic_default/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ko.po b/addons/account_analytic_default/i18n/ko.po index c5613193a16..b4c617755f1 100644 --- a/addons/account_analytic_default/i18n/ko.po +++ b/addons/account_analytic_default/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lt.po b/addons/account_analytic_default/i18n/lt.po index 7d4bc0f84f8..50e9e8b1f8b 100644 --- a/addons/account_analytic_default/i18n/lt.po +++ b/addons/account_analytic_default/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lv.po b/addons/account_analytic_default/i18n/lv.po index 036005d9683..1c95cecbfeb 100644 --- a/addons/account_analytic_default/i18n/lv.po +++ b/addons/account_analytic_default/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/mk.po b/addons/account_analytic_default/i18n/mk.po index 42a272b8037..bf1024cf35e 100644 --- a/addons/account_analytic_default/i18n/mk.po +++ b/addons/account_analytic_default/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/mn.po b/addons/account_analytic_default/i18n/mn.po index 039bc4c36ce..8dfdd7cbd6f 100644 --- a/addons/account_analytic_default/i18n/mn.po +++ b/addons/account_analytic_default/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nb.po b/addons/account_analytic_default/i18n/nb.po index 24ffaed5ce5..160629c9517 100644 --- a/addons/account_analytic_default/i18n/nb.po +++ b/addons/account_analytic_default/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl.po b/addons/account_analytic_default/i18n/nl.po index fa430884aa6..0d54aee850c 100644 --- a/addons/account_analytic_default/i18n/nl.po +++ b/addons/account_analytic_default/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po index bea1b5a02e0..3aa2b7ee8c1 100644 --- a/addons/account_analytic_default/i18n/nl_BE.po +++ b/addons/account_analytic_default/i18n/nl_BE.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-04-15 15:56+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/oc.po b/addons/account_analytic_default/i18n/oc.po index 61e7ee048c9..af5c450bc7b 100644 --- a/addons/account_analytic_default/i18n/oc.po +++ b/addons/account_analytic_default/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pl.po b/addons/account_analytic_default/i18n/pl.po index 81c83f3810e..3b7557a5361 100644 --- a/addons/account_analytic_default/i18n/pl.po +++ b/addons/account_analytic_default/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -40,6 +40,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "product, it will automatically take this as an analytic account)" msgstr "" +"Wybierz produkt który użyje konta analitycznego określonego w domyślnym " +"koncie analitycznym (np. utworzenie nowej faktury dla klienta lub zlecenia " +"sprzedaży jeśli wybierzemy ten produkt, to automatycznie wybierze to jako " +"konto analityczne)" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking @@ -64,6 +68,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "partner, it will automatically take this as an analytic account)" msgstr "" +"Wybierz kontrahenta, który będzie używał konto analityczne określone w " +"domyślnym koncie analitycznym (np. utworzenie nowej faktury dla klienta lub " +"zlecenia sprzedaży przy wyborze tego kontrahenta, to automatycznie wybierze " +"to jako konto analityczne)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -117,6 +125,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "company, it will automatically take this as an analytic account)" msgstr "" +"Wybierz firmę, która będzie używała analitycznego konta określonego w " +"analitycznym koncie domyślnym (np. utworzenie nowej faktury dla klienta lub " +"zlecenia sprzedaży jeśli wybierzemy tę firmę, to automatycznie wybierze to " +"jako konto analityczne)" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/pt.po b/addons/account_analytic_default/i18n/pt.po index d5edfc9580d..c1e28952b35 100644 --- a/addons/account_analytic_default/i18n/pt.po +++ b/addons/account_analytic_default/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pt_BR.po b/addons/account_analytic_default/i18n/pt_BR.po index c051181a112..6029f508c4d 100644 --- a/addons/account_analytic_default/i18n/pt_BR.po +++ b/addons/account_analytic_default/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-21 23:08+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ro.po b/addons/account_analytic_default/i18n/ro.po index 131ed3493df..cfc77ccca28 100644 --- a/addons/account_analytic_default/i18n/ro.po +++ b/addons/account_analytic_default/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ru.po b/addons/account_analytic_default/i18n/ru.po index 1d21fab865c..d80953d101e 100644 --- a/addons/account_analytic_default/i18n/ru.po +++ b/addons/account_analytic_default/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sk.po b/addons/account_analytic_default/i18n/sk.po index 9d8b0d249ac..9a65eb1b2eb 100644 --- a/addons/account_analytic_default/i18n/sk.po +++ b/addons/account_analytic_default/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sl.po b/addons/account_analytic_default/i18n/sl.po index 7d8e9252ac7..f1796b6d54e 100644 --- a/addons/account_analytic_default/i18n/sl.po +++ b/addons/account_analytic_default/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sq.po b/addons/account_analytic_default/i18n/sq.po index 1bc9813276a..cd2d7259fc8 100644 --- a/addons/account_analytic_default/i18n/sq.po +++ b/addons/account_analytic_default/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr.po b/addons/account_analytic_default/i18n/sr.po index 57252596b05..621d2596ff8 100644 --- a/addons/account_analytic_default/i18n/sr.po +++ b/addons/account_analytic_default/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr@latin.po b/addons/account_analytic_default/i18n/sr@latin.po index 96ab1cd3db8..3a4cfe6eba4 100644 --- a/addons/account_analytic_default/i18n/sr@latin.po +++ b/addons/account_analytic_default/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sv.po b/addons/account_analytic_default/i18n/sv.po index fa68ebecced..06ceb1bf63f 100644 --- a/addons/account_analytic_default/i18n/sv.po +++ b/addons/account_analytic_default/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tlh.po b/addons/account_analytic_default/i18n/tlh.po index ba08634341c..8a973bc6cd9 100644 --- a/addons/account_analytic_default/i18n/tlh.po +++ b/addons/account_analytic_default/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tr.po b/addons/account_analytic_default/i18n/tr.po index 39f0d318bef..5e550149e63 100644 --- a/addons/account_analytic_default/i18n/tr.po +++ b/addons/account_analytic_default/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/uk.po b/addons/account_analytic_default/i18n/uk.po index f06192130e1..b4d58cf1675 100644 --- a/addons/account_analytic_default/i18n/uk.po +++ b/addons/account_analytic_default/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/vi.po b/addons/account_analytic_default/i18n/vi.po index 3eecb23617d..42921456caf 100644 --- a/addons/account_analytic_default/i18n/vi.po +++ b/addons/account_analytic_default/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/zh_CN.po b/addons/account_analytic_default/i18n/zh_CN.po index 825a6fbba61..7af9a4ba092 100644 --- a/addons/account_analytic_default/i18n/zh_CN.po +++ b/addons/account_analytic_default/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:25+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po index 71312ac8b06..eaba757822f 100644 --- a/addons/account_analytic_default/i18n/zh_TW.po +++ b/addons/account_analytic_default/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_plans/account_analytic_plans_view.xml b/addons/account_analytic_plans/account_analytic_plans_view.xml index 42b17ae06c3..05955d6f5cd 100644 --- a/addons/account_analytic_plans/account_analytic_plans_view.xml +++ b/addons/account_analytic_plans/account_analytic_plans_view.xml @@ -270,6 +270,20 @@ + + + account.bank.statement.form.inherit + account.bank.statement + + + + + + + + + + diff --git a/addons/account_analytic_plans/i18n/ar.po b/addons/account_analytic_plans/i18n/ar.po index 06152c40225..0c24550c7c0 100644 --- a/addons/account_analytic_plans/i18n/ar.po +++ b/addons/account_analytic_plans/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bg.po b/addons/account_analytic_plans/i18n/bg.po index 7aa9e268e51..a81eb44faa2 100644 --- a/addons/account_analytic_plans/i18n/bg.po +++ b/addons/account_analytic_plans/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bs.po b/addons/account_analytic_plans/i18n/bs.po index e23cb161a10..1218ae0bc17 100644 --- a/addons/account_analytic_plans/i18n/bs.po +++ b/addons/account_analytic_plans/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -48,7 +48,7 @@ msgstr "Stopa (%)" #: code:addons/account_analytic_plans/account_analytic_plans.py:234 #, python-format msgid "The total should be between %s and %s." -msgstr "" +msgstr "Ukupno bi trebalo biti između %s i %s." #. module: account_analytic_plans #: view:account.analytic.plan:0 @@ -65,6 +65,7 @@ msgstr "Analitički plan" msgid "" "This distribution model has been saved.You will be able to reuse it later." msgstr "" +"Model raspodjele je bio sačuvan. Moći ćete da ga iskoristite kasnije." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance_line @@ -74,7 +75,7 @@ msgstr "Redak analitičke instance" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Lines" -msgstr "" +msgstr "Stavke analitičke raspodjele" #. module: account_analytic_plans #: view:account.crossovered.analytic:0 @@ -131,7 +132,7 @@ msgstr "Ne prikazuj prazne retke" #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "There are no analytic lines related to account %s." -msgstr "" +msgstr "Nema analitičkih stavki povezanih sa kontom %s." #. module: account_analytic_plans #: field:account.analytic.plan.instance,account3_ids:0 @@ -142,12 +143,12 @@ msgstr "Šifra računa3" #: view:account.crossovered.analytic:0 #: view:analytic.plan.create.model:0 msgid "or" -msgstr "" +msgstr "ili" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Analitička stavka" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -157,7 +158,7 @@ msgstr "100.00%" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Currency" -msgstr "" +msgstr "Valuta" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -167,7 +168,7 @@ msgstr "Analitički račun:" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 msgid "Save This Distribution as a Model" -msgstr "" +msgstr "Sačuvaj raspodjelu kao model" #. module: account_analytic_plans #: view:account.analytic.plan.line:0 @@ -200,17 +201,17 @@ msgstr "Analitički planovi" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Perc(%)" -msgstr "" +msgstr "Post(%)" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "Stavke dnevnika" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_analytic_plan_create_model msgid "analytic.plan.create.model" -msgstr "" +msgstr "analytic.plan.create.model" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account1_ids:0 @@ -247,7 +248,7 @@ msgstr "Modeli raspodjele" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 msgid "Ok" -msgstr "" +msgstr "U redu" #. module: account_analytic_plans #: view:account.analytic.plan.line:0 @@ -272,7 +273,7 @@ msgstr "Šifra računa2" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "Stavka bankovnog izvoda" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:221 @@ -281,7 +282,7 @@ msgstr "" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "Error!" -msgstr "" +msgstr "Greška!" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -291,13 +292,13 @@ msgstr "Iznos" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_crossovered_analytic msgid "Print Crossovered Analytic" -msgstr "" +msgstr "Ispis ukrštene analititke" #. module: account_analytic_plans #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "User Error!" -msgstr "" +msgstr "Greška Korisnika!" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account6_ids:0 @@ -315,7 +316,7 @@ msgstr "Analitička knjiženja" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:38 #, python-format msgid "Please put a name and a code before saving the model." -msgstr "" +msgstr "Molimo Vas stavite naziv i šifru prije čuvanja ovog modela." #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -325,7 +326,7 @@ msgstr "Količina" #. module: account_analytic_plans #: model:ir.ui.menu,name:account_analytic_plans.menu_account_analytic_multi_plan_action msgid "Multi Plans" -msgstr "" +msgstr "Višestruki planovi" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account_ids:0 @@ -340,26 +341,26 @@ msgstr "Šifra" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_journal msgid "Journal" -msgstr "" +msgstr "Dnevnik" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:342 #: code:addons/account_analytic_plans/account_analytic_plans.py:486 #, python-format msgid "You have to define an analytic journal on the '%s' journal." -msgstr "" +msgstr "Morate da definišete analitički dnevnik na '%s' dnevniku." #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:342 #: code:addons/account_analytic_plans/account_analytic_plans.py:486 #, python-format msgid "No Analytic Journal !" -msgstr "" +msgstr "Nema analitičkog dnevnika !" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.action_analytic_plan_create_model msgid "analytic.plan.create.model.action" -msgstr "" +msgstr "analytic.plan.create.model.action" #. module: account_analytic_plans #: field:account.analytic.plan.line,sequence:0 @@ -369,18 +370,18 @@ msgstr "Redoslijed" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Stavka fakture" #. module: account_analytic_plans #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "There is no analytic plan defined." -msgstr "" +msgstr "Nema definisanog analitičkog plana." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement msgid "Bank Statement" -msgstr "" +msgstr "Izvod banke" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,analytic_account_id:0 @@ -402,7 +403,7 @@ msgstr "Analitička raspodjela" #: code:addons/account_analytic_plans/account_analytic_plans.py:221 #, python-format msgid "A model with this name and code already exists." -msgstr "" +msgstr "Model sa ovim nazivom i šifrom već postoji." #. module: account_analytic_plans #: help:account.analytic.plan.line,root_analytic_id:0 @@ -412,12 +413,12 @@ msgstr "Korijenski konto ovog plana." #. module: account_analytic_plans #: field:account.crossovered.analytic,ref:0 msgid "Analytic Account Reference" -msgstr "" +msgstr "Referenca analitičkog konta" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Faktura" #. module: account_analytic_plans #: view:account.crossovered.analytic:0 @@ -438,12 +439,12 @@ msgstr "kod" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Company" -msgstr "" +msgstr "Kompanija" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_sale_order_line msgid "Sales Order Line" -msgstr "" +msgstr "Stavka prodajne narudžbe" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 diff --git a/addons/account_analytic_plans/i18n/ca.po b/addons/account_analytic_plans/i18n/ca.po index a8e63efa923..702e6b8f2b2 100644 --- a/addons/account_analytic_plans/i18n/ca.po +++ b/addons/account_analytic_plans/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/cs.po b/addons/account_analytic_plans/i18n/cs.po index ca8ba58635d..b55eb936f41 100644 --- a/addons/account_analytic_plans/i18n/cs.po +++ b/addons/account_analytic_plans/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/da.po b/addons/account_analytic_plans/i18n/da.po index c3d889e419e..e3a9187c100 100644 --- a/addons/account_analytic_plans/i18n/da.po +++ b/addons/account_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/de.po b/addons/account_analytic_plans/i18n/de.po index 99cb5eb5da6..2fc7390a9de 100644 --- a/addons/account_analytic_plans/i18n/de.po +++ b/addons/account_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -38,7 +38,7 @@ msgstr "Konto5 ID" #. module: account_analytic_plans #: field:account.crossovered.analytic,date2:0 msgid "End Date" -msgstr "Ende Datum" +msgstr "Enddatum" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,rate:0 @@ -59,7 +59,7 @@ msgstr "Die Summe sollte zwischen %s und %s sein." #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan #: model:ir.ui.menu,name:account_analytic_plans.menu_account_analytic_plan_action msgid "Analytic Plan" -msgstr "Analytische Verrechnung" +msgstr "Kostenstellenverrechnung" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 @@ -70,7 +70,7 @@ msgstr "Die Verrechnungsvorlage wurde gesichert und ist nunmehr verwendbar." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance_line msgid "Analytic Instance Line" -msgstr "Analyt. Buchungspsoitionen" +msgstr "Analyt. Buchungspositionen" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 @@ -121,18 +121,18 @@ msgstr "Prozent" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Printing date" -msgstr "Datum Druck" +msgstr "Druckdatum" #. module: account_analytic_plans #: field:account.crossovered.analytic,empty_line:0 msgid "Dont show empty lines" -msgstr "Zeige keine leeren Zeilen" +msgstr "Keine leeren Zeilen anzeigen" #. module: account_analytic_plans #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "There are no analytic lines related to account %s." -msgstr "Es gibt keine Kostenstellen Buchungen für das Konto %s." +msgstr "Es gibt keine Kostenstellenbuchungen für das Konto %s." #. module: account_analytic_plans #: field:account.analytic.plan.instance,account3_ids:0 @@ -168,7 +168,7 @@ msgstr "Analytisches Konto" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 msgid "Save This Distribution as a Model" -msgstr "Speichere Verrechnung als Vorlage" +msgstr "Verrechnung als Vorlage speichern" #. module: account_analytic_plans #: view:account.analytic.plan.line:0 @@ -189,7 +189,7 @@ msgstr "Verrechnungsposition" #. module: account_analytic_plans #: field:account.analytic.plan,default_instance_id:0 msgid "Default Entries" -msgstr "Vorlage Verrechnung" +msgstr "Verrechnungsvorlage" #. module: account_analytic_plans #: view:account.analytic.plan:0 @@ -206,7 +206,7 @@ msgstr "Proz(%)" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_move_line msgid "Journal Items" -msgstr "Journal Einträge" +msgstr "Journaleinträge" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_analytic_plan_create_model @@ -221,7 +221,7 @@ msgstr "Konto1 ID" #. module: account_analytic_plans #: field:account.analytic.plan.line,max_required:0 msgid "Maximum Allowed (%)" -msgstr "Max. Erlaubt (100%)" +msgstr "Max. erlaubt (100%)" #. module: account_analytic_plans #: field:account.analytic.plan.line,root_analytic_id:0 @@ -243,7 +243,7 @@ msgstr "Analyt. Verrechnungsvorgang" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_instance_model_open msgid "Distribution Models" -msgstr "Vorlage Verrechnung" +msgstr "Verrechnungsvorlage" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 @@ -258,12 +258,12 @@ msgstr "Analyt. Verrechnung Positionen" #. module: account_analytic_plans #: field:account.analytic.plan.line,min_required:0 msgid "Minimum Allowed (%)" -msgstr "Min. Erlaubt (%)" +msgstr "Min. erlaubt (%)" #. module: account_analytic_plans #: field:account.analytic.plan.instance,plan_id:0 msgid "Model's Plan" -msgstr "Vorgabe Verrechnung" +msgstr "Verrechnungsvorgabe" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account2_ids:0 @@ -292,7 +292,7 @@ msgstr "Wert" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_crossovered_analytic msgid "Print Crossovered Analytic" -msgstr "Druck Kreuzanalyse" +msgstr "Kreuzanalyse drucken" #. module: account_analytic_plans #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 @@ -310,7 +310,7 @@ msgstr "Konto6 Id" #: view:account.crossovered.analytic:0 #: field:account.crossovered.analytic,journal_ids:0 msgid "Analytic Journal" -msgstr "Analytisches Journal" +msgstr "Kostenstellenjournal" #. module: account_analytic_plans #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:38 @@ -332,7 +332,7 @@ msgstr "Analytische Verrechnung" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account_ids:0 msgid "Account Id" -msgstr "Konto ID" +msgstr "Konten ID" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -356,7 +356,7 @@ msgstr "Sie müssen eine Kostenstelle für das Journal '%s' eintragen" #: code:addons/account_analytic_plans/account_analytic_plans.py:486 #, python-format msgid "No Analytic Journal !" -msgstr "Kein Analytisches Journal !" +msgstr "Kein Kostenstellen-Journal" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.action_analytic_plan_create_model @@ -377,17 +377,17 @@ msgstr "Rechnungszeile" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "There is no analytic plan defined." -msgstr "Es existieren Kostenstellen und ein Plan" +msgstr "Es existieren Kostenstellen und ein Plan." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement msgid "Bank Statement" -msgstr "Bank Auszug" +msgstr "Bankauszug" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,analytic_account_id:0 msgid "Analytic Account" -msgstr "Analytisches Konto" +msgstr "Kostenstellenkonto" #. module: account_analytic_plans #: field:account.analytic.default,analytics_id:0 @@ -414,7 +414,7 @@ msgstr "Basiskonto der Verrechnung" #. module: account_analytic_plans #: field:account.crossovered.analytic,ref:0 msgid "Analytic Account Reference" -msgstr "Analyt. Konto Referenz" +msgstr "Analyt. Kontenreferenz" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_invoice @@ -430,7 +430,7 @@ msgstr "Abbruch" #. module: account_analytic_plans #: field:account.crossovered.analytic,date1:0 msgid "Start Date" -msgstr "Start Datum" +msgstr "Startdatum" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 diff --git a/addons/account_analytic_plans/i18n/el.po b/addons/account_analytic_plans/i18n/el.po index 50786f9e540..f5912906814 100644 --- a/addons/account_analytic_plans/i18n/el.po +++ b/addons/account_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/en_GB.po b/addons/account_analytic_plans/i18n/en_GB.po index 06dde4ee446..68d25fd5542 100644 --- a/addons/account_analytic_plans/i18n/en_GB.po +++ b/addons/account_analytic_plans/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es.po b/addons/account_analytic_plans/i18n/es.po index 58daf306ed2..730d8c759e0 100644 --- a/addons/account_analytic_plans/i18n/es.po +++ b/addons/account_analytic_plans/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_AR.po b/addons/account_analytic_plans/i18n/es_AR.po index 007135e5f11..506554f2a20 100644 --- a/addons/account_analytic_plans/i18n/es_AR.po +++ b/addons/account_analytic_plans/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_CR.po b/addons/account_analytic_plans/i18n/es_CR.po index 6a4b0589fec..1ba89f0f673 100644 --- a/addons/account_analytic_plans/i18n/es_CR.po +++ b/addons/account_analytic_plans/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/es_EC.po b/addons/account_analytic_plans/i18n/es_EC.po index 4acf3e84c37..0508622c6e4 100644 --- a/addons/account_analytic_plans/i18n/es_EC.po +++ b/addons/account_analytic_plans/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_MX.po b/addons/account_analytic_plans/i18n/es_MX.po index f6ec4360f55..b3ca7711d7f 100644 --- a/addons/account_analytic_plans/i18n/es_MX.po +++ b/addons/account_analytic_plans/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_PY.po b/addons/account_analytic_plans/i18n/es_PY.po index 404aa4189c2..62608d4d57c 100644 --- a/addons/account_analytic_plans/i18n/es_PY.po +++ b/addons/account_analytic_plans/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/et.po b/addons/account_analytic_plans/i18n/et.po index 6b28775244c..fd9768d1aaf 100644 --- a/addons/account_analytic_plans/i18n/et.po +++ b/addons/account_analytic_plans/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #~ msgid "Printing date:" #~ msgstr "Trükkimise kuupäev:" diff --git a/addons/account_analytic_plans/i18n/fa.po b/addons/account_analytic_plans/i18n/fa.po index 82487d6c848..0eab96bffc5 100644 --- a/addons/account_analytic_plans/i18n/fa.po +++ b/addons/account_analytic_plans/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fi.po b/addons/account_analytic_plans/i18n/fi.po index aafe0df43f2..762fbb707bf 100644 --- a/addons/account_analytic_plans/i18n/fi.po +++ b/addons/account_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fr.po b/addons/account_analytic_plans/i18n/fr.po index 43a0dabde68..45d30f4ac83 100644 --- a/addons/account_analytic_plans/i18n/fr.po +++ b/addons/account_analytic_plans/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gl.po b/addons/account_analytic_plans/i18n/gl.po index 32207824647..0a8a9ce3d47 100644 --- a/addons/account_analytic_plans/i18n/gl.po +++ b/addons/account_analytic_plans/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gu.po b/addons/account_analytic_plans/i18n/gu.po index 0f3893cfb66..c9cdc173a82 100644 --- a/addons/account_analytic_plans/i18n/gu.po +++ b/addons/account_analytic_plans/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hr.po b/addons/account_analytic_plans/i18n/hr.po index f72fcc38de2..63caef06048 100644 --- a/addons/account_analytic_plans/i18n/hr.po +++ b/addons/account_analytic_plans/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hu.po b/addons/account_analytic_plans/i18n/hu.po index 37d393a9628..557fa94653a 100644 --- a/addons/account_analytic_plans/i18n/hu.po +++ b/addons/account_analytic_plans/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -100,7 +100,7 @@ msgstr "Analitikus felosztási modellek" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Account Name" -msgstr "Gyűjtőkód megnevezése" +msgstr "Főkönyvi számla megnevezése" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 @@ -126,7 +126,7 @@ msgstr "Nyomtatás dátuma" #. module: account_analytic_plans #: field:account.crossovered.analytic,empty_line:0 msgid "Dont show empty lines" -msgstr "Ne mutassa az üres sorokat" +msgstr "Ne mutassa az üres tételsorokat" #. module: account_analytic_plans #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 @@ -148,7 +148,7 @@ msgstr "vagy" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_line msgid "Analytic Line" -msgstr "Gyűjtőkód tételsor" +msgstr "Analitikus gyűjtőkód tételsor" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 diff --git a/addons/account_analytic_plans/i18n/id.po b/addons/account_analytic_plans/i18n/id.po index 7d218abb58d..ea82dbcb963 100644 --- a/addons/account_analytic_plans/i18n/id.po +++ b/addons/account_analytic_plans/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/it.po b/addons/account_analytic_plans/i18n/it.po index 8ce147d7e03..06c0cc89b44 100644 --- a/addons/account_analytic_plans/i18n/it.po +++ b/addons/account_analytic_plans/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ja.po b/addons/account_analytic_plans/i18n/ja.po index 7a306e00ac5..bf26cce1b4f 100644 --- a/addons/account_analytic_plans/i18n/ja.po +++ b/addons/account_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ko.po b/addons/account_analytic_plans/i18n/ko.po index f8213f3fa8a..65dbe39e809 100644 --- a/addons/account_analytic_plans/i18n/ko.po +++ b/addons/account_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lt.po b/addons/account_analytic_plans/i18n/lt.po index 2789d37cb56..9532d71685f 100644 --- a/addons/account_analytic_plans/i18n/lt.po +++ b/addons/account_analytic_plans/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lv.po b/addons/account_analytic_plans/i18n/lv.po index 8935de99e06..c58cc2e79c3 100644 --- a/addons/account_analytic_plans/i18n/lv.po +++ b/addons/account_analytic_plans/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/mk.po b/addons/account_analytic_plans/i18n/mk.po index 72ddaa4a379..a85e131cad7 100644 --- a/addons/account_analytic_plans/i18n/mk.po +++ b/addons/account_analytic_plans/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/mn.po b/addons/account_analytic_plans/i18n/mn.po index 22404d551a7..7513bfd1702 100644 --- a/addons/account_analytic_plans/i18n/mn.po +++ b/addons/account_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nb.po b/addons/account_analytic_plans/i18n/nb.po index 1786e6deccb..e9d6579b421 100644 --- a/addons/account_analytic_plans/i18n/nb.po +++ b/addons/account_analytic_plans/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nl.po b/addons/account_analytic_plans/i18n/nl.po index 96a4607548c..48b86cb1195 100644 --- a/addons/account_analytic_plans/i18n/nl.po +++ b/addons/account_analytic_plans/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po index 7c69f989537..064584e79b9 100644 --- a/addons/account_analytic_plans/i18n/nl_BE.po +++ b/addons/account_analytic_plans/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/oc.po b/addons/account_analytic_plans/i18n/oc.po index ded48df9da7..7c946710609 100644 --- a/addons/account_analytic_plans/i18n/oc.po +++ b/addons/account_analytic_plans/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pl.po b/addons/account_analytic_plans/i18n/pl.po index f9274afaa67..90220c5bc4d 100644 --- a/addons/account_analytic_plans/i18n/pl.po +++ b/addons/account_analytic_plans/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -142,7 +142,7 @@ msgstr "Id konta3" #: view:account.crossovered.analytic:0 #: view:analytic.plan.create.model:0 msgid "or" -msgstr "" +msgstr "lub" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_line diff --git a/addons/account_analytic_plans/i18n/pt.po b/addons/account_analytic_plans/i18n/pt.po index 437b29c88a9..149bb174964 100644 --- a/addons/account_analytic_plans/i18n/pt.po +++ b/addons/account_analytic_plans/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pt_BR.po b/addons/account_analytic_plans/i18n/pt_BR.po index 76b99db2cc7..6871fd58574 100644 --- a/addons/account_analytic_plans/i18n/pt_BR.po +++ b/addons/account_analytic_plans/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-20 10:59+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ro.po b/addons/account_analytic_plans/i18n/ro.po index b09f71aa635..0d3b8fbb5c7 100644 --- a/addons/account_analytic_plans/i18n/ro.po +++ b/addons/account_analytic_plans/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ru.po b/addons/account_analytic_plans/i18n/ru.po index df92c0a9012..f61d2490bb3 100644 --- a/addons/account_analytic_plans/i18n/ru.po +++ b/addons/account_analytic_plans/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sl.po b/addons/account_analytic_plans/i18n/sl.po index 3ec58f2a864..708122efa77 100644 --- a/addons/account_analytic_plans/i18n/sl.po +++ b/addons/account_analytic_plans/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -64,7 +64,8 @@ msgstr "Analitični načrt" #: view:analytic.plan.create.model:0 msgid "" "This distribution model has been saved.You will be able to reuse it later." -msgstr "Distribucijski model je shranjen." +msgstr "" +"Distribucijski model je shranjen. Lahko ga ponovno uporabite kasneje." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance_line @@ -74,7 +75,7 @@ msgstr "Vrstica analitike" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Lines" -msgstr "Distribucijska vrstice analitike" +msgstr "Vrstice analitične razdelitve" #. module: account_analytic_plans #: view:account.crossovered.analytic:0 @@ -94,7 +95,7 @@ msgstr "Oznaka načrta" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_plan_instance_action msgid "Analytic Distribution's Models" -msgstr "Distribucijski model analitike" +msgstr "Ključ analitične delitve" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 diff --git a/addons/account_analytic_plans/i18n/sq.po b/addons/account_analytic_plans/i18n/sq.po index aefbba2eae5..43987085d57 100644 --- a/addons/account_analytic_plans/i18n/sq.po +++ b/addons/account_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr.po b/addons/account_analytic_plans/i18n/sr.po index f28919caf9a..e8722c53545 100644 --- a/addons/account_analytic_plans/i18n/sr.po +++ b/addons/account_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr@latin.po b/addons/account_analytic_plans/i18n/sr@latin.po index 9f200081073..93939e56dd8 100644 --- a/addons/account_analytic_plans/i18n/sr@latin.po +++ b/addons/account_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sv.po b/addons/account_analytic_plans/i18n/sv.po index 8890fe34853..b4389612d0a 100644 --- a/addons/account_analytic_plans/i18n/sv.po +++ b/addons/account_analytic_plans/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tlh.po b/addons/account_analytic_plans/i18n/tlh.po index e8c3be19d02..8169b24db0a 100644 --- a/addons/account_analytic_plans/i18n/tlh.po +++ b/addons/account_analytic_plans/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tr.po b/addons/account_analytic_plans/i18n/tr.po index 0158a212cba..217847a4efb 100644 --- a/addons/account_analytic_plans/i18n/tr.po +++ b/addons/account_analytic_plans/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -205,7 +205,7 @@ msgstr "Yüzde(%)" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_move_line msgid "Journal Items" -msgstr "Günlük maddeleri" +msgstr "Yevmiye Kalemleri" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_analytic_plan_create_model @@ -309,7 +309,7 @@ msgstr "Hesap6 No" #: view:account.crossovered.analytic:0 #: field:account.crossovered.analytic,journal_ids:0 msgid "Analytic Journal" -msgstr "Analitik Günlük" +msgstr "Analitik Yevmiye" #. module: account_analytic_plans #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:38 @@ -340,21 +340,21 @@ msgstr "Kod" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_journal msgid "Journal" -msgstr "Günlük" +msgstr "Yevmiye" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:342 #: code:addons/account_analytic_plans/account_analytic_plans.py:486 #, python-format msgid "You have to define an analytic journal on the '%s' journal." -msgstr "'%s' Günlüğünde bir analitik günlük tanımlamalısınız!" +msgstr "'%s' Yevmiyede bir analitik yevmiye tanımlamalısınız!" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:342 #: code:addons/account_analytic_plans/account_analytic_plans.py:486 #, python-format msgid "No Analytic Journal !" -msgstr "Analitik günlük yok !" +msgstr "Analitik Yevmiye Yok !" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.action_analytic_plan_create_model diff --git a/addons/account_analytic_plans/i18n/uk.po b/addons/account_analytic_plans/i18n/uk.po index 241b966b68f..3ae07ddaa1e 100644 --- a/addons/account_analytic_plans/i18n/uk.po +++ b/addons/account_analytic_plans/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/vi.po b/addons/account_analytic_plans/i18n/vi.po index dcf673f7f69..4729ba39068 100644 --- a/addons/account_analytic_plans/i18n/vi.po +++ b/addons/account_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po index 52a40d79f90..0a0b1ad6734 100644 --- a/addons/account_analytic_plans/i18n/zh_CN.po +++ b/addons/account_analytic_plans/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_TW.po b/addons/account_analytic_plans/i18n/zh_TW.po index 3db3eb06d08..4abbb9a531f 100644 --- a/addons/account_analytic_plans/i18n/zh_TW.po +++ b/addons/account_analytic_plans/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_anglo_saxon/i18n/ar.po b/addons/account_anglo_saxon/i18n/ar.po index 23cb01dedbb..2da6a4259da 100644 --- a/addons/account_anglo_saxon/i18n/ar.po +++ b/addons/account_anglo_saxon/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/bg.po b/addons/account_anglo_saxon/i18n/bg.po index 311e5c2f992..c4130d2d870 100644 --- a/addons/account_anglo_saxon/i18n/bg.po +++ b/addons/account_anglo_saxon/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/bs.po b/addons/account_anglo_saxon/i18n/bs.po index 69cca6cfe70..406895eac16 100644 --- a/addons/account_anglo_saxon/i18n/bs.po +++ b/addons/account_anglo_saxon/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-27 05:49+0000\n" -"X-Generator: Launchpad (build 16810)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ca.po b/addons/account_anglo_saxon/i18n/ca.po index 344b96d9254..526afbc5043 100644 --- a/addons/account_anglo_saxon/i18n/ca.po +++ b/addons/account_anglo_saxon/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/cs.po b/addons/account_anglo_saxon/i18n/cs.po index 2e35c7ae797..1a5d8dbdb0c 100644 --- a/addons/account_anglo_saxon/i18n/cs.po +++ b/addons/account_anglo_saxon/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/da.po b/addons/account_anglo_saxon/i18n/da.po index 744c186153d..5cb9eb682a0 100644 --- a/addons/account_anglo_saxon/i18n/da.po +++ b/addons/account_anglo_saxon/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category @@ -35,13 +35,13 @@ msgstr "Indkøbsordre" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_template msgid "Product Template" -msgstr "" +msgstr "Produktskabelon" #. module: account_anglo_saxon #: field:product.category,property_account_creditor_price_difference_categ:0 #: field:product.template,property_account_creditor_price_difference:0 msgid "Price Difference Account" -msgstr "" +msgstr "Prisafvigelses konto" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_account_invoice @@ -60,6 +60,7 @@ msgid "" "This account will be used to value price difference between purchase price " "and cost price." msgstr "" +"Denne konto bruges til at beregne differencer mellem indkøbs- og kostpris." #~ msgid "Error ! You can not create recursive categories." #~ msgstr "Fejl ! Du kan ikke oprette rekusive katagorier." diff --git a/addons/account_anglo_saxon/i18n/de.po b/addons/account_anglo_saxon/i18n/de.po index 29374221c34..31d4af43109 100644 --- a/addons/account_anglo_saxon/i18n/de.po +++ b/addons/account_anglo_saxon/i18n/de.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category msgid "Product Category" -msgstr "Produkt Kategorie" +msgstr "Produktkategorie" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_account_invoice_line @@ -35,13 +35,13 @@ msgstr "Beschaffungsauftrag" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_template msgid "Product Template" -msgstr "Produkt Vorlage" +msgstr "Produktvorlage" #. module: account_anglo_saxon #: field:product.category,property_account_creditor_price_difference_categ:0 #: field:product.template,property_account_creditor_price_difference:0 msgid "Price Difference Account" -msgstr "Konto Preisdifferenz" +msgstr "Konto-Preisdifferenz" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_account_invoice diff --git a/addons/account_anglo_saxon/i18n/el.po b/addons/account_anglo_saxon/i18n/el.po index 8e3244d0207..b0b5048b729 100644 --- a/addons/account_anglo_saxon/i18n/el.po +++ b/addons/account_anglo_saxon/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/en_GB.po b/addons/account_anglo_saxon/i18n/en_GB.po index 7bae7ec424a..727715f3107 100644 --- a/addons/account_anglo_saxon/i18n/en_GB.po +++ b/addons/account_anglo_saxon/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es.po b/addons/account_anglo_saxon/i18n/es.po index 8998739213f..60ff21a40f2 100644 --- a/addons/account_anglo_saxon/i18n/es.po +++ b/addons/account_anglo_saxon/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_CR.po b/addons/account_anglo_saxon/i18n/es_CR.po index 6aa0ab9d172..818c4efa0b4 100644 --- a/addons/account_anglo_saxon/i18n/es_CR.po +++ b/addons/account_anglo_saxon/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/es_EC.po b/addons/account_anglo_saxon/i18n/es_EC.po index 6898bdb4cd6..bceb391ae8f 100644 --- a/addons/account_anglo_saxon/i18n/es_EC.po +++ b/addons/account_anglo_saxon/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_MX.po b/addons/account_anglo_saxon/i18n/es_MX.po index eb8a8c49937..d6f2e225513 100644 --- a/addons/account_anglo_saxon/i18n/es_MX.po +++ b/addons/account_anglo_saxon/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_PY.po b/addons/account_anglo_saxon/i18n/es_PY.po index 8ab99ecfdef..ef89cfa0d06 100644 --- a/addons/account_anglo_saxon/i18n/es_PY.po +++ b/addons/account_anglo_saxon/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/et.po b/addons/account_anglo_saxon/i18n/et.po index cad03923f8a..9f87a6f109b 100644 --- a/addons/account_anglo_saxon/i18n/et.po +++ b/addons/account_anglo_saxon/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fa.po b/addons/account_anglo_saxon/i18n/fa.po index f0d793e7915..2cd90807332 100644 --- a/addons/account_anglo_saxon/i18n/fa.po +++ b/addons/account_anglo_saxon/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fi.po b/addons/account_anglo_saxon/i18n/fi.po index b770ff8b73f..024f5f9e18e 100644 --- a/addons/account_anglo_saxon/i18n/fi.po +++ b/addons/account_anglo_saxon/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fr.po b/addons/account_anglo_saxon/i18n/fr.po index d5c8f9b5cd2..d89860450e7 100644 --- a/addons/account_anglo_saxon/i18n/fr.po +++ b/addons/account_anglo_saxon/i18n/fr.po @@ -9,14 +9,14 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-03 20:36+0000\n" -"Last-Translator: Frederic Clementi - Camptocamp.com " +"Last-Translator: Frederic Clementi - Camptocamp " "\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-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gl.po b/addons/account_anglo_saxon/i18n/gl.po index 8aae4de02ec..7ffbcff2fd4 100644 --- a/addons/account_anglo_saxon/i18n/gl.po +++ b/addons/account_anglo_saxon/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gu.po b/addons/account_anglo_saxon/i18n/gu.po index c2229a9fcee..b66764ccf25 100644 --- a/addons/account_anglo_saxon/i18n/gu.po +++ b/addons/account_anglo_saxon/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hi.po b/addons/account_anglo_saxon/i18n/hi.po index 2c2d3e6f2d2..90037394f09 100644 --- a/addons/account_anglo_saxon/i18n/hi.po +++ b/addons/account_anglo_saxon/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hr.po b/addons/account_anglo_saxon/i18n/hr.po index 4924afd5edc..9f54e1ec00a 100644 --- a/addons/account_anglo_saxon/i18n/hr.po +++ b/addons/account_anglo_saxon/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hu.po b/addons/account_anglo_saxon/i18n/hu.po index dfdd52944de..46386da7499 100644 --- a/addons/account_anglo_saxon/i18n/hu.po +++ b/addons/account_anglo_saxon/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/id.po b/addons/account_anglo_saxon/i18n/id.po index 4a1e5abce31..a24a24b4cf0 100644 --- a/addons/account_anglo_saxon/i18n/id.po +++ b/addons/account_anglo_saxon/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/it.po b/addons/account_anglo_saxon/i18n/it.po index dc2d112555a..6c0e9808d43 100644 --- a/addons/account_anglo_saxon/i18n/it.po +++ b/addons/account_anglo_saxon/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 22:40+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \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: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ja.po b/addons/account_anglo_saxon/i18n/ja.po index f608e7a825c..e011731b2d8 100644 --- a/addons/account_anglo_saxon/i18n/ja.po +++ b/addons/account_anglo_saxon/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/lv.po b/addons/account_anglo_saxon/i18n/lv.po index 8c44a486381..f09ebdad476 100644 --- a/addons/account_anglo_saxon/i18n/lv.po +++ b/addons/account_anglo_saxon/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/mk.po b/addons/account_anglo_saxon/i18n/mk.po index b50e699d036..7ae4b5077c7 100644 --- a/addons/account_anglo_saxon/i18n/mk.po +++ b/addons/account_anglo_saxon/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/mn.po b/addons/account_anglo_saxon/i18n/mn.po index 58b5708fa31..31e84369d1d 100644 --- a/addons/account_anglo_saxon/i18n/mn.po +++ b/addons/account_anglo_saxon/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nb.po b/addons/account_anglo_saxon/i18n/nb.po index 51266cf107b..ad3a427cb91 100644 --- a/addons/account_anglo_saxon/i18n/nb.po +++ b/addons/account_anglo_saxon/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl.po b/addons/account_anglo_saxon/i18n/nl.po index e5b77c550ad..0720f7996ad 100644 --- a/addons/account_anglo_saxon/i18n/nl.po +++ b/addons/account_anglo_saxon/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl_BE.po b/addons/account_anglo_saxon/i18n/nl_BE.po index e32631d83df..9761e1acca3 100644 --- a/addons/account_anglo_saxon/i18n/nl_BE.po +++ b/addons/account_anglo_saxon/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 13:28+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \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: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/oc.po b/addons/account_anglo_saxon/i18n/oc.po index 3ea06237cb5..b8d56caa4f9 100644 --- a/addons/account_anglo_saxon/i18n/oc.po +++ b/addons/account_anglo_saxon/i18n/oc.po @@ -14,39 +14,39 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category msgid "Product Category" -msgstr "" +msgstr "Categoria de produches" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Linhas de factura" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_purchase_order msgid "Purchase Order" -msgstr "" +msgstr "La comanda de crompa" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_template msgid "Product Template" -msgstr "" +msgstr "Modèl de produch" #. module: account_anglo_saxon #: field:product.category,property_account_creditor_price_difference_categ:0 #: field:product.template,property_account_creditor_price_difference:0 msgid "Price Difference Account" -msgstr "" +msgstr "Compte d'escart de prètz" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Factura" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_stock_picking diff --git a/addons/account_anglo_saxon/i18n/pl.po b/addons/account_anglo_saxon/i18n/pl.po index f64c6dc14b8..f5c17ebabfb 100644 --- a/addons/account_anglo_saxon/i18n/pl.po +++ b/addons/account_anglo_saxon/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category @@ -25,17 +25,17 @@ msgstr "Kategoria Produktu" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Pozycja faktury" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_purchase_order msgid "Purchase Order" -msgstr "" +msgstr "Zamówienie zakupu" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_template msgid "Product Template" -msgstr "" +msgstr "Szablon produktu" #. module: account_anglo_saxon #: field:product.category,property_account_creditor_price_difference_categ:0 @@ -51,7 +51,7 @@ msgstr "Faktura" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "Pobranie" #. module: account_anglo_saxon #: help:product.category,property_account_creditor_price_difference_categ:0 diff --git a/addons/account_anglo_saxon/i18n/pt.po b/addons/account_anglo_saxon/i18n/pt.po index 35640df483f..1819bd83779 100644 --- a/addons/account_anglo_saxon/i18n/pt.po +++ b/addons/account_anglo_saxon/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pt_BR.po b/addons/account_anglo_saxon/i18n/pt_BR.po index 671c152d8ce..73bf2cd50cc 100644 --- a/addons/account_anglo_saxon/i18n/pt_BR.po +++ b/addons/account_anglo_saxon/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-20 11:04+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\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-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ro.po b/addons/account_anglo_saxon/i18n/ro.po index 8c1ded2289a..9fa3ccb6e00 100644 --- a/addons/account_anglo_saxon/i18n/ro.po +++ b/addons/account_anglo_saxon/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ru.po b/addons/account_anglo_saxon/i18n/ru.po index eb87f968377..d9a50e4d4bf 100644 --- a/addons/account_anglo_saxon/i18n/ru.po +++ b/addons/account_anglo_saxon/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sl.po b/addons/account_anglo_saxon/i18n/sl.po index b85cdebd6af..e6ded28a039 100644 --- a/addons/account_anglo_saxon/i18n/sl.po +++ b/addons/account_anglo_saxon/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sq.po b/addons/account_anglo_saxon/i18n/sq.po index e0f65129a82..f2d0d20ffb6 100644 --- a/addons/account_anglo_saxon/i18n/sq.po +++ b/addons/account_anglo_saxon/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:07+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sr@latin.po b/addons/account_anglo_saxon/i18n/sr@latin.po index 3c4719a4c9f..3bfb5be2ef2 100644 --- a/addons/account_anglo_saxon/i18n/sr@latin.po +++ b/addons/account_anglo_saxon/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sv.po b/addons/account_anglo_saxon/i18n/sv.po index b8ad3c12d70..fc86185a7d2 100644 --- a/addons/account_anglo_saxon/i18n/sv.po +++ b/addons/account_anglo_saxon/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ta.po b/addons/account_anglo_saxon/i18n/ta.po index 0782bf9ec3a..e306c9d8a9b 100644 --- a/addons/account_anglo_saxon/i18n/ta.po +++ b/addons/account_anglo_saxon/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/tr.po b/addons/account_anglo_saxon/i18n/tr.po index 0e96cdc5c57..b1866d39334 100644 --- a/addons/account_anglo_saxon/i18n/tr.po +++ b/addons/account_anglo_saxon/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_CN.po b/addons/account_anglo_saxon/i18n/zh_CN.po index e28aad31fcb..c0559716402 100644 --- a/addons/account_anglo_saxon/i18n/zh_CN.po +++ b/addons/account_anglo_saxon/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_TW.po b/addons/account_anglo_saxon/i18n/zh_TW.po index 490022d2ec7..66f2afc5c48 100644 --- a/addons/account_anglo_saxon/i18n/zh_TW.po +++ b/addons/account_anglo_saxon/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:08+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:23+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/test/anglo_saxon.yml b/addons/account_anglo_saxon/test/anglo_saxon.yml index 6e9ebc0068e..042f35a5271 100644 --- a/addons/account_anglo_saxon/test/anglo_saxon.yml +++ b/addons/account_anglo_saxon/test/anglo_saxon.yml @@ -43,6 +43,7 @@ parent_id: account.cash type: other user_type: account.data_account_type_asset + reconcile: True - Configure Creditor Account Payable. - @@ -52,6 +53,7 @@ parent_id: account.a_pay type: other user_type: account.data_account_type_payable + reconcile: True - Configure Debtor Account Receivable. - @@ -61,6 +63,7 @@ parent_id: account.a_recv type: other user_type: account.data_account_type_receivable + reconcile: True - Configure Cost of Good sale Account. - @@ -115,7 +118,7 @@ - product_id: product.product_product_3 product_qty: 1 price_unit: 10 - date_planned: '2013-08-31' + date_planned: !eval "'%s' % (time.strftime('%Y-%m-%d'))" - I confirm the purchase order. - @@ -235,7 +238,7 @@ As the Invoice state of the picking order is To be invoiced. I create invoice for my outgoing picking order. - !python {model: stock.invoice.onshipping}: | - wiz_id = self.create(cr, uid, {'invoice_date': '2013-03-04', 'journal_id': ref('account.sales_journal')}, + wiz_id = self.create(cr, uid, {'journal_id': ref('account.sales_journal')}, {'active_ids': [ref("stock_picking_out001")], "active_model": "stock.picking"}) self.create_invoice(cr, uid, [wiz_id], {"lang": "en_US", "search_default_available": 1, "tz": False, "active_model": "stock.picking", diff --git a/addons/account_anglo_saxon/test/anglo_saxon_avg_fifo.yml b/addons/account_anglo_saxon/test/anglo_saxon_avg_fifo.yml index f7d52f4f5a8..92d331f97d7 100644 --- a/addons/account_anglo_saxon/test/anglo_saxon_avg_fifo.yml +++ b/addons/account_anglo_saxon/test/anglo_saxon_avg_fifo.yml @@ -43,6 +43,7 @@ parent_id: account.cash type: other user_type: account.data_account_type_asset + reconcile: True - Configure Creditor Account Payable. - @@ -52,6 +53,7 @@ parent_id: account.a_pay type: other user_type: account.data_account_type_payable + reconcile: True - Configure Debtor Account Receivable. - @@ -61,6 +63,7 @@ parent_id: account.a_recv type: other user_type: account.data_account_type_receivable + reconcile: True - Configure Cost of Good sale Account. - @@ -122,7 +125,7 @@ - product_id: product_fifo_anglo_saxon product_qty: 1 price_unit: 9 - date_planned: '2013-08-31' + date_planned: !eval "'%s' % (time.strftime('%Y-%m-%d'))" taxes_id: [] - I confirm the purchase order. @@ -237,7 +240,7 @@ As the Invoice state of the picking order is To be invoiced. I create invoice for my outgoing picking order. - !python {model: stock.invoice.onshipping}: | - wiz_id = self.create(cr, uid, {'invoice_date': '2013-03-04', 'journal_id': ref('account.sales_journal')}, + wiz_id = self.create(cr, uid, {'journal_id': ref('account.sales_journal')}, {'active_ids': [ref("stock_picking_out001_fifo")], "active_model": "stock.picking"}) self.create_invoice(cr, uid, [wiz_id], {"lang": "en_US", "search_default_available": 1, "tz": False, "active_model": "stock.picking", diff --git a/addons/account_asset/i18n/ar.po b/addons/account_asset/i18n/ar.po index b399c84cb19..35d45925fc6 100644 --- a/addons/account_asset/i18n/ar.po +++ b/addons/account_asset/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/bs.po b/addons/account_asset/i18n/bs.po index 4b844ea2334..33ae3f440dd 100644 --- a/addons/account_asset/i18n/bs.po +++ b/addons/account_asset/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-29 04:49+0000\n" -"X-Generator: Launchpad (build 16818)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -289,6 +289,7 @@ msgid "" "Prorata temporis can be applied only for time method \"number of " "depreciations\"." msgstr "" +"Prorate temporis može biti primjenjena samo za metodu \"broj amortizacija\"." #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 @@ -537,7 +538,7 @@ msgstr "Opšte" #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "" +msgstr "Prorata Temporis" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -729,22 +730,22 @@ msgstr "Iznos stavki amortizacija" #: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" -msgstr "" +msgstr "Kreirana kretanja amortizacije" #. module: account_asset #: field:account.asset.depreciation.line,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sekvenca" #. module: account_asset #: help:account.asset.category,method_period:0 msgid "State here the time between 2 depreciations, in months" -msgstr "" +msgstr "Ovdje navedite vrijeme između dvije amortizacije, u mjesecima" #. module: account_asset #: field:account.asset.history,date:0 msgid "Date" -msgstr "" +msgstr "Datum" #. module: account_asset #: field:account.asset.asset,method_number:0 @@ -755,20 +756,20 @@ msgstr "" #: selection:account.asset.history,method_time:0 #: field:asset.modify,method_number:0 msgid "Number of Depreciations" -msgstr "" +msgstr "Broj amortizacija" #. module: account_asset #: view:account.asset.asset:0 msgid "Create Move" -msgstr "" +msgstr "Kreiraj kretanje" #. module: account_asset #: view:account.asset.asset:0 msgid "Confirm Asset" -msgstr "" +msgstr "Potvrdi osnovno sredstvo" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" -msgstr "" +msgstr "Hijerarhija osnovnog sredstva" diff --git a/addons/account_asset/i18n/ca.po b/addons/account_asset/i18n/ca.po index dfa8458ecce..5ebe3f2a874 100755 --- a/addons/account_asset/i18n/ca.po +++ b/addons/account_asset/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/cs.po b/addons/account_asset/i18n/cs.po index 2e16fefa17a..6bd6bf84a4a 100644 --- a/addons/account_asset/i18n/cs.po +++ b/addons/account_asset/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Language: Czech\n" #. module: account_asset diff --git a/addons/account_asset/i18n/da.po b/addons/account_asset/i18n/da.po index 664f5c86770..3cadef3aacd 100644 --- a/addons/account_asset/i18n/da.po +++ b/addons/account_asset/i18n/da.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in draft and open states" -msgstr "" +msgstr "AnlægsAktiver i status kladde og åben" #. module: account_asset #: field:account.asset.category,method_end:0 @@ -32,22 +32,22 @@ msgstr "Slut dato" #. module: account_asset #: field:account.asset.asset,value_residual:0 msgid "Residual Value" -msgstr "" +msgstr "Restværdi" #. module: account_asset #: field:account.asset.category,account_expense_depreciation_id:0 msgid "Depr. Expense Account" -msgstr "" +msgstr "Udgået udgifts konto" #. module: account_asset #: view:asset.asset.report:0 msgid "Group By..." -msgstr "" +msgstr "Gruppér efter..." #. module: account_asset #: field:asset.asset.report,gross_value:0 msgid "Gross Amount" -msgstr "" +msgstr "Brutto beløb" #. module: account_asset #: view:account.asset.asset:0 @@ -58,7 +58,7 @@ msgstr "" #: field:asset.asset.report,asset_id:0 #: model:ir.model,name:account_asset.model_account_asset_asset msgid "Asset" -msgstr "" +msgstr "Aktiv" #. module: account_asset #: help:account.asset.asset,prorata:0 @@ -67,12 +67,14 @@ msgid "" "Indicates that the first depreciation entry for this asset have to be done " "from the purchase date instead of the first January" msgstr "" +"Angiver at første nedskrivning for dette aktiv skal udføres fra købsdato i " +"stedet for 1. januar" #. module: account_asset #: selection:account.asset.asset,method:0 #: selection:account.asset.category,method:0 msgid "Linear" -msgstr "" +msgstr "Lineær" #. module: account_asset #: field:account.asset.asset,company_id:0 @@ -80,24 +82,24 @@ msgstr "" #: view:asset.asset.report:0 #: field:asset.asset.report,company_id:0 msgid "Company" -msgstr "" +msgstr "Firma" #. module: account_asset #: view:asset.modify:0 msgid "Modify" -msgstr "" +msgstr "Rediger" #. module: account_asset #: selection:account.asset.asset,state:0 #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Running" -msgstr "" +msgstr "Kører" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Draft" -msgstr "" +msgstr "Sæt til udkast" #. module: account_asset #: view:asset.asset.report:0 @@ -105,12 +107,12 @@ msgstr "" #: model:ir.model,name:account_asset.model_asset_asset_report #: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report msgid "Assets Analysis" -msgstr "" +msgstr "AnlægsAktiv analyse" #. module: account_asset #: field:asset.modify,name:0 msgid "Reason" -msgstr "" +msgstr "Årsag" #. module: account_asset #: field:account.asset.asset,method_progress_factor:0 @@ -122,7 +124,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal msgid "Asset Categories" -msgstr "" +msgstr "Aktiv kategori" #. module: account_asset #: view:account.asset.asset:0 @@ -130,13 +132,13 @@ msgstr "" #: field:account.move.line,entry_ids:0 #: model:ir.actions.act_window,name:account_asset.act_entries_open msgid "Entries" -msgstr "" +msgstr "Poster" #. module: account_asset #: view:account.asset.asset:0 #: field:account.asset.asset,depreciation_line_ids:0 msgid "Depreciation Lines" -msgstr "" +msgstr "Afskrivning linier" #. module: account_asset #: help:account.asset.asset,salvage_value:0 @@ -146,14 +148,14 @@ msgstr "" #. module: account_asset #: help:account.asset.asset,method_period:0 msgid "The amount of time between two depreciations, in months" -msgstr "" +msgstr "Tiden mellem afskrivninger i måneder" #. module: account_asset #: field:account.asset.depreciation.line,depreciation_date:0 #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_date:0 msgid "Depreciation Date" -msgstr "" +msgstr "Afskrivnings dato" #. module: account_asset #: constraint:account.asset.asset:0 @@ -163,7 +165,7 @@ msgstr "" #. module: account_asset #: field:asset.asset.report,posted_value:0 msgid "Posted Amount" -msgstr "" +msgstr "Bogført beløb" #. module: account_asset #: view:account.asset.asset:0 @@ -173,12 +175,12 @@ msgstr "" #: model:ir.ui.menu,name:account_asset.menu_finance_assets #: model:ir.ui.menu,name:account_asset.menu_finance_config_assets msgid "Assets" -msgstr "" +msgstr "Anlægs aktiver" #. module: account_asset #: field:account.asset.category,account_depreciation_id:0 msgid "Depreciation Account" -msgstr "" +msgstr "Afskrivnings konto" #. module: account_asset #: view:account.asset.asset:0 @@ -187,7 +189,7 @@ msgstr "" #: view:asset.modify:0 #: field:asset.modify,note:0 msgid "Notes" -msgstr "" +msgstr "Noter" #. module: account_asset #: field:account.asset.depreciation.line,move_id:0 @@ -198,12 +200,12 @@ msgstr "" #: view:asset.asset.report:0 #: field:asset.asset.report,nbr:0 msgid "# of Depreciation Lines" -msgstr "" +msgstr "# af afskrivnings linier" #. module: account_asset #: field:account.asset.asset,method_period:0 msgid "Number of Months in a Period" -msgstr "" +msgstr "Antal måneder i en periode" #. module: account_asset #: view:asset.asset.report:0 @@ -216,12 +218,12 @@ msgstr "" #: selection:account.asset.category,method_time:0 #: selection:account.asset.history,method_time:0 msgid "Ending Date" -msgstr "" +msgstr "Slut dato" #. module: account_asset #: field:account.asset.asset,code:0 msgid "Reference" -msgstr "" +msgstr "Reference" #. module: account_asset #: view:account.asset.asset:0 @@ -232,14 +234,14 @@ msgstr "" #: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard #: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard msgid "Compute Assets" -msgstr "" +msgstr "Beregn anlægsaktiver" #. module: account_asset #: field:account.asset.category,method_period:0 #: field:account.asset.history,method_period:0 #: field:asset.modify,method_period:0 msgid "Period Length" -msgstr "" +msgstr "Periode længde" #. module: account_asset #: selection:account.asset.asset,state:0 @@ -251,7 +253,7 @@ msgstr "" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of asset purchase" -msgstr "" +msgstr "Dato for køb af aktiv" #. module: account_asset #: view:account.asset.asset:0 @@ -441,7 +443,7 @@ msgstr "" #. module: account_asset #: field:account.asset.asset,child_ids:0 msgid "Children Assets" -msgstr "" +msgstr "Under anlægsaktiver" #. module: account_asset #: view:asset.asset.report:0 @@ -738,4 +740,4 @@ msgstr "" #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" -msgstr "" +msgstr "Anlægs Aktiv hierarki" diff --git a/addons/account_asset/i18n/de.po b/addons/account_asset/i18n/de.po index ec1c249cd1e..c1fb9ce375d 100755 --- a/addons/account_asset/i18n/de.po +++ b/addons/account_asset/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -28,12 +28,12 @@ msgstr "Anlagengüter - Entwurf und Offen" #: field:account.asset.history,method_end:0 #: field:asset.modify,method_end:0 msgid "Ending date" -msgstr "Ende Datum" +msgstr "Enddatum" #. module: account_asset #: field:account.asset.asset,value_residual:0 msgid "Residual Value" -msgstr "Rest Buchwert" +msgstr "Restbuchwert" #. module: account_asset #: field:account.asset.category,account_expense_depreciation_id:0 @@ -48,7 +48,7 @@ msgstr "Gruppierung..." #. module: account_asset #: field:asset.asset.report,gross_value:0 msgid "Gross Amount" -msgstr "Brutto Betrag" +msgstr "Bruttobetrag" #. module: account_asset #: view:account.asset.asset:0 @@ -100,7 +100,7 @@ msgstr "In Betrieb" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Draft" -msgstr "Setze auf Entwurf" +msgstr "Auf 'Entwurf' setzen" #. module: account_asset #: view:asset.asset.report:0 @@ -108,7 +108,7 @@ msgstr "Setze auf Entwurf" #: model:ir.model,name:account_asset.model_asset_asset_report #: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report msgid "Assets Analysis" -msgstr "Anlagen Analyse" +msgstr "Anlagenanalyse" #. module: account_asset #: field:asset.modify,name:0 @@ -125,7 +125,7 @@ msgstr "Degressiver Faktor" #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal msgid "Asset Categories" -msgstr "Anlagen Kategorien" +msgstr "Anlagenkategorien" #. module: account_asset #: view:account.asset.asset:0 @@ -139,7 +139,7 @@ msgstr "Buchungen" #: view:account.asset.asset:0 #: field:account.asset.asset,depreciation_line_ids:0 msgid "Depreciation Lines" -msgstr "Abschreibungs Buchungen" +msgstr "Abschreibungsbuchungen" #. module: account_asset #: help:account.asset.asset,salvage_value:0 @@ -158,7 +158,7 @@ msgstr "" #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_date:0 msgid "Depreciation Date" -msgstr "Abschreibungs Datum" +msgstr "Abschreibungsdatum" #. module: account_asset #: constraint:account.asset.asset:0 @@ -183,7 +183,7 @@ msgstr "Anlagegüter" #. module: account_asset #: field:account.asset.category,account_depreciation_id:0 msgid "Depreciation Account" -msgstr "kum. Wertberichtigungskonto" +msgstr "Kum. Wertberichtigungskonto" #. module: account_asset #: view:account.asset.asset:0 @@ -231,20 +231,20 @@ msgstr "Referenz" #. module: account_asset #: view:account.asset.asset:0 msgid "Account Asset" -msgstr "Anlage Konto" +msgstr "Anlagekonto" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard #: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard msgid "Compute Assets" -msgstr "Berechne Anlagen" +msgstr "Anlagen berechnen" #. module: account_asset #: field:account.asset.category,method_period:0 #: field:account.asset.history,method_period:0 #: field:asset.modify,method_period:0 msgid "Period Length" -msgstr "Perioden Länge" +msgstr "Periodenlänge" #. module: account_asset #: selection:account.asset.asset,state:0 @@ -261,7 +261,7 @@ msgstr "Kaufdatum der Anlage" #. module: account_asset #: view:account.asset.asset:0 msgid "Change Duration" -msgstr "Verändere Lebensdauer" +msgstr "Lebensdauer verändern" #. module: account_asset #: help:account.asset.asset,method_number:0 @@ -294,7 +294,7 @@ msgid "" "Prorata temporis can be applied only for time method \"number of " "depreciations\"." msgstr "" -"Pro Rata Temporis Abschreibung kann nur für die Methode \"Anzahl der " +"'Pro rata temporis'-Abschreibung kann nur für die Methode \"Anzahl der " "Abschreibung\" verwendet werden" #. module: account_asset @@ -312,7 +312,7 @@ msgstr "Zeit in Monaten zwischen 2 Abschreibungen" #: model:ir.actions.act_window,name:account_asset.action_asset_modify #: model:ir.model,name:account_asset.model_asset_modify msgid "Modify Asset" -msgstr "Anlage Ändern" +msgstr "Anlage ändern" #. module: account_asset #: field:account.asset.asset,salvage_value:0 @@ -330,7 +330,7 @@ msgstr "Anlagenkategorie" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in closed state" -msgstr "abgeschlossene Anlagen" +msgstr "Abgeschlossene Anlagen" #. module: account_asset #: field:account.asset.asset,parent_id:0 @@ -346,7 +346,7 @@ msgstr "Anlagenhistorie" #. module: account_asset #: view:account.asset.category:0 msgid "Search Asset Category" -msgstr "Suche Anlagen Kategorie" +msgstr "Anlagenkategorie suchen" #. module: account_asset #: view:asset.modify:0 @@ -373,7 +373,7 @@ msgstr "Nicht verbuchter Betrag" #: field:account.asset.category,method_time:0 #: field:account.asset.history,method_time:0 msgid "Time Method" -msgstr "Zeit Methode" +msgstr "Zeitmethode" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 @@ -397,12 +397,12 @@ msgid "" "Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" -"Die Methode, die verwendet wird, um das Datum und Anzahl der " -"Abschreibungesbuchungen zu berechnen.\n" +"Die Methode, die verwendet wird, um das Datum und die Anzahl der " +"Abschreibungsbuchungen zu berechnen.\n" "Anzahl der Abschreibungen: Anzahl der Abschreibungsbuchungen und Zeit " -"zwischen 2 Abschreibungen.\n" -"Ende Datum: Wählen Sie die Zeit zwischen 2 Abschreibungen und das Datum nach " -"dem keine Abschreibungen mehr berechnet werden." +"zwischen zwei Abschreibungen.\n" +"Enddatum: Wählen Sie die Zeit zwischen zwei Abschreibungen und das Datum " +"nach dem keine Abschreibungen mehr berechnet werden." #. module: account_asset #: help:account.asset.asset,method_time:0 @@ -417,14 +417,14 @@ msgid "" msgstr "" "Wählen Sie die Methode für Datum und Anzahl der Abschreibungen.\n" " * Anzahl der Abschreibungen: Definieren Sie die Anzahl der Abschreibungen " -"und die Perioden zwischen 2 Abschreibungen.\n" -" * End Datum: Wählen Sie die Zeit zwischen 2 Abschreibungen und das End " -"Datum." +"und die Perioden zwischen zwei Abschreibungen.\n" +" * Enddatum: Wählen Sie die Zeit zwischen zwei Abschreibungen und das " +"Enddatum." #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in running state" -msgstr "Anlage Aktiv" +msgstr "Anlage 'aktiv'" #. module: account_asset #: view:account.asset.asset:0 @@ -441,7 +441,7 @@ msgid "" "line of depreciation is posted, the asset automatically goes in that status." msgstr "" "Wenn eine Anlage angelegt wird, ist der Status \"Entwurf\". Nach Bestätigung " -"der Anlage wird diese aktiv und Abschreibungen können verbucht werden. Sie " +"der Anlage wird diese 'aktiv' und Abschreibungen können verbucht werden. Sie " "können die Anlage automatisch schließen, wenn die Abschreibungen vorbei " "sind. Nach Verbuchung der letzen Abschreibung wird die Anlage automatisch " "geschlossen." @@ -466,7 +466,7 @@ msgstr "Verbuchte Abschreibungen" #. module: account_asset #: field:account.asset.asset,child_ids:0 msgid "Children Assets" -msgstr "untergeordnete Anlagen" +msgstr "Untergeordnete Anlagen" #. module: account_asset #: view:asset.asset.report:0 @@ -481,7 +481,7 @@ msgstr "Benutzer" #. module: account_asset #: field:account.asset.category,account_asset_id:0 msgid "Asset Account" -msgstr "Anlagen Konto" +msgstr "Anlagenkonto" #. module: account_asset #: view:asset.asset.report:0 @@ -517,7 +517,7 @@ msgstr "Status der Anlage" #. module: account_asset #: field:account.asset.depreciation.line,name:0 msgid "Depreciation Name" -msgstr "Abschreibung Bezeichnung" +msgstr "Abschreibungsbezeichnung" #. module: account_asset #: view:account.asset.asset:0 @@ -528,7 +528,7 @@ msgstr "Verlauf" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute Asset" -msgstr "Berechne Anlagen" +msgstr "Anlagen berechnen" #. module: account_asset #: field:asset.depreciation.confirmation.wizard,period_id:0 @@ -544,7 +544,7 @@ msgstr "Allgemein" #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "Prorata Temporis" +msgstr "Pro rata temporis" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -576,7 +576,7 @@ msgstr "Journaleinträge" #. module: account_asset #: view:asset.modify:0 msgid "Asset Durations to Modify" -msgstr "Anlage Lebensdauer verändern" +msgstr "Lebensdauer der Anlage verändern" #. module: account_asset #: field:account.asset.asset,purchase_date:0 @@ -623,12 +623,12 @@ msgstr "Anlagegut Bezeichnung" #. module: account_asset #: field:account.asset.category,open_asset:0 msgid "Skip Draft State" -msgstr "Überspringe Entwurf Status" +msgstr "Überspringe Entwurfsstatus" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Dates" -msgstr "Abschreibung Datum" +msgstr "Abschreibungsdatum" #. module: account_asset #: field:account.asset.asset,currency_id:0 @@ -643,7 +643,7 @@ msgstr "Journal" #. module: account_asset #: field:account.asset.history,name:0 msgid "History name" -msgstr "Verlauf Bezeichnung" +msgstr "Verlauf-Bezeichnung" #. module: account_asset #: field:account.asset.depreciation.line,depreciated_value:0 @@ -683,8 +683,8 @@ msgid "" "

\n" " " msgstr "" -"Über diesen Report erhalten Sie einen Überblick über alle Abschreibungen. " -"Die Suche kann auch zur \n" +"In diesem Report erhalten Sie einen Überblick über alle Abschreibungen. Die " +"Suche kann auch zur \n" "individuellen und persönlichen Auswertung über das Anlagevermögen benutzt " "werden.\n" " " @@ -692,7 +692,7 @@ msgstr "" #. module: account_asset #: field:account.asset.asset,purchase_value:0 msgid "Gross Value" -msgstr "Brutto Erlös" +msgstr "Bruttoerlös" #. module: account_asset #: field:account.asset.category,name:0 @@ -716,14 +716,14 @@ msgstr "Jahr" #. module: account_asset #: model:ir.model,name:account_asset.model_account_asset_depreciation_line msgid "Asset depreciation line" -msgstr "Anlage Abschreibungeszeile" +msgstr "Anlage Abschreibungszeile" #. module: account_asset #: view:account.asset.category:0 #: field:asset.asset.report,asset_category_id:0 #: model:ir.model,name:account_asset.model_account_asset_category msgid "Asset category" -msgstr "Analgenkategorie" +msgstr "Anlagenkategorie" #. module: account_asset #: view:asset.asset.report:0 @@ -745,7 +745,7 @@ msgstr "Sequenz" #. module: account_asset #: help:account.asset.category,method_period:0 msgid "State here the time between 2 depreciations, in months" -msgstr "Definieren Sie hier die Monate zwischen 2 Abschreibungen" +msgstr "Definieren Sie hier die Monate zwischen zwei Abschreibungen" #. module: account_asset #: field:account.asset.history,date:0 @@ -766,18 +766,18 @@ msgstr "Anzahl der Abschreibungen" #. module: account_asset #: view:account.asset.asset:0 msgid "Create Move" -msgstr "Erzeuge Buchung" +msgstr "Buchung erzeugen" #. module: account_asset #: view:account.asset.asset:0 msgid "Confirm Asset" -msgstr "Bestätige Anlage" +msgstr "Anlage bestätigen" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" -msgstr "Anlangenhierarchie" +msgstr "Anlagenhierarchie" #~ msgid "Child assets" #~ msgstr "untergeordnete Anlagengüter" diff --git a/addons/account_asset/i18n/en_GB.po b/addons/account_asset/i18n/en_GB.po index c06683166e5..5fd9c635806 100644 --- a/addons/account_asset/i18n/en_GB.po +++ b/addons/account_asset/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es.po b/addons/account_asset/i18n/es.po index 63f22c0aa51..61cbfed1fb2 100755 --- a/addons/account_asset/i18n/es.po +++ b/addons/account_asset/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_AR.po b/addons/account_asset/i18n/es_AR.po index 12214aa2f97..64cafc2f6d5 100644 --- a/addons/account_asset/i18n/es_AR.po +++ b/addons/account_asset/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_CR.po b/addons/account_asset/i18n/es_CR.po index 22136b670fc..a34c0945725 100755 --- a/addons/account_asset/i18n/es_CR.po +++ b/addons/account_asset/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: account_asset diff --git a/addons/account_asset/i18n/es_EC.po b/addons/account_asset/i18n/es_EC.po index 57dc3cb3b8c..91fb78ae064 100644 --- a/addons/account_asset/i18n/es_EC.po +++ b/addons/account_asset/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_MX.po b/addons/account_asset/i18n/es_MX.po index e75348123ba..30792b2c5e9 100644 --- a/addons/account_asset/i18n/es_MX.po +++ b/addons/account_asset/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/et.po b/addons/account_asset/i18n/et.po index f5511947853..c5db79fb12a 100644 --- a/addons/account_asset/i18n/et.po +++ b/addons/account_asset/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/fi.po b/addons/account_asset/i18n/fi.po index 169f6f97fd0..35a2f32d4ca 100644 --- a/addons/account_asset/i18n/fi.po +++ b/addons/account_asset/i18n/fi.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in draft and open states" -msgstr "" +msgstr "Ehdotetut ja avoimet varat" #. module: account_asset #: field:account.asset.category,method_end:0 @@ -67,6 +67,8 @@ msgid "" "Indicates that the first depreciation entry for this asset have to be done " "from the purchase date instead of the first January" msgstr "" +"Ilmaisee että ensimmäinen poisto näitä varoja varten täytyy tehdä " +"ostopäivästä alkaen tammikuun ensimmäisen päivän sijaan." #. module: account_asset #: selection:account.asset.asset,method:0 @@ -105,7 +107,7 @@ msgstr "" #: model:ir.model,name:account_asset.model_asset_asset_report #: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report msgid "Assets Analysis" -msgstr "" +msgstr "Varallisuusanalyysi" #. module: account_asset #: field:asset.modify,name:0 @@ -116,13 +118,13 @@ msgstr "" #: field:account.asset.asset,method_progress_factor:0 #: field:account.asset.category,method_progress_factor:0 msgid "Degressive Factor" -msgstr "" +msgstr "Degressiivinen kerroin" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal msgid "Asset Categories" -msgstr "" +msgstr "Varallisuuskategoriat" #. module: account_asset #: view:account.asset.asset:0 @@ -136,7 +138,7 @@ msgstr "" #: view:account.asset.asset:0 #: field:account.asset.asset,depreciation_line_ids:0 msgid "Depreciation Lines" -msgstr "" +msgstr "Poistojen rivit" #. module: account_asset #: help:account.asset.asset,salvage_value:0 @@ -153,7 +155,7 @@ msgstr "" #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_date:0 msgid "Depreciation Date" -msgstr "" +msgstr "Poistojen pvm" #. module: account_asset #: constraint:account.asset.asset:0 @@ -178,7 +180,7 @@ msgstr "" #. module: account_asset #: field:account.asset.category,account_depreciation_id:0 msgid "Depreciation Account" -msgstr "" +msgstr "Poistojen tili" #. module: account_asset #: view:account.asset.asset:0 @@ -192,13 +194,13 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,move_id:0 msgid "Depreciation Entry" -msgstr "" +msgstr "Poistojen kirjaus" #. module: account_asset #: view:asset.asset.report:0 #: field:asset.asset.report,nbr:0 msgid "# of Depreciation Lines" -msgstr "" +msgstr "Poistorivien lkm" #. module: account_asset #: field:account.asset.asset,method_period:0 @@ -208,7 +210,7 @@ msgstr "" #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in draft state" -msgstr "" +msgstr "Ehdotetut varat" #. module: account_asset #: field:account.asset.asset,method_end:0 @@ -232,14 +234,14 @@ msgstr "" #: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard #: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard msgid "Compute Assets" -msgstr "" +msgstr "Laske varat" #. module: account_asset #: field:account.asset.category,method_period:0 #: field:account.asset.history,method_period:0 #: field:asset.modify,method_period:0 msgid "Period Length" -msgstr "" +msgstr "Jakson pituus" #. module: account_asset #: selection:account.asset.asset,state:0 @@ -251,12 +253,12 @@ msgstr "" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of asset purchase" -msgstr "" +msgstr "Varojen hankintapäivä" #. module: account_asset #: view:account.asset.asset:0 msgid "Change Duration" -msgstr "" +msgstr "Muuta kesto" #. module: account_asset #: help:account.asset.asset,method_number:0 @@ -279,7 +281,7 @@ msgstr "" #: field:account.asset.asset,method:0 #: field:account.asset.category,method:0 msgid "Computation Method" -msgstr "" +msgstr "Laskutapa" #. module: account_asset #: constraint:account.asset.asset:0 @@ -296,19 +298,19 @@ msgstr "" #. module: account_asset #: help:account.asset.history,method_period:0 msgid "Time in month between two depreciations" -msgstr "" +msgstr "Kahden poiston väli kuukauden aikana" #. module: account_asset #: view:asset.modify:0 #: model:ir.actions.act_window,name:account_asset.action_asset_modify #: model:ir.model,name:account_asset.model_asset_modify msgid "Modify Asset" -msgstr "" +msgstr "Muokkaa varoja" #. module: account_asset #: field:account.asset.asset,salvage_value:0 msgid "Salvage Value" -msgstr "" +msgstr "Jäännösarvo" #. module: account_asset #: field:account.asset.asset,category_id:0 @@ -316,12 +318,12 @@ msgstr "" #: field:account.invoice.line,asset_category_id:0 #: view:asset.asset.report:0 msgid "Asset Category" -msgstr "" +msgstr "Varojen kategoria" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in closed state" -msgstr "" +msgstr "Suljetut varat" #. module: account_asset #: field:account.asset.asset,parent_id:0 @@ -332,12 +334,12 @@ msgstr "" #: view:account.asset.history:0 #: model:ir.model,name:account_asset.model_account_asset_history msgid "Asset history" -msgstr "" +msgstr "Varojen historia" #. module: account_asset #: view:account.asset.category:0 msgid "Search Asset Category" -msgstr "" +msgstr "Hae varojen kategoria" #. module: account_asset #: view:asset.modify:0 @@ -388,6 +390,10 @@ msgid "" "Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Menetelmä laskea päivät ja poistojen lukumäärä.\n" +"Poistojen määrä: Anna poistojen lukumäärä ja kahden poiston välinen aika.\n" +"Loppupäivä: Valite kahden poiston välinen aika ja viimeinen päivä, jonka " +"jälkeen poistot eivät jatku." #. module: account_asset #: help:account.asset.asset,method_time:0 @@ -446,7 +452,7 @@ msgstr "" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of depreciation" -msgstr "" +msgstr "Poistojen pvm" #. module: account_asset #: field:account.asset.history,user_id:0 @@ -456,7 +462,7 @@ msgstr "" #. module: account_asset #: field:account.asset.category,account_asset_id:0 msgid "Asset Account" -msgstr "" +msgstr "Varojen tili" #. module: account_asset #: view:asset.asset.report:0 @@ -467,7 +473,7 @@ msgstr "" #: view:account.asset.asset:0 #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute" -msgstr "" +msgstr "Laske" #. module: account_asset #: view:account.asset.history:0 @@ -487,12 +493,12 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,parent_state:0 msgid "State of Asset" -msgstr "" +msgstr "Varojen tila" #. module: account_asset #: field:account.asset.depreciation.line,name:0 msgid "Depreciation Name" -msgstr "" +msgstr "Poiston nimi" #. module: account_asset #: view:account.asset.asset:0 @@ -503,7 +509,7 @@ msgstr "" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute Asset" -msgstr "" +msgstr "Laske varat" #. module: account_asset #: field:asset.depreciation.confirmation.wizard,period_id:0 @@ -519,7 +525,7 @@ msgstr "" #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "" +msgstr "Suhteessa kuluneeseen aikaan" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -541,7 +547,7 @@ msgstr "" #: selection:account.asset.asset,state:0 #: selection:asset.asset.report,state:0 msgid "Close" -msgstr "" +msgstr "Sulje" #. module: account_asset #: model:ir.model,name:account_asset.model_account_move_line @@ -564,7 +570,7 @@ msgstr "" #: selection:account.asset.asset,method:0 #: selection:account.asset.category,method:0 msgid "Degressive" -msgstr "" +msgstr "Degressiivinen" #. module: account_asset #: help:asset.depreciation.confirmation.wizard,period_id:0 @@ -581,7 +587,7 @@ msgstr "" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Method" -msgstr "" +msgstr "Poistomenetelmä" #. module: account_asset #: field:account.asset.depreciation.line,amount:0 @@ -596,12 +602,12 @@ msgstr "" #. module: account_asset #: field:account.asset.category,open_asset:0 msgid "Skip Draft State" -msgstr "" +msgstr "Ohita ehdotusvaihe" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Dates" -msgstr "" +msgstr "Poistojen päivät" #. module: account_asset #: field:account.asset.asset,currency_id:0 @@ -684,7 +690,7 @@ msgstr "" #: field:asset.asset.report,asset_category_id:0 #: model:ir.model,name:account_asset.model_account_asset_category msgid "Asset category" -msgstr "" +msgstr "Varojen kategoria" #. module: account_asset #: view:asset.asset.report:0 @@ -706,7 +712,7 @@ msgstr "" #. module: account_asset #: help:account.asset.category,method_period:0 msgid "State here the time between 2 depreciations, in months" -msgstr "" +msgstr "Anna kahden poiston välinen aika, kuukausissa." #. module: account_asset #: field:account.asset.history,date:0 @@ -722,7 +728,7 @@ msgstr "" #: selection:account.asset.history,method_time:0 #: field:asset.modify,method_number:0 msgid "Number of Depreciations" -msgstr "" +msgstr "Poistojen lukumäärä" #. module: account_asset #: view:account.asset.asset:0 @@ -732,13 +738,13 @@ msgstr "" #. module: account_asset #: view:account.asset.asset:0 msgid "Confirm Asset" -msgstr "" +msgstr "Vahvista varat" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" -msgstr "" +msgstr "Varojen hierarkia" #~ msgid "Other Information" #~ msgstr "Lisätiedot" diff --git a/addons/account_asset/i18n/fr.po b/addons/account_asset/i18n/fr.po index 653de5d25a3..bd61bbe427e 100755 --- a/addons/account_asset/i18n/fr.po +++ b/addons/account_asset/i18n/fr.po @@ -9,14 +9,14 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-03 20:30+0000\n" -"Last-Translator: Frederic Clementi - Camptocamp.com " +"Last-Translator: Frederic Clementi - Camptocamp " "\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-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/gu.po b/addons/account_asset/i18n/gu.po index 6e4724899a2..45c868e7d85 100644 --- a/addons/account_asset/i18n/gu.po +++ b/addons/account_asset/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/hr.po b/addons/account_asset/i18n/hr.po index f2858a375f3..4ae3cb16d9d 100644 --- a/addons/account_asset/i18n/hr.po +++ b/addons/account_asset/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -404,7 +404,7 @@ msgstr "" #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in running state" -msgstr "" +msgstr "Aktivna osnovna sredstva" #. module: account_asset #: view:account.asset.asset:0 @@ -564,7 +564,7 @@ msgstr "Datum nabave" #: selection:account.asset.asset,method:0 #: selection:account.asset.category,method:0 msgid "Degressive" -msgstr "" +msgstr "Degresivna" #. module: account_asset #: help:asset.depreciation.confirmation.wizard,period_id:0 diff --git a/addons/account_asset/i18n/hu.po b/addons/account_asset/i18n/hu.po index a8a13bc1258..6f2bfafa075 100644 --- a/addons/account_asset/i18n/hu.po +++ b/addons/account_asset/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:27+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/id.po b/addons/account_asset/i18n/id.po index 79ad0dcae9a..82ca2f5c752 100644 --- a/addons/account_asset/i18n/id.po +++ b/addons/account_asset/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/it.po b/addons/account_asset/i18n/it.po index 810d172132c..e9d38a61022 100644 --- a/addons/account_asset/i18n/it.po +++ b/addons/account_asset/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ja.po b/addons/account_asset/i18n/ja.po index 835a0502117..53202e73896 100644 --- a/addons/account_asset/i18n/ja.po +++ b/addons/account_asset/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ko.po b/addons/account_asset/i18n/ko.po index 910aaa638a5..e70973becb5 100644 --- a/addons/account_asset/i18n/ko.po +++ b/addons/account_asset/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/lt.po b/addons/account_asset/i18n/lt.po index f03e23594af..fccf60c32fb 100644 --- a/addons/account_asset/i18n/lt.po +++ b/addons/account_asset/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/mk.po b/addons/account_asset/i18n/mk.po index ab5c6cd547b..bfa5bb834ca 100644 --- a/addons/account_asset/i18n/mk.po +++ b/addons/account_asset/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/mn.po b/addons/account_asset/i18n/mn.po index 8d4eb32ac90..2bfcc84e614 100644 --- a/addons/account_asset/i18n/mn.po +++ b/addons/account_asset/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nb.po b/addons/account_asset/i18n/nb.po index 278be58ce88..6f6e951e5e7 100644 --- a/addons/account_asset/i18n/nb.po +++ b/addons/account_asset/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nl.po b/addons/account_asset/i18n/nl.po index d081832a519..778adfd9c1f 100644 --- a/addons/account_asset/i18n/nl.po +++ b/addons/account_asset/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nl_BE.po b/addons/account_asset/i18n/nl_BE.po index 94ae8273a88..97c67138b6f 100644 --- a/addons/account_asset/i18n/nl_BE.po +++ b/addons/account_asset/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2013-04-15 15:59+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \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: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pl.po b/addons/account_asset/i18n/pl.po index 792a6436a38..ecfc3f10575 100755 --- a/addons/account_asset/i18n/pl.po +++ b/addons/account_asset/i18n/pl.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in draft and open states" -msgstr "" +msgstr "Aktywa w wersjach roboczych i stanie otwartym" #. module: account_asset #: field:account.asset.category,method_end:0 @@ -47,7 +47,7 @@ msgstr "Grupuj wg..." #. module: account_asset #: field:asset.asset.report,gross_value:0 msgid "Gross Amount" -msgstr "" +msgstr "Kwota brutto" #. module: account_asset #: view:account.asset.asset:0 @@ -67,6 +67,8 @@ msgid "" "Indicates that the first depreciation entry for this asset have to be done " "from the purchase date instead of the first January" msgstr "" +"Wskazuje, że pierwszy wpis amortyzacji dla tego aktywu musi zostać wykonany " +"od daty nabycia zamiast od pierwszego stycznia" #. module: account_asset #: selection:account.asset.asset,method:0 @@ -80,7 +82,7 @@ msgstr "Liniowo" #: view:asset.asset.report:0 #: field:asset.asset.report,company_id:0 msgid "Company" -msgstr "" +msgstr "Firma" #. module: account_asset #: view:asset.modify:0 @@ -92,12 +94,12 @@ msgstr "Modyfikuj" #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Running" -msgstr "" +msgstr "Uruchomione" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Draft" -msgstr "" +msgstr "Ustaw jako wersję roboczą" #. module: account_asset #: view:asset.asset.report:0 @@ -105,7 +107,7 @@ msgstr "" #: model:ir.model,name:account_asset.model_asset_asset_report #: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report msgid "Assets Analysis" -msgstr "" +msgstr "Analiza aktywów" #. module: account_asset #: field:asset.modify,name:0 @@ -116,7 +118,7 @@ msgstr "Przyczyna" #: field:account.asset.asset,method_progress_factor:0 #: field:account.asset.category,method_progress_factor:0 msgid "Degressive Factor" -msgstr "" +msgstr "Współczynnik malejący" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal @@ -136,34 +138,35 @@ msgstr "Zapisy" #: view:account.asset.asset:0 #: field:account.asset.asset,depreciation_line_ids:0 msgid "Depreciation Lines" -msgstr "" +msgstr "Wiersze amortyzacji" #. module: account_asset #: help:account.asset.asset,salvage_value:0 msgid "It is the amount you plan to have that you cannot depreciate." msgstr "" +"To jest wartość, którą planujesz posiadać, jej nie możesz amortyzować." #. module: account_asset #: help:account.asset.asset,method_period:0 msgid "The amount of time between two depreciations, in months" -msgstr "" +msgstr "Czas w miesiącach pomiędzy dwoma amortyzacjami" #. module: account_asset #: field:account.asset.depreciation.line,depreciation_date:0 #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_date:0 msgid "Depreciation Date" -msgstr "" +msgstr "Data amortyzacji" #. module: account_asset #: constraint:account.asset.asset:0 msgid "Error ! You cannot create recursive assets." -msgstr "" +msgstr "Błąd! Nie możesz utworzyć rekursywnych aktywów." #. module: account_asset #: field:asset.asset.report,posted_value:0 msgid "Posted Amount" -msgstr "" +msgstr "Wpisana kwota" #. module: account_asset #: view:account.asset.asset:0 @@ -192,23 +195,23 @@ msgstr "Uwagi" #. module: account_asset #: field:account.asset.depreciation.line,move_id:0 msgid "Depreciation Entry" -msgstr "" +msgstr "Wpis amortyzacji" #. module: account_asset #: view:asset.asset.report:0 #: field:asset.asset.report,nbr:0 msgid "# of Depreciation Lines" -msgstr "" +msgstr "# wpisów amortyzacji" #. module: account_asset #: field:account.asset.asset,method_period:0 msgid "Number of Months in a Period" -msgstr "" +msgstr "Ilość miesięcy w okresie" #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in draft state" -msgstr "" +msgstr "Aktywa w wersji roboczej" #. module: account_asset #: field:account.asset.asset,method_end:0 @@ -221,25 +224,25 @@ msgstr "Data końcowa" #. module: account_asset #: field:account.asset.asset,code:0 msgid "Reference" -msgstr "" +msgstr "Odnośnik" #. module: account_asset #: view:account.asset.asset:0 msgid "Account Asset" -msgstr "" +msgstr "Konto aktywów" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard #: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard msgid "Compute Assets" -msgstr "" +msgstr "Obliczanie aktywów" #. module: account_asset #: field:account.asset.category,method_period:0 #: field:account.asset.history,method_period:0 #: field:asset.modify,method_period:0 msgid "Period Length" -msgstr "" +msgstr "Długość okresu" #. module: account_asset #: selection:account.asset.asset,state:0 @@ -251,24 +254,24 @@ msgstr "Projekt" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of asset purchase" -msgstr "" +msgstr "Data zakupu aktywu" #. module: account_asset #: view:account.asset.asset:0 msgid "Change Duration" -msgstr "" +msgstr "Zmiana czasu trwania" #. module: account_asset #: help:account.asset.asset,method_number:0 #: help:account.asset.category,method_number:0 #: help:account.asset.history,method_number:0 msgid "The number of depreciations needed to depreciate your asset" -msgstr "" +msgstr "Ilość amortyzacji potrzebna do amortyzacji twojego aktywu" #. module: account_asset #: view:account.asset.category:0 msgid "Analytic Information" -msgstr "" +msgstr "Informacje analityczne" #. module: account_asset #: field:account.asset.category,account_analytic_id:0 @@ -287,23 +290,25 @@ msgid "" "Prorata temporis can be applied only for time method \"number of " "depreciations\"." msgstr "" +"\"Proporcjonalnie\" może być zastosowane tylko dla metody czasowej \"liczba " +"amortyzacji\"." #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 msgid "Next Period Depreciation" -msgstr "" +msgstr "Następny termin amortyzacji" #. module: account_asset #: help:account.asset.history,method_period:0 msgid "Time in month between two depreciations" -msgstr "" +msgstr "Czas w miesiącach pomiędzy dwiema kolejnymi amortyzacjami" #. module: account_asset #: view:asset.modify:0 #: model:ir.actions.act_window,name:account_asset.action_asset_modify #: model:ir.model,name:account_asset.model_asset_modify msgid "Modify Asset" -msgstr "" +msgstr "Modyfikacja aktywu" #. module: account_asset #: field:account.asset.asset,salvage_value:0 @@ -321,12 +326,12 @@ msgstr "Kategoria środka" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in closed state" -msgstr "" +msgstr "Aktywa w stanie zamkniętym" #. module: account_asset #: field:account.asset.asset,parent_id:0 msgid "Parent Asset" -msgstr "" +msgstr "Aktywa macierzyste" #. module: account_asset #: view:account.asset.history:0 @@ -337,17 +342,17 @@ msgstr "Historia środka" #. module: account_asset #: view:account.asset.category:0 msgid "Search Asset Category" -msgstr "" +msgstr "Szukanie kategorii aktywów" #. module: account_asset #: view:asset.modify:0 msgid "months" -msgstr "" +msgstr "miesięcy" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Pozycja faktury" #. module: account_asset #: view:account.asset.asset:0 @@ -357,20 +362,20 @@ msgstr "Panel amortyzacji" #. module: account_asset #: field:asset.asset.report,unposted_value:0 msgid "Unposted Amount" -msgstr "" +msgstr "Nieopublikowana ilość" #. module: account_asset #: field:account.asset.asset,method_time:0 #: field:account.asset.category,method_time:0 #: field:account.asset.history,method_time:0 msgid "Time Method" -msgstr "" +msgstr "Metoda czasowa" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 #: view:asset.modify:0 msgid "or" -msgstr "" +msgstr "lub" #. module: account_asset #: field:account.asset.asset,note:0 @@ -404,7 +409,7 @@ msgstr "" #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in running state" -msgstr "" +msgstr "Aktywa w stanie aktywnym" #. module: account_asset #: view:account.asset.asset:0 @@ -425,7 +430,7 @@ msgstr "" #: field:account.asset.asset,state:0 #: field:asset.asset.report,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: account_asset #: field:account.asset.asset,partner_id:0 @@ -436,17 +441,17 @@ msgstr "Partner" #. module: account_asset #: view:asset.asset.report:0 msgid "Posted depreciation lines" -msgstr "" +msgstr "Opublikowane pozycje amortyzacji" #. module: account_asset #: field:account.asset.asset,child_ids:0 msgid "Children Assets" -msgstr "" +msgstr "Aktywa pochodne" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of depreciation" -msgstr "" +msgstr "Data amortyzacji" #. module: account_asset #: field:account.asset.history,user_id:0 @@ -461,13 +466,13 @@ msgstr "Konto środków trwałych" #. module: account_asset #: view:asset.asset.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Rozszerzone filtry..." #. module: account_asset #: view:account.asset.asset:0 #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute" -msgstr "" +msgstr "Oblicz" #. module: account_asset #: view:account.asset.history:0 @@ -487,12 +492,12 @@ msgstr "Aktywny" #. module: account_asset #: field:account.asset.depreciation.line,parent_state:0 msgid "State of Asset" -msgstr "" +msgstr "Stan aktywa" #. module: account_asset #: field:account.asset.depreciation.line,name:0 msgid "Depreciation Name" -msgstr "" +msgstr "Nazwa amortyzacji" #. module: account_asset #: view:account.asset.asset:0 @@ -503,7 +508,7 @@ msgstr "Historia" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute Asset" -msgstr "" +msgstr "Oblicz aktywa" #. module: account_asset #: field:asset.depreciation.confirmation.wizard,period_id:0 @@ -513,13 +518,13 @@ msgstr "Okres" #. module: account_asset #: view:account.asset.asset:0 msgid "General" -msgstr "" +msgstr "Ogólne" #. module: account_asset #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "" +msgstr "Dzielone proporcjonalnie" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -529,7 +534,7 @@ msgstr "Faktura" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Close" -msgstr "" +msgstr "Ustaw do zamknięcia" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 @@ -546,25 +551,25 @@ msgstr "Zamknięte" #. module: account_asset #: model:ir.model,name:account_asset.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "Pozycje zapisów dziennika" #. module: account_asset #: view:asset.modify:0 msgid "Asset Durations to Modify" -msgstr "" +msgstr "Czas trwania aktywów do modyfikacji" #. module: account_asset #: field:account.asset.asset,purchase_date:0 #: view:asset.asset.report:0 #: field:asset.asset.report,purchase_date:0 msgid "Purchase Date" -msgstr "" +msgstr "Data nabycia" #. module: account_asset #: selection:account.asset.asset,method:0 #: selection:account.asset.category,method:0 msgid "Degressive" -msgstr "" +msgstr "Malejąco" #. module: account_asset #: help:asset.depreciation.confirmation.wizard,period_id:0 @@ -572,41 +577,43 @@ msgid "" "Choose the period for which you want to automatically post the depreciation " "lines of running assets" msgstr "" +"Wybierz okres czasu, dla którego chcesz automatycznie publikować(księgować) " +"pozycje aktywnych aktywów" #. module: account_asset #: view:account.asset.asset:0 msgid "Current" -msgstr "" +msgstr "Bieżący" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Method" -msgstr "" +msgstr "Metoda amortyzacji" #. module: account_asset #: field:account.asset.depreciation.line,amount:0 msgid "Current Depreciation" -msgstr "" +msgstr "Bieżąca amortyzacja" #. module: account_asset #: field:account.asset.asset,name:0 msgid "Asset Name" -msgstr "" +msgstr "Nazwa aktywa" #. module: account_asset #: field:account.asset.category,open_asset:0 msgid "Skip Draft State" -msgstr "" +msgstr "Pomiń tryb wersji roboczej" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Dates" -msgstr "" +msgstr "Daty amortyzacji" #. module: account_asset #: field:account.asset.asset,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Waluta" #. module: account_asset #: field:account.asset.category,journal_id:0 @@ -621,7 +628,7 @@ msgstr "Nazwa historii" #. module: account_asset #: field:account.asset.depreciation.line,depreciated_value:0 msgid "Amount Already Depreciated" -msgstr "" +msgstr "Wartość już zamortyzowana" #. module: account_asset #: help:account.asset.asset,method:0 @@ -637,7 +644,7 @@ msgstr "" #: view:asset.asset.report:0 #: field:asset.asset.report,move_check:0 msgid "Posted" -msgstr "" +msgstr "Zaksięgowano" #. module: account_asset #: model:ir.actions.act_window,help:account_asset.action_asset_asset_report @@ -660,7 +667,7 @@ msgstr "Wartość całkowita" #. module: account_asset #: field:account.asset.category,name:0 msgid "Name" -msgstr "" +msgstr "Nazwa" #. module: account_asset #: help:account.asset.category,open_asset:0 @@ -668,6 +675,8 @@ msgid "" "Check this if you want to automatically confirm the assets of this category " "when created by invoices." msgstr "" +"Zaznacz to, jeśli chcesz automatycznie potwierdzać aktywa tej kategorii " +"kiedy są tworzone przez fakturę." #. module: account_asset #: field:asset.asset.report,name:0 @@ -677,7 +686,7 @@ msgstr "Rok" #. module: account_asset #: model:ir.model,name:account_asset.model_account_asset_depreciation_line msgid "Asset depreciation line" -msgstr "" +msgstr "Pozycja amortyzacji aktywu" #. module: account_asset #: view:account.asset.category:0 @@ -690,13 +699,13 @@ msgstr "Kategoria środka" #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_value:0 msgid "Amount of Depreciation Lines" -msgstr "" +msgstr "Wartość pozycji amortyzacji" #. module: account_asset #: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" -msgstr "" +msgstr "Utworzono przesunięcia aktywów" #. module: account_asset #: field:account.asset.depreciation.line,sequence:0 @@ -706,7 +715,7 @@ msgstr "Numeracja" #. module: account_asset #: help:account.asset.category,method_period:0 msgid "State here the time between 2 depreciations, in months" -msgstr "" +msgstr "Podaj tu czas pomiędzy 2 amortyzacjami, w miesiącach" #. module: account_asset #: field:account.asset.history,date:0 @@ -722,17 +731,17 @@ msgstr "Data" #: selection:account.asset.history,method_time:0 #: field:asset.modify,method_number:0 msgid "Number of Depreciations" -msgstr "" +msgstr "Liczba amortyzacji" #. module: account_asset #: view:account.asset.asset:0 msgid "Create Move" -msgstr "" +msgstr "Utwórz przesunięcie" #. module: account_asset #: view:account.asset.asset:0 msgid "Confirm Asset" -msgstr "" +msgstr "Potwierdź aktyw" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree diff --git a/addons/account_asset/i18n/pt.po b/addons/account_asset/i18n/pt.po index 732fdcfbc71..d218b8c5033 100755 --- a/addons/account_asset/i18n/pt.po +++ b/addons/account_asset/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pt_BR.po b/addons/account_asset/i18n/pt_BR.po index 1d5846a1e25..79b63cd55cf 100644 --- a/addons/account_asset/i18n/pt_BR.po +++ b/addons/account_asset/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-22 01:00+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\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-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ro.po b/addons/account_asset/i18n/ro.po index 8c3e06c9195..fc9d47d2979 100644 --- a/addons/account_asset/i18n/ro.po +++ b/addons/account_asset/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ru.po b/addons/account_asset/i18n/ru.po index 44b591557a4..39f5e2bd3a7 100644 --- a/addons/account_asset/i18n/ru.po +++ b/addons/account_asset/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sl.po b/addons/account_asset/i18n/sl.po index 35e457f47a2..883e62f60f5 100644 --- a/addons/account_asset/i18n/sl.po +++ b/addons/account_asset/i18n/sl.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in draft and open states" -msgstr "Osnovna sredstva v stanju \"Osnutek\" ali \"Odprto\"" +msgstr "Osnovna sredstva v stanju \"V pripravi\" ali \"Odprto\"" #. module: account_asset #: field:account.asset.category,method_end:0 @@ -92,7 +92,7 @@ msgstr "Spremeni" #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Running" -msgstr "Se izvaja" +msgstr "V uporabi" #. module: account_asset #: view:account.asset.asset:0 @@ -122,7 +122,7 @@ msgstr "Degresivni faktor" #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal msgid "Asset Categories" -msgstr "Kategorije osnovnega sredstva" +msgstr "Kategorije osnovnih sredstev" #. module: account_asset #: view:account.asset.asset:0 @@ -130,7 +130,7 @@ msgstr "Kategorije osnovnega sredstva" #: field:account.move.line,entry_ids:0 #: model:ir.actions.act_window,name:account_asset.act_entries_open msgid "Entries" -msgstr "Vnosi" +msgstr "Vknjižbe" #. module: account_asset #: view:account.asset.asset:0 @@ -208,7 +208,7 @@ msgstr "Število mesecev v obdobju" #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in draft state" -msgstr "Osnovna sredstva v osnutku" +msgstr "Osnovna sredstva s statusom \"V pripravi\"" #. module: account_asset #: field:account.asset.asset,method_end:0 @@ -246,7 +246,7 @@ msgstr "Obdobje obračuna" #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Draft" -msgstr "Osnutek" +msgstr "V pripravi" #. module: account_asset #: view:asset.asset.report:0 @@ -322,7 +322,7 @@ msgstr "Kategorija Osnovnega sredstva" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in closed state" -msgstr "Osnovno sredstvo v statusu \"zaprto\"" +msgstr "Osnovno sredstvo v statusu \"Izven uporabe\"" #. module: account_asset #: field:account.asset.asset,parent_id:0 @@ -413,12 +413,12 @@ msgstr "" #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in running state" -msgstr "Osnovna sredstva v upurabi" +msgstr "Osnovna sredstva v uporabi" #. module: account_asset #: view:account.asset.asset:0 msgid "Closed" -msgstr "Zaprto" +msgstr "Izven uporabe" #. module: account_asset #: help:account.asset.asset,state:0 @@ -429,8 +429,11 @@ msgid "" "You can manually close an asset when the depreciation is over. If the last " "line of depreciation is posted, the asset automatically goes in that status." msgstr "" -"Ko kreirate osnovno sredstvo ima status \"Osnutek\".\n" -"Ko ga potrdite ima status \"V uporabi\"." +"Ko kreirate osnovno sredstvo ima status \"V pripravi\".\n" +"Ko ga potrdite ima status \"V uporabi\".\n" +"Osnovno sredstvo lahko ročno določite \"Izven uporabe\", ko je amortizacija " +"zaključena. Ko je knjižena prva amortizacija, dobi osnovno sredstvo " +"avtomatično status \"V uporabi\"." #. module: account_asset #: field:account.asset.asset,state:0 @@ -540,7 +543,7 @@ msgstr "Račun" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Close" -msgstr "Zapri" +msgstr "Nastvi na \"Izven uporabe\"" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 @@ -609,7 +612,7 @@ msgstr "Naziv osnovnega sredstva" #. module: account_asset #: field:account.asset.category,open_asset:0 msgid "Skip Draft State" -msgstr "Preskoči osnutek" +msgstr "Preskoči status \"V pripravi\"" #. module: account_asset #: view:account.asset.category:0 @@ -758,7 +761,7 @@ msgstr "Potrdi osnovno sredstvo" #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" -msgstr "Hierarhija osnovnega sredstva" +msgstr "Hierarhija osnovnih sredstev" #~ msgid "Gross value " #~ msgstr "Bruto " diff --git a/addons/account_asset/i18n/sr@latin.po b/addons/account_asset/i18n/sr@latin.po index 19ed1b89e04..f5410e9cbbb 100644 --- a/addons/account_asset/i18n/sr@latin.po +++ b/addons/account_asset/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sv.po b/addons/account_asset/i18n/sv.po index cd2f83554e5..c7ebc1414d9 100755 --- a/addons/account_asset/i18n/sv.po +++ b/addons/account_asset/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/th.po b/addons/account_asset/i18n/th.po index 9e280ccc382..38de6841235 100644 --- a/addons/account_asset/i18n/th.po +++ b/addons/account_asset/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/tr.po b/addons/account_asset/i18n/tr.po index c021584462a..22bcc80eb86 100644 --- a/addons/account_asset/i18n/tr.po +++ b/addons/account_asset/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -296,7 +296,7 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 msgid "Next Period Depreciation" -msgstr "Sonraki dönemdeki Amortisman" +msgstr "Sonra Dönemdeki Amortisman" #. module: account_asset #: help:account.asset.history,method_period:0 @@ -446,13 +446,13 @@ msgstr "" #: field:account.asset.asset,state:0 #: field:asset.asset.report,state:0 msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. module: account_asset #: field:account.asset.asset,partner_id:0 #: field:asset.asset.report,partner_id:0 msgid "Partner" -msgstr "Cari" +msgstr "İş Ortağı" #. module: account_asset #: view:asset.asset.report:0 @@ -567,7 +567,7 @@ msgstr "Kapat" #. module: account_asset #: model:ir.model,name:account_asset.model_account_move_line msgid "Journal Items" -msgstr "Günlük Maddeleri" +msgstr "Yevmiye Kalemleri" #. module: account_asset #: view:asset.modify:0 @@ -579,7 +579,7 @@ msgstr "Değiştirilecek Demirbaş Süreleri" #: view:asset.asset.report:0 #: field:asset.asset.report,purchase_date:0 msgid "Purchase Date" -msgstr "Satın alma Tarihi" +msgstr "Satınalma Tarihi" #. module: account_asset #: selection:account.asset.asset,method:0 @@ -634,7 +634,7 @@ msgstr "Para Birimi" #. module: account_asset #: field:account.asset.category,journal_id:0 msgid "Journal" -msgstr "Günlük" +msgstr "Yevmiye" #. module: account_asset #: field:account.asset.history,name:0 diff --git a/addons/account_asset/i18n/vi.po b/addons/account_asset/i18n/vi.po index 215651465d2..34488e1b7ff 100644 --- a/addons/account_asset/i18n/vi.po +++ b/addons/account_asset/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:33+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/zh_CN.po b/addons/account_asset/i18n/zh_CN.po index bd40216efa5..752c445f8fb 100644 --- a/addons/account_asset/i18n/zh_CN.po +++ b/addons/account_asset/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:25+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/zh_TW.po b/addons/account_asset/i18n/zh_TW.po index e580df0970b..3ca95925a01 100644 --- a/addons/account_asset/i18n/zh_TW.po +++ b/addons/account_asset/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/report/account_asset_report_view.xml b/addons/account_asset/report/account_asset_report_view.xml index c0055773bea..4655172572c 100644 --- a/addons/account_asset/report/account_asset_report_view.xml +++ b/addons/account_asset/report/account_asset_report_view.xml @@ -2,33 +2,11 @@ - - asset.asset.report.tree - asset.asset.report - - - - - - - - - - - - - - - - - - - asset.asset.report.graph asset.asset.report - + @@ -69,7 +47,7 @@ Assets Analysis asset.asset.report form - tree,graph + graph {'search_default_year':1,'search_default_this_month':1,'search_default_asset_category':1, 'search_default_posted':1, 'group_by':[], 'group_by_no_leaf':1} diff --git a/addons/account_bank_statement_extensions/i18n/ar.po b/addons/account_bank_statement_extensions/i18n/ar.po index 8fae3b2a067..71d85926b18 100644 --- a/addons/account_bank_statement_extensions/i18n/ar.po +++ b/addons/account_bank_statement_extensions/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 @@ -59,7 +59,7 @@ msgstr "الغاء الاسطر المحددة في الكشف" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,val_date:0 msgid "Value Date" -msgstr "" +msgstr "تاريخ القيمة" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 diff --git a/addons/account_bank_statement_extensions/i18n/bs.po b/addons/account_bank_statement_extensions/i18n/bs.po index cfc187a6819..c3d6969777c 100644 --- a/addons/account_bank_statement_extensions/i18n/bs.po +++ b/addons/account_bank_statement_extensions/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:16+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/cs.po b/addons/account_bank_statement_extensions/i18n/cs.po index 0664be0ab35..9df911826aa 100644 --- a/addons/account_bank_statement_extensions/i18n/cs.po +++ b/addons/account_bank_statement_extensions/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/da.po b/addons/account_bank_statement_extensions/i18n/da.po index 0c6d05c076b..d5ca1a00c4e 100644 --- a/addons/account_bank_statement_extensions/i18n/da.po +++ b/addons/account_bank_statement_extensions/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-16 04:37+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/de.po b/addons/account_bank_statement_extensions/i18n/de.po index ec1be94259e..e78abd928e7 100644 --- a/addons/account_bank_statement_extensions/i18n/de.po +++ b/addons/account_bank_statement_extensions/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 @@ -55,12 +55,12 @@ msgstr "Soll" #: model:ir.actions.act_window,name:account_bank_statement_extensions.action_cancel_statement_line #: model:ir.model,name:account_bank_statement_extensions.model_cancel_statement_line msgid "Cancel selected statement lines" -msgstr "Storniere ausgewählte Buchungszeilen" +msgstr "Ausgewählte Buchungszeilen stornieren" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,val_date:0 msgid "Value Date" -msgstr "Datum Wertstellung" +msgstr "Datum der Wertstellung" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -83,7 +83,7 @@ msgstr "Bankkontoauszug" #: model:ir.actions.act_window,name:account_bank_statement_extensions.action_confirm_statement_line #: model:ir.model,name:account_bank_statement_extensions.model_confirm_statement_line msgid "Confirm selected statement lines" -msgstr "Bestätigte die ausgewählten Buchungszeilen" +msgstr "Ausgewählte Buchungszeilen bestätigen" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -94,13 +94,13 @@ msgstr "Bankauszug Saldenbereicht" #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 msgid "Cancel Lines" -msgstr "Storniere Zeilen" +msgstr "Zeilen stornieren" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line_global msgid "Batch Payment Info" -msgstr "Batch Zahlungs Info" +msgstr "Batch Zahlungsinfo" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,state:0 @@ -114,8 +114,8 @@ msgid "" "Delete operation not allowed. Please go to the associated bank " "statement in order to delete and/or modify bank statement line." msgstr "" -"Lösche Operation ist nicht erlaubt. Bitte wechseln Sie zum angebundenen " -"Bankauszug Beleg, um dort die Zahlungsvorschläge zu beurteilen." +"Das Löschen der Operation ist nicht erlaubt. Bitte wechseln Sie zum " +"angebundenen Bankauszugbeleg, um dort die Zahlungsvorschläge zu beurteilen." #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 @@ -125,7 +125,7 @@ msgstr "oder" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Confirm Lines" -msgstr "Bestätige Zeilen" +msgstr "Zeilen bestätigen" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 @@ -151,17 +151,17 @@ msgstr "Bestätigte Auszugszeilen" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Credit Transactions." -msgstr "Haben Transaktionen" +msgstr "Haben-Transaktionen" #. module: account_bank_statement_extensions #: model:ir.actions.act_window,help:account_bank_statement_extensions.action_cancel_statement_line msgid "cancel selected statement lines." -msgstr "Lösche ausgewählte Zeilen" +msgstr "Ausgewählte Zeilen löschen" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_number:0 msgid "Counterparty Number" -msgstr "Gegenkonto Nummer" +msgstr "Nummer Gegenkonto" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -207,7 +207,7 @@ msgstr "Bezeichnung" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account_bank_statement_extensions #: selection:account.bank.statement.line.global,type:0 @@ -227,7 +227,7 @@ msgstr "Manuell" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Bank Transaction" -msgstr "Bank Auszug" +msgstr "Bankauszug" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -257,7 +257,7 @@ msgstr "Gegenkonto BIC" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,child_ids:0 msgid "Child Codes" -msgstr "untergeordnete Codes" +msgstr "Untergeordnete Codes" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -276,7 +276,7 @@ msgid "" "within a batch payment" msgstr "" "Code der die Transaktionen identifiziert, die zum gleichen Sammler einer " -"Batch Zahlung gehören" +"Batch-Zahlung gehören" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -291,7 +291,7 @@ msgstr "Gesamtbetrag" #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "Bankauszug Buchungen" +msgstr "Bankauszug-Buchungen" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,code:0 @@ -301,7 +301,7 @@ msgstr "Code" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_name:0 msgid "Counterparty Name" -msgstr "Gegenkonto Name" +msgstr "Name Gegenkonto" #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_res_partner_bank diff --git a/addons/account_bank_statement_extensions/i18n/en_GB.po b/addons/account_bank_statement_extensions/i18n/en_GB.po index 3a3936cb6d7..8b50fa9c65d 100644 --- a/addons/account_bank_statement_extensions/i18n/en_GB.po +++ b/addons/account_bank_statement_extensions/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es.po b/addons/account_bank_statement_extensions/i18n/es.po index 447e063b9e0..b80bfe94153 100644 --- a/addons/account_bank_statement_extensions/i18n/es.po +++ b/addons/account_bank_statement_extensions/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_CR.po b/addons/account_bank_statement_extensions/i18n/es_CR.po index 4339a6ef4ac..e68a47c89b9 100644 --- a/addons/account_bank_statement_extensions/i18n/es_CR.po +++ b/addons/account_bank_statement_extensions/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_EC.po b/addons/account_bank_statement_extensions/i18n/es_EC.po index aca4ec709fb..e5e1af22cde 100644 --- a/addons/account_bank_statement_extensions/i18n/es_EC.po +++ b/addons/account_bank_statement_extensions/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_MX.po b/addons/account_bank_statement_extensions/i18n/es_MX.po index 93820ed0b81..e39700c9804 100644 --- a/addons/account_bank_statement_extensions/i18n/es_MX.po +++ b/addons/account_bank_statement_extensions/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fi.po b/addons/account_bank_statement_extensions/i18n/fi.po index 54035546b3d..6721b7d2ab0 100644 --- a/addons/account_bank_statement_extensions/i18n/fi.po +++ b/addons/account_bank_statement_extensions/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 @@ -47,30 +47,30 @@ msgstr "" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Debit" -msgstr "" +msgstr "Veloitus" #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 #: model:ir.actions.act_window,name:account_bank_statement_extensions.action_cancel_statement_line #: model:ir.model,name:account_bank_statement_extensions.model_cancel_statement_line msgid "Cancel selected statement lines" -msgstr "" +msgstr "Peruuta valitut tilioterivit" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,val_date:0 msgid "Value Date" -msgstr "" +msgstr "Arvopäivä" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Group By..." -msgstr "" +msgstr "Ryhmittely.." #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 #: selection:account.bank.statement.line,state:0 msgid "Draft" -msgstr "" +msgstr "Ehdotus" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -82,7 +82,7 @@ msgstr "Tiliote" #: model:ir.actions.act_window,name:account_bank_statement_extensions.action_confirm_statement_line #: model:ir.model,name:account_bank_statement_extensions.model_confirm_statement_line msgid "Confirm selected statement lines" -msgstr "" +msgstr "Vahvista valitut tilioterivit" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -93,7 +93,7 @@ msgstr "" #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 msgid "Cancel Lines" -msgstr "" +msgstr "Peru rivit" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 @@ -104,7 +104,7 @@ msgstr "" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,state:0 msgid "Status" -msgstr "" +msgstr "Tila" #. module: account_bank_statement_extensions #: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 @@ -122,7 +122,7 @@ msgstr "" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Confirm Lines" -msgstr "" +msgstr "Vahvista rivit" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 @@ -189,7 +189,7 @@ msgstr "" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Confirmed lines cannot be changed anymore." -msgstr "" +msgstr "Vahvistettuja rivejä ei voi enää muuttaa." #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 @@ -259,7 +259,7 @@ msgstr "" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Search Bank Transactions" -msgstr "" +msgstr "Etsi pankkitapahtumia" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 diff --git a/addons/account_bank_statement_extensions/i18n/fr.po b/addons/account_bank_statement_extensions/i18n/fr.po index f02bc7cd940..9bde7cdd5c6 100644 --- a/addons/account_bank_statement_extensions/i18n/fr.po +++ b/addons/account_bank_statement_extensions/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/gu.po b/addons/account_bank_statement_extensions/i18n/gu.po index 98816b65414..d3de4da0f01 100644 --- a/addons/account_bank_statement_extensions/i18n/gu.po +++ b/addons/account_bank_statement_extensions/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hr.po b/addons/account_bank_statement_extensions/i18n/hr.po index 4a3084199c8..afe606556ea 100644 --- a/addons/account_bank_statement_extensions/i18n/hr.po +++ b/addons/account_bank_statement_extensions/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hu.po b/addons/account_bank_statement_extensions/i18n/hu.po index 5337b198a0b..32f29a65a46 100644 --- a/addons/account_bank_statement_extensions/i18n/hu.po +++ b/addons/account_bank_statement_extensions/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/it.po b/addons/account_bank_statement_extensions/i18n/it.po index d62a09d2310..c74032928a6 100644 --- a/addons/account_bank_statement_extensions/i18n/it.po +++ b/addons/account_bank_statement_extensions/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ja.po b/addons/account_bank_statement_extensions/i18n/ja.po index 4c351e0b344..3d162b13844 100644 --- a/addons/account_bank_statement_extensions/i18n/ja.po +++ b/addons/account_bank_statement_extensions/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/mk.po b/addons/account_bank_statement_extensions/i18n/mk.po index 8a9883f9359..73a05f864e1 100644 --- a/addons/account_bank_statement_extensions/i18n/mk.po +++ b/addons/account_bank_statement_extensions/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/mn.po b/addons/account_bank_statement_extensions/i18n/mn.po index 25289df52cf..1a9011010fe 100644 --- a/addons/account_bank_statement_extensions/i18n/mn.po +++ b/addons/account_bank_statement_extensions/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nb.po b/addons/account_bank_statement_extensions/i18n/nb.po index f255c904104..dbd1067adef 100644 --- a/addons/account_bank_statement_extensions/i18n/nb.po +++ b/addons/account_bank_statement_extensions/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nl.po b/addons/account_bank_statement_extensions/i18n/nl.po index 400f042d8e7..d0d2ddcff98 100644 --- a/addons/account_bank_statement_extensions/i18n/nl.po +++ b/addons/account_bank_statement_extensions/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pl.po b/addons/account_bank_statement_extensions/i18n/pl.po index 302e7e014dd..aab8b020ec7 100644 --- a/addons/account_bank_statement_extensions/i18n/pl.po +++ b/addons/account_bank_statement_extensions/i18n/pl.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Autor do informacji beneficjenta" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -59,7 +59,7 @@ msgstr "Anuluj wybrane pozycje wyciągu" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,val_date:0 msgid "Value Date" -msgstr "" +msgstr "Data wartości" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -99,12 +99,12 @@ msgstr "Anuluj pozycje" #: view:account.bank.statement.line.global:0 #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line_global msgid "Batch Payment Info" -msgstr "" +msgstr "Informacje o płatności partii" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: account_bank_statement_extensions #: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 @@ -113,11 +113,13 @@ msgid "" "Delete operation not allowed. Please go to the associated bank " "statement in order to delete and/or modify bank statement line." msgstr "" +"Operacja usunięcia niedozwolona. Proszę idź do powiązanych wyciągów " +"bankowych w celu usunięcia i/lub zmodyfikowania lini wyciągu bankowego." #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "or" -msgstr "" +msgstr "lub" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 @@ -209,7 +211,7 @@ msgstr "" #. module: account_bank_statement_extensions #: selection:account.bank.statement.line.global,type:0 msgid "ISO 20022" -msgstr "" +msgstr "ISO 20022" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -224,7 +226,7 @@ msgstr "Ręcznie" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Bank Transaction" -msgstr "" +msgstr "Transakcje bankowe" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -296,7 +298,7 @@ msgstr "Kod" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_name:0 msgid "Counterparty Name" -msgstr "" +msgstr "Nazwa kontrahenta" #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_res_partner_bank @@ -329,7 +331,7 @@ msgstr "Pozycje wyciągu" #: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 #, python-format msgid "Warning!" -msgstr "" +msgstr "Ostrzeżenie !" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt.po b/addons/account_bank_statement_extensions/i18n/pt.po index 8db9595bd51..b62feb59345 100644 --- a/addons/account_bank_statement_extensions/i18n/pt.po +++ b/addons/account_bank_statement_extensions/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt_BR.po b/addons/account_bank_statement_extensions/i18n/pt_BR.po index 77ffb07f5d7..76e8165cd7b 100644 --- a/addons/account_bank_statement_extensions/i18n/pt_BR.po +++ b/addons/account_bank_statement_extensions/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-21 23:09+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\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-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ro.po b/addons/account_bank_statement_extensions/i18n/ro.po index 5b0d8363716..854847a5fb8 100644 --- a/addons/account_bank_statement_extensions/i18n/ro.po +++ b/addons/account_bank_statement_extensions/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ru.po b/addons/account_bank_statement_extensions/i18n/ru.po index ff4d21c2539..67ed3d8d822 100644 --- a/addons/account_bank_statement_extensions/i18n/ru.po +++ b/addons/account_bank_statement_extensions/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sl.po b/addons/account_bank_statement_extensions/i18n/sl.po index 09b782094a0..f075baa9760 100644 --- a/addons/account_bank_statement_extensions/i18n/sl.po +++ b/addons/account_bank_statement_extensions/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sr@latin.po b/addons/account_bank_statement_extensions/i18n/sr@latin.po index ac636e31ba4..239ece0c968 100644 --- a/addons/account_bank_statement_extensions/i18n/sr@latin.po +++ b/addons/account_bank_statement_extensions/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sv.po b/addons/account_bank_statement_extensions/i18n/sv.po index 01c5c32e564..b7d12211385 100644 --- a/addons/account_bank_statement_extensions/i18n/sv.po +++ b/addons/account_bank_statement_extensions/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/tr.po b/addons/account_bank_statement_extensions/i18n/tr.po index 4e79bf2a0ce..763cac2894a 100644 --- a/addons/account_bank_statement_extensions/i18n/tr.po +++ b/addons/account_bank_statement_extensions/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/zh_CN.po b/addons/account_bank_statement_extensions/i18n/zh_CN.po index ba903336310..818d3d7762f 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_CN.po +++ b/addons/account_bank_statement_extensions/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/zh_TW.po b/addons/account_bank_statement_extensions/i18n/zh_TW.po index e00583a0cdf..6b45af6848f 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_TW.po +++ b/addons/account_bank_statement_extensions/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:34+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_budget/i18n/ar.po b/addons/account_budget/i18n/ar.po index 0a4a83f92b9..404d9303c91 100644 --- a/addons/account_budget/i18n/ar.po +++ b/addons/account_budget/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bg.po b/addons/account_budget/i18n/bg.po index b5c57f530b0..f9bd11862ea 100644 --- a/addons/account_budget/i18n/bg.po +++ b/addons/account_budget/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bs.po b/addons/account_budget/i18n/bs.po index 2852363d739..264140d6927 100644 --- a/addons/account_budget/i18n/bs.po +++ b/addons/account_budget/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -58,7 +58,7 @@ msgstr "Potvrdi korisnika" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report msgid "Print Summary" -msgstr "" +msgstr "Ispis rezimea" #. module: account_budget #: field:crossovered.budget.lines,paid_date:0 @@ -99,7 +99,7 @@ msgstr "Valuta:" #. module: account_budget #: model:ir.model,name:account_budget.model_account_budget_crossvered_report msgid "Account Budget crossvered report" -msgstr "" +msgstr "Kombinovani izvještaj ukrštenog budžeta" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -120,7 +120,7 @@ msgstr "Stanje" #: code:addons/account_budget/account_budget.py:119 #, python-format msgid "The Budget '%s' has no accounts!" -msgstr "" +msgstr "Budžet '%s' nema konta!" #. module: account_budget #: report:account.budget:0 @@ -131,7 +131,7 @@ msgstr "Opis" #. module: account_budget #: report:crossovered.budget.report:0 msgid "Currency" -msgstr "" +msgstr "Valuta" #. module: account_budget #: report:crossovered.budget.report:0 @@ -143,7 +143,7 @@ msgstr "Ukupno :" #: field:crossovered.budget,company_id:0 #: field:crossovered.budget.lines,company_id:0 msgid "Company" -msgstr "" +msgstr "Kompanija" #. module: account_budget #: report:crossovered.budget.report:0 @@ -153,7 +153,7 @@ msgstr "do" #. module: account_budget #: view:crossovered.budget:0 msgid "Reset to Draft" -msgstr "" +msgstr "Vrati u pripremu" #. module: account_budget #: view:account.budget.post:0 @@ -178,7 +178,7 @@ msgstr "Završeno" #: report:account.budget:0 #: report:crossovered.budget.report:0 msgid "Practical Amt" -msgstr "" +msgstr "Stvarni iznos" #. module: account_budget #: view:account.analytic.account:0 @@ -198,7 +198,7 @@ msgstr "Datum završetka" #: model:ir.model,name:account_budget.model_account_budget_analytic #: model:ir.model,name:account_budget.model_account_budget_report msgid "Account Budget report for analytic account" -msgstr "" +msgstr "Izvještaj konta budžeta za analitički konto" #. module: account_budget #: view:account.analytic.account:0 @@ -214,7 +214,7 @@ msgstr "Naziv" #. module: account_budget #: model:ir.model,name:account_budget.model_crossovered_budget_lines msgid "Budget Line" -msgstr "" +msgstr "Stavka budžeta" #. module: account_budget #: report:account.budget:0 @@ -229,12 +229,12 @@ msgstr "Proračun" #. module: account_budget #: view:crossovered.budget:0 msgid "To Approve Budgets" -msgstr "" +msgstr "Budžet za odobravanje" #. module: account_budget #: view:crossovered.budget:0 msgid "Duration" -msgstr "" +msgstr "Trajanje" #. module: account_budget #: field:account.budget.post,code:0 @@ -246,7 +246,7 @@ msgstr "Šifra" #: view:account.budget.analytic:0 #: view:account.budget.crossvered.report:0 msgid "This wizard is used to print budget" -msgstr "" +msgstr "Ovaj čarobnjak štampa budžet" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_view @@ -262,7 +262,7 @@ msgstr "Proračuni" #. module: account_budget #: view:account.budget.crossvered.summary.report:0 msgid "This wizard is used to print summary of budgets" -msgstr "" +msgstr "Ovaj čarobnjak se koristi za štampanje izvještaja budžeta" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -272,12 +272,12 @@ msgstr "Poništeno" #. module: account_budget #: view:crossovered.budget:0 msgid "Approve" -msgstr "" +msgstr "Odobri" #. module: account_budget #: view:crossovered.budget:0 msgid "To Approve" -msgstr "" +msgstr "Za odobriti" #. module: account_budget #: view:account.budget.post:0 @@ -297,19 +297,19 @@ msgstr "Početak razdoblja" #. module: account_budget #: model:ir.model,name:account_budget.model_account_budget_crossvered_summary_report msgid "Account Budget crossvered summary report" -msgstr "" +msgstr "Izvještaj ukrštenog konta budžeta" #. module: account_budget #: report:account.budget:0 #: report:crossovered.budget.report:0 msgid "Theoretical Amt" -msgstr "" +msgstr "Teoretski iznos" #. module: account_budget #: code:addons/account_budget/account_budget.py:119 #, python-format msgid "Error!" -msgstr "" +msgstr "Greška!" #. module: account_budget #: view:account.budget.analytic:0 @@ -332,7 +332,7 @@ msgstr "Teoretski iznos" #: view:account.budget.crossvered.summary.report:0 #: view:account.budget.report:0 msgid "or" -msgstr "" +msgstr "ili" #. module: account_budget #: field:crossovered.budget.lines,analytic_account_id:0 @@ -372,7 +372,7 @@ msgstr "" #: report:account.budget:0 #: report:crossovered.budget.report:0 msgid "Planned Amt" -msgstr "" +msgstr "Planirani iznos" #. module: account_budget #: view:account.budget.post:0 @@ -417,7 +417,7 @@ msgstr "Analiza od" #. module: account_budget #: view:crossovered.budget:0 msgid "Draft Budgets" -msgstr "" +msgstr "Budžeti u pripremi" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Neodgovarajući XML za arhitekturu prikaza!" diff --git a/addons/account_budget/i18n/ca.po b/addons/account_budget/i18n/ca.po index 368a864539d..03e05b18b14 100644 --- a/addons/account_budget/i18n/ca.po +++ b/addons/account_budget/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/cs.po b/addons/account_budget/i18n/cs.po index 94ec786870f..26784c16f12 100644 --- a/addons/account_budget/i18n/cs.po +++ b/addons/account_budget/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/da.po b/addons/account_budget/i18n/da.po index f2a18fced98..0cc21efcec9 100644 --- a/addons/account_budget/i18n/da.po +++ b/addons/account_budget/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -28,7 +28,7 @@ msgstr "" #. module: account_budget #: field:crossovered.budget,creating_user_id:0 msgid "Responsible User" -msgstr "" +msgstr "Ansvarlig bruger" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -54,7 +54,7 @@ msgstr "Godkend" #. module: account_budget #: field:crossovered.budget,validating_user_id:0 msgid "Validate User" -msgstr "" +msgstr "Godkend bruger" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report @@ -64,7 +64,7 @@ msgstr "" #. module: account_budget #: field:crossovered.budget.lines,paid_date:0 msgid "Paid Date" -msgstr "" +msgstr "Betalingsdato" #. module: account_budget #: field:account.budget.analytic,date_to:0 @@ -121,7 +121,7 @@ msgstr "Status" #: code:addons/account_budget/account_budget.py:119 #, python-format msgid "The Budget '%s' has no accounts!" -msgstr "" +msgstr "Budgettet '%s' har ingen konti!" #. module: account_budget #: report:account.budget:0 @@ -149,7 +149,7 @@ msgstr "Virksomhed" #. module: account_budget #: report:crossovered.budget.report:0 msgid "to" -msgstr "" +msgstr "til" #. module: account_budget #: view:crossovered.budget:0 @@ -210,7 +210,7 @@ msgstr "" #: field:account.budget.post,name:0 #: field:crossovered.budget,name:0 msgid "Name" -msgstr "" +msgstr "Navn" #. module: account_budget #: model:ir.model,name:account_budget.model_crossovered_budget_lines @@ -258,7 +258,7 @@ msgstr "" #: model:ir.ui.menu,name:account_budget.next_id_31 #: model:ir.ui.menu,name:account_budget.next_id_pos msgid "Budgets" -msgstr "" +msgstr "Budgetter" #. module: account_budget #: view:account.budget.crossvered.summary.report:0 @@ -273,7 +273,7 @@ msgstr "" #. module: account_budget #: view:crossovered.budget:0 msgid "Approve" -msgstr "" +msgstr "Godkend" #. module: account_budget #: view:crossovered.budget:0 @@ -293,7 +293,7 @@ msgstr "" #: field:account.budget.crossvered.summary.report,date_from:0 #: field:account.budget.report,date_from:0 msgid "Start of period" -msgstr "" +msgstr "Periode start" #. module: account_budget #: model:ir.model,name:account_budget.model_account_budget_crossvered_summary_report @@ -379,7 +379,7 @@ msgstr "" #: view:account.budget.post:0 #: field:account.budget.post,account_ids:0 msgid "Accounts" -msgstr "" +msgstr "Konti" #. module: account_budget #: view:account.analytic.account:0 @@ -407,7 +407,7 @@ msgstr "" #: field:crossovered.budget,date_from:0 #: field:crossovered.budget.lines,date_from:0 msgid "Start Date" -msgstr "" +msgstr "Start dato" #. module: account_budget #: report:account.budget:0 diff --git a/addons/account_budget/i18n/de.po b/addons/account_budget/i18n/de.po index 9365607eaa4..d0ff9a7c2f6 100644 --- a/addons/account_budget/i18n/de.po +++ b/addons/account_budget/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -23,7 +23,7 @@ msgstr "" #: view:account.budget.crossvered.summary.report:0 #: view:account.budget.report:0 msgid "Select Dates Period" -msgstr "Wähle Perioden" +msgstr "Perioden wählen" #. module: account_budget #: field:crossovered.budget,creating_user_id:0 @@ -39,12 +39,12 @@ msgstr "Bestätigt" #: model:ir.actions.act_window,name:account_budget.open_budget_post_form #: model:ir.ui.menu,name:account_budget.menu_budget_post_form msgid "Budgetary Positions" -msgstr "Budget Positionen" +msgstr "Budgetpositionen" #. module: account_budget #: report:account.budget:0 msgid "Printed at:" -msgstr "Druck am:" +msgstr "Gedruckt am:" #. module: account_budget #: view:crossovered.budget:0 @@ -59,7 +59,7 @@ msgstr "Genehmige Benutzer" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report msgid "Print Summary" -msgstr "Drucke Finanzbudget" +msgstr "Finanzbudget drucken" #. module: account_budget #: field:crossovered.budget.lines,paid_date:0 @@ -90,7 +90,7 @@ msgstr "bei" #: model:ir.actions.act_window,name:account_budget.action_account_budget_analytic #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_report msgid "Print Budgets" -msgstr "Druck Budgets..." +msgstr "Budgets drucken" #. module: account_budget #: report:account.budget:0 @@ -100,7 +100,7 @@ msgstr "Währung:" #. module: account_budget #: model:ir.model,name:account_budget.model_account_budget_crossvered_report msgid "Account Budget crossvered report" -msgstr "Budget Auswertung Kreuzanalyse" +msgstr "Budgetauswertung Kreuzanalyse" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -154,7 +154,7 @@ msgstr "bis" #. module: account_budget #: view:crossovered.budget:0 msgid "Reset to Draft" -msgstr "Zurücksetzen" +msgstr "Zurücksetzen auf Entwurf" #. module: account_budget #: view:account.budget.post:0 @@ -187,7 +187,7 @@ msgstr "Ist" #: view:crossovered.budget:0 #: field:crossovered.budget.lines,practical_amount:0 msgid "Practical Amount" -msgstr "Istwert" +msgstr "Ist-Wert" #. module: account_budget #: field:crossovered.budget,date_to:0 @@ -199,12 +199,12 @@ msgstr "Enddatum:" #: model:ir.model,name:account_budget.model_account_budget_analytic #: model:ir.model,name:account_budget.model_account_budget_report msgid "Account Budget report for analytic account" -msgstr "Budget Auswertung Analyt. Konto" +msgstr "Budgetauswertung Analyt. Konto" #. module: account_budget #: view:account.analytic.account:0 msgid "Theoritical Amount" -msgstr "Planwert" +msgstr "Plan-Wert" #. module: account_budget #: field:account.budget.post,name:0 @@ -273,19 +273,19 @@ msgstr "Abgebrochen" #. module: account_budget #: view:crossovered.budget:0 msgid "Approve" -msgstr "Genehmige" +msgstr "Genehmigen" #. module: account_budget #: view:crossovered.budget:0 msgid "To Approve" -msgstr "Zur Genehmigung" +msgstr "Zu genehmigen" #. module: account_budget #: view:account.budget.post:0 #: field:crossovered.budget.lines,general_budget_id:0 #: model:ir.model,name:account_budget.model_account_budget_post msgid "Budgetary Position" -msgstr "Budget Einzelposten" +msgstr "Budget-inzelposten" #. module: account_budget #: field:account.budget.analytic,date_from:0 @@ -325,7 +325,7 @@ msgstr "Druck" #: view:crossovered.budget:0 #: field:crossovered.budget.lines,theoritical_amount:0 msgid "Theoretical Amount" -msgstr "Sollwert" +msgstr "Soll-Wert" #. module: account_budget #: view:account.budget.analytic:0 @@ -339,7 +339,7 @@ msgstr "oder" #: field:crossovered.budget.lines,analytic_account_id:0 #: model:ir.model,name:account_budget.model_account_analytic_account msgid "Analytic Account" -msgstr "Analytisches Konto" +msgstr "Kostenstellenkonto" #. module: account_budget #: report:account.budget:0 @@ -409,7 +409,7 @@ msgstr "Konten" #: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_lines_view #: model:ir.ui.menu,name:account_budget.menu_act_crossovered_budget_lines_view msgid "Budget Lines" -msgstr "Budget Positionen" +msgstr "Budgetpositionen" #. module: account_budget #: view:account.budget.analytic:0 @@ -434,7 +434,7 @@ msgstr "Analyse vom" #. module: account_budget #: view:crossovered.budget:0 msgid "Draft Budgets" -msgstr "Budget Entwürfe" +msgstr "Budgetentwürfe" #~ msgid "% performance" #~ msgstr "% Leistungsfähigkeit" diff --git a/addons/account_budget/i18n/el.po b/addons/account_budget/i18n/el.po index 99ba305b806..e78f4caa0b9 100644 --- a/addons/account_budget/i18n/el.po +++ b/addons/account_budget/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/en_GB.po b/addons/account_budget/i18n/en_GB.po index cd1df9d8647..dd5e883ab1d 100644 --- a/addons/account_budget/i18n/en_GB.po +++ b/addons/account_budget/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es.po b/addons/account_budget/i18n/es.po index 82e3b34030a..e279d2b6764 100644 --- a/addons/account_budget/i18n/es.po +++ b/addons/account_budget/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_AR.po b/addons/account_budget/i18n/es_AR.po index 2b7fbfb2bad..3f265021428 100644 --- a/addons/account_budget/i18n/es_AR.po +++ b/addons/account_budget/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_CR.po b/addons/account_budget/i18n/es_CR.po index 47af92b90d4..27b06a29795 100644 --- a/addons/account_budget/i18n/es_CR.po +++ b/addons/account_budget/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: account_budget diff --git a/addons/account_budget/i18n/es_EC.po b/addons/account_budget/i18n/es_EC.po index 6f564eb06da..4f521a34b3e 100644 --- a/addons/account_budget/i18n/es_EC.po +++ b/addons/account_budget/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_MX.po b/addons/account_budget/i18n/es_MX.po index bc13c03c1f0..29c1b5e2f27 100644 --- a/addons/account_budget/i18n/es_MX.po +++ b/addons/account_budget/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_PY.po b/addons/account_budget/i18n/es_PY.po index 2843f9fd1df..44fc057fd33 100644 --- a/addons/account_budget/i18n/es_PY.po +++ b/addons/account_budget/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/et.po b/addons/account_budget/i18n/et.po index e50c72e68b7..576e71a5b73 100644 --- a/addons/account_budget/i18n/et.po +++ b/addons/account_budget/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fa.po b/addons/account_budget/i18n/fa.po index 21daa03e08d..bd1ad202e4a 100644 --- a/addons/account_budget/i18n/fa.po +++ b/addons/account_budget/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fi.po b/addons/account_budget/i18n/fi.po index 2fc1d03401a..6c324eb9d5d 100644 --- a/addons/account_budget/i18n/fi.po +++ b/addons/account_budget/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.post:0 @@ -29,7 +29,7 @@ msgstr "Käyttäjätilit" #: view:account.budget.crossvered.summary.report:0 #: view:account.budget.report:0 msgid "Select Dates Period" -msgstr "Valittu aikajakso" +msgstr "Valittu ajanjakso" #. module: account_budget #: field:crossovered.budget,creating_user_id:0 @@ -127,7 +127,7 @@ msgstr "Tila" #: code:addons/account_budget/account_budget.py:119 #, python-format msgid "The Budget '%s' has no accounts!" -msgstr "" +msgstr "Budjetilla '%s' ei ole tilejä!" #. module: account_budget #: report:account.budget:0 @@ -253,7 +253,7 @@ msgstr "Koodi" #: view:account.budget.analytic:0 #: view:account.budget.crossvered.report:0 msgid "This wizard is used to print budget" -msgstr "" +msgstr "Tätä ohjattua toimintoa käytetään budjetin tulostamiseen" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_view @@ -269,7 +269,7 @@ msgstr "Budjetit" #. module: account_budget #: view:account.budget.crossvered.summary.report:0 msgid "This wizard is used to print summary of budgets" -msgstr "Tätä velhoa käytetään tulostamaa budjettien yhteenveto" +msgstr "Tätä ohjattua toimintoa käytetään tulostamaan budjettien yhteenveto" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -418,7 +418,7 @@ msgstr "Analyysi kohteesta" #. module: account_budget #: view:crossovered.budget:0 msgid "Draft Budgets" -msgstr "" +msgstr "Budjettiehdotus" #~ msgid "Performance" #~ msgstr "Tehokkuus" diff --git a/addons/account_budget/i18n/fr.po b/addons/account_budget/i18n/fr.po index a056e208b96..9ec9f753534 100644 --- a/addons/account_budget/i18n/fr.po +++ b/addons/account_budget/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gl.po b/addons/account_budget/i18n/gl.po index ff6b6dfa8a6..119f7777729 100644 --- a/addons/account_budget/i18n/gl.po +++ b/addons/account_budget/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gu.po b/addons/account_budget/i18n/gu.po index cf658e794c8..faa467cec89 100644 --- a/addons/account_budget/i18n/gu.po +++ b/addons/account_budget/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/he.po b/addons/account_budget/i18n/he.po index 71055c387d0..182257613ea 100644 --- a/addons/account_budget/i18n/he.po +++ b/addons/account_budget/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hi.po b/addons/account_budget/i18n/hi.po index e10c792d5a2..67bca4b4f27 100644 --- a/addons/account_budget/i18n/hi.po +++ b/addons/account_budget/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hr.po b/addons/account_budget/i18n/hr.po index 8b6b397e2f5..a5e96b70a5a 100644 --- a/addons/account_budget/i18n/hr.po +++ b/addons/account_budget/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hu.po b/addons/account_budget/i18n/hu.po index 0dd740012f8..333c73616a9 100644 --- a/addons/account_budget/i18n/hu.po +++ b/addons/account_budget/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/id.po b/addons/account_budget/i18n/id.po index 8420d3701f1..6e7f28ae2ea 100644 --- a/addons/account_budget/i18n/id.po +++ b/addons/account_budget/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/it.po b/addons/account_budget/i18n/it.po index 2b42eabd065..a2b2b238258 100644 --- a/addons/account_budget/i18n/it.po +++ b/addons/account_budget/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-14 21:11+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ja.po b/addons/account_budget/i18n/ja.po index 4db7270d80b..52da9d98f60 100644 --- a/addons/account_budget/i18n/ja.po +++ b/addons/account_budget/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ko.po b/addons/account_budget/i18n/ko.po index 14e071fbb2a..9b4c0f21918 100644 --- a/addons/account_budget/i18n/ko.po +++ b/addons/account_budget/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lo.po b/addons/account_budget/i18n/lo.po index 9636c17ae5b..32a5964addb 100644 --- a/addons/account_budget/i18n/lo.po +++ b/addons/account_budget/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lt.po b/addons/account_budget/i18n/lt.po index fd07dc0dfc1..fc142a2fc3c 100644 --- a/addons/account_budget/i18n/lt.po +++ b/addons/account_budget/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lv.po b/addons/account_budget/i18n/lv.po index 69c8aaafec7..9be6559e576 100644 --- a/addons/account_budget/i18n/lv.po +++ b/addons/account_budget/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/mk.po b/addons/account_budget/i18n/mk.po index f08ccea634b..b1486c8f2c4 100644 --- a/addons/account_budget/i18n/mk.po +++ b/addons/account_budget/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/mn.po b/addons/account_budget/i18n/mn.po index 10b92abd68a..4126845a6ed 100644 --- a/addons/account_budget/i18n/mn.po +++ b/addons/account_budget/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nb.po b/addons/account_budget/i18n/nb.po index d45eca0bea2..05189afbe1c 100644 --- a/addons/account_budget/i18n/nb.po +++ b/addons/account_budget/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl.po b/addons/account_budget/i18n/nl.po index e372257b713..974ae48f23a 100644 --- a/addons/account_budget/i18n/nl.po +++ b/addons/account_budget/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po index e80190cd926..10c41742930 100644 --- a/addons/account_budget/i18n/nl_BE.po +++ b/addons/account_budget/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/oc.po b/addons/account_budget/i18n/oc.po index 445c9e7d5fc..72c5c0f1243 100644 --- a/addons/account_budget/i18n/oc.po +++ b/addons/account_budget/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pl.po b/addons/account_budget/i18n/pl.po index ca442d582fb..1d6436ad96f 100644 --- a/addons/account_budget/i18n/pl.po +++ b/addons/account_budget/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -53,7 +53,7 @@ msgstr "Zatwierdź" #. module: account_budget #: field:crossovered.budget,validating_user_id:0 msgid "Validate User" -msgstr "Zatwierdź użytkownika" +msgstr "Użytkownik zatwierdzający" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report @@ -332,7 +332,7 @@ msgstr "Kwota teoretyczna" #: view:account.budget.crossvered.summary.report:0 #: view:account.budget.report:0 msgid "or" -msgstr "" +msgstr "lub" #. module: account_budget #: field:crossovered.budget.lines,analytic_account_id:0 diff --git a/addons/account_budget/i18n/pt.po b/addons/account_budget/i18n/pt.po index 93c3c0fad4d..40781d277d5 100644 --- a/addons/account_budget/i18n/pt.po +++ b/addons/account_budget/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pt_BR.po b/addons/account_budget/i18n/pt_BR.po index 58a471b9406..320a284623b 100644 --- a/addons/account_budget/i18n/pt_BR.po +++ b/addons/account_budget/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ro.po b/addons/account_budget/i18n/ro.po index 2269e38be07..9a78e65d256 100644 --- a/addons/account_budget/i18n/ro.po +++ b/addons/account_budget/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ru.po b/addons/account_budget/i18n/ru.po index ece8ca70649..5e27bd7d168 100644 --- a/addons/account_budget/i18n/ru.po +++ b/addons/account_budget/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sl.po b/addons/account_budget/i18n/sl.po index e17179cb4cc..b1e611c5972 100644 --- a/addons/account_budget/i18n/sl.po +++ b/addons/account_budget/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sq.po b/addons/account_budget/i18n/sq.po index 054269b9a86..e089b6ffe99 100644 --- a/addons/account_budget/i18n/sq.po +++ b/addons/account_budget/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr.po b/addons/account_budget/i18n/sr.po index d0ce0fe9022..7ca19eb3af0 100644 --- a/addons/account_budget/i18n/sr.po +++ b/addons/account_budget/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr@latin.po b/addons/account_budget/i18n/sr@latin.po index 3d677b8461b..a7d65a8e647 100644 --- a/addons/account_budget/i18n/sr@latin.po +++ b/addons/account_budget/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sv.po b/addons/account_budget/i18n/sv.po index 725cf53217a..db1abe7903c 100644 --- a/addons/account_budget/i18n/sv.po +++ b/addons/account_budget/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tlh.po b/addons/account_budget/i18n/tlh.po index fdc70a96da2..9e527764953 100644 --- a/addons/account_budget/i18n/tlh.po +++ b/addons/account_budget/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tr.po b/addons/account_budget/i18n/tr.po index 777b8e03f52..c720759aaa8 100644 --- a/addons/account_budget/i18n/tr.po +++ b/addons/account_budget/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/uk.po b/addons/account_budget/i18n/uk.po index 8b0eef5d21b..41d7ac40013 100644 --- a/addons/account_budget/i18n/uk.po +++ b/addons/account_budget/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/vi.po b/addons/account_budget/i18n/vi.po index 98583da4407..ce18f48321c 100644 --- a/addons/account_budget/i18n/vi.po +++ b/addons/account_budget/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po index 252009b202d..36df9566c9d 100644 --- a/addons/account_budget/i18n/zh_CN.po +++ b/addons/account_budget/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:25+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_TW.po b/addons/account_budget/i18n/zh_TW.po index 018fa666e46..c55ddd26a6c 100644 --- a/addons/account_budget/i18n/zh_TW.po +++ b/addons/account_budget/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:01+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_cancel/i18n/ar.po b/addons/account_cancel/i18n/ar.po index 1a9f5ce5f21..2ffa9984aa9 100644 --- a/addons/account_cancel/i18n/ar.po +++ b/addons/account_cancel/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bg.po b/addons/account_cancel/i18n/bg.po index a218badab9c..ce001690dfc 100644 --- a/addons/account_cancel/i18n/bg.po +++ b/addons/account_cancel/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bn.po b/addons/account_cancel/i18n/bn.po index 09b39b6e6a2..2193863859c 100644 --- a/addons/account_cancel/i18n/bn.po +++ b/addons/account_cancel/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/br.po b/addons/account_cancel/i18n/br.po index 01e9b32f49e..24b82625ca0 100644 --- a/addons/account_cancel/i18n/br.po +++ b/addons/account_cancel/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bs.po b/addons/account_cancel/i18n/bs.po index 3ea80ac780f..7e816663ac3 100644 --- a/addons/account_cancel/i18n/bs.po +++ b/addons/account_cancel/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ca.po b/addons/account_cancel/i18n/ca.po index f1b1cfa5524..eac8056a5f3 100644 --- a/addons/account_cancel/i18n/ca.po +++ b/addons/account_cancel/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/cs.po b/addons/account_cancel/i18n/cs.po index 676a74fe112..40708b0888e 100644 --- a/addons/account_cancel/i18n/cs.po +++ b/addons/account_cancel/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/da.po b/addons/account_cancel/i18n/da.po index 2f0269b2d93..b264af3baf6 100644 --- a/addons/account_cancel/i18n/da.po +++ b/addons/account_cancel/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-27 05:49+0000\n" -"X-Generator: Launchpad (build 16774)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/de.po b/addons/account_cancel/i18n/de.po index ffb5fb81a6f..af790163709 100644 --- a/addons/account_cancel/i18n/de.po +++ b/addons/account_cancel/i18n/de.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-01-13 19:21+0000\n" -"Last-Translator: Ferdinand @ Camptocamp \n" +"Last-Translator: Ferdinand \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-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/el.po b/addons/account_cancel/i18n/el.po index d3fedc1b2c2..fbb9c5b87ef 100644 --- a/addons/account_cancel/i18n/el.po +++ b/addons/account_cancel/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/en_GB.po b/addons/account_cancel/i18n/en_GB.po index 4f1136c16f5..22b2da2d9c2 100644 --- a/addons/account_cancel/i18n/en_GB.po +++ b/addons/account_cancel/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es.po b/addons/account_cancel/i18n/es.po index 589b48fa31b..1cf18fcc025 100644 --- a/addons/account_cancel/i18n/es.po +++ b/addons/account_cancel/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CL.po b/addons/account_cancel/i18n/es_CL.po index ce52ab986d7..c9d4eff247e 100644 --- a/addons/account_cancel/i18n/es_CL.po +++ b/addons/account_cancel/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CR.po b/addons/account_cancel/i18n/es_CR.po index 4e583367367..6c4ade64643 100644 --- a/addons/account_cancel/i18n/es_CR.po +++ b/addons/account_cancel/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/es_EC.po b/addons/account_cancel/i18n/es_EC.po index 5abb1efa038..ef720dfd531 100644 --- a/addons/account_cancel/i18n/es_EC.po +++ b/addons/account_cancel/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_MX.po b/addons/account_cancel/i18n/es_MX.po index 1432e2d92a6..7bf04e1c7e3 100644 --- a/addons/account_cancel/i18n/es_MX.po +++ b/addons/account_cancel/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_PY.po b/addons/account_cancel/i18n/es_PY.po index 54577ad1ceb..057ab8ba07b 100644 --- a/addons/account_cancel/i18n/es_PY.po +++ b/addons/account_cancel/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/et.po b/addons/account_cancel/i18n/et.po index 440850791a7..6cec9883d44 100644 --- a/addons/account_cancel/i18n/et.po +++ b/addons/account_cancel/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 04:41+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fa.po b/addons/account_cancel/i18n/fa.po index 3faa6a47552..18147a3aad3 100644 --- a/addons/account_cancel/i18n/fa.po +++ b/addons/account_cancel/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fi.po b/addons/account_cancel/i18n/fi.po index 8389ee2d724..7451dfb9e88 100644 --- a/addons/account_cancel/i18n/fi.po +++ b/addons/account_cancel/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fr.po b/addons/account_cancel/i18n/fr.po index 5184797a9d4..0e7ed592d59 100644 --- a/addons/account_cancel/i18n/fr.po +++ b/addons/account_cancel/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-13 21:09+0000\n" -"Last-Translator: lholivier \n" +"Last-Translator: Olivier Lenoir \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gl.po b/addons/account_cancel/i18n/gl.po index 2ca1d5d7b76..9fec2475d41 100644 --- a/addons/account_cancel/i18n/gl.po +++ b/addons/account_cancel/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gu.po b/addons/account_cancel/i18n/gu.po index 1eff318966c..2a1cc90e0d6 100644 --- a/addons/account_cancel/i18n/gu.po +++ b/addons/account_cancel/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/he.po b/addons/account_cancel/i18n/he.po index 3c47692d036..eafcb55ee9b 100644 --- a/addons/account_cancel/i18n/he.po +++ b/addons/account_cancel/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-27 04:37+0000\n" -"X-Generator: Launchpad (build 16845)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hi.po b/addons/account_cancel/i18n/hi.po index 5b432e70c12..86fa80f46bf 100644 --- a/addons/account_cancel/i18n/hi.po +++ b/addons/account_cancel/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hr.po b/addons/account_cancel/i18n/hr.po index 54eecc98d20..1a8a34152f9 100644 --- a/addons/account_cancel/i18n/hr.po +++ b/addons/account_cancel/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hu.po b/addons/account_cancel/i18n/hu.po index 8579d844d68..4137d6b9831 100644 --- a/addons/account_cancel/i18n/hu.po +++ b/addons/account_cancel/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/id.po b/addons/account_cancel/i18n/id.po index eb683f7d29f..b6aca5d58f1 100644 --- a/addons/account_cancel/i18n/id.po +++ b/addons/account_cancel/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/it.po b/addons/account_cancel/i18n/it.po index 433f99f309d..a18371e78d5 100644 --- a/addons/account_cancel/i18n/it.po +++ b/addons/account_cancel/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 19:46+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \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: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ja.po b/addons/account_cancel/i18n/ja.po index ab8b2c8841c..cde2c818520 100644 --- a/addons/account_cancel/i18n/ja.po +++ b/addons/account_cancel/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/kk.po b/addons/account_cancel/i18n/kk.po index cbdf8ab6a5e..57875fa85ab 100644 --- a/addons/account_cancel/i18n/kk.po +++ b/addons/account_cancel/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lo.po b/addons/account_cancel/i18n/lo.po index 29d15e2306c..8c14914cc83 100644 --- a/addons/account_cancel/i18n/lo.po +++ b/addons/account_cancel/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lt.po b/addons/account_cancel/i18n/lt.po index baf97fb334a..c3bac63da02 100644 --- a/addons/account_cancel/i18n/lt.po +++ b/addons/account_cancel/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lv.po b/addons/account_cancel/i18n/lv.po index 83c84e82372..f2332ff5552 100644 --- a/addons/account_cancel/i18n/lv.po +++ b/addons/account_cancel/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mk.po b/addons/account_cancel/i18n/mk.po index 1bbfb9f0004..df376b5e31a 100644 --- a/addons/account_cancel/i18n/mk.po +++ b/addons/account_cancel/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mn.po b/addons/account_cancel/i18n/mn.po index 1196792944a..2d49a383005 100644 --- a/addons/account_cancel/i18n/mn.po +++ b/addons/account_cancel/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nb.po b/addons/account_cancel/i18n/nb.po index 0b54b9b533f..d2e3ce25091 100644 --- a/addons/account_cancel/i18n/nb.po +++ b/addons/account_cancel/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl.po b/addons/account_cancel/i18n/nl.po index b7d4ba1cd84..857e4b597e5 100644 --- a/addons/account_cancel/i18n/nl.po +++ b/addons/account_cancel/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl_BE.po b/addons/account_cancel/i18n/nl_BE.po index fb3091499e5..7c100ea664c 100644 --- a/addons/account_cancel/i18n/nl_BE.po +++ b/addons/account_cancel/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/oc.po b/addons/account_cancel/i18n/oc.po index 22af8b46f10..80f62ebcdb4 100644 --- a/addons/account_cancel/i18n/oc.po +++ b/addons/account_cancel/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pl.po b/addons/account_cancel/i18n/pl.po index cb9ca0ff86d..11f20347ad6 100644 --- a/addons/account_cancel/i18n/pl.po +++ b/addons/account_cancel/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt.po b/addons/account_cancel/i18n/pt.po index 6a119e84738..8f29c89fef6 100644 --- a/addons/account_cancel/i18n/pt.po +++ b/addons/account_cancel/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt_BR.po b/addons/account_cancel/i18n/pt_BR.po index b34abc933ff..67dda66319b 100644 --- a/addons/account_cancel/i18n/pt_BR.po +++ b/addons/account_cancel/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ro.po b/addons/account_cancel/i18n/ro.po index 68b091681b6..1ce3857efc6 100644 --- a/addons/account_cancel/i18n/ro.po +++ b/addons/account_cancel/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ru.po b/addons/account_cancel/i18n/ru.po index 220d0627059..f898e202aa5 100644 --- a/addons/account_cancel/i18n/ru.po +++ b/addons/account_cancel/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sl.po b/addons/account_cancel/i18n/sl.po index 36f23ce00d5..e14519a100b 100644 --- a/addons/account_cancel/i18n/sl.po +++ b/addons/account_cancel/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sq.po b/addons/account_cancel/i18n/sq.po index 8b98fd3f5a4..d6b151a0175 100644 --- a/addons/account_cancel/i18n/sq.po +++ b/addons/account_cancel/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr.po b/addons/account_cancel/i18n/sr.po index bf65fed7d72..5336d7f049f 100644 --- a/addons/account_cancel/i18n/sr.po +++ b/addons/account_cancel/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr@latin.po b/addons/account_cancel/i18n/sr@latin.po index c8ba42d93d8..4236029d8fc 100644 --- a/addons/account_cancel/i18n/sr@latin.po +++ b/addons/account_cancel/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sv.po b/addons/account_cancel/i18n/sv.po index 4e6d410092b..ca3d4cb86b0 100644 --- a/addons/account_cancel/i18n/sv.po +++ b/addons/account_cancel/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ta.po b/addons/account_cancel/i18n/ta.po index c5614660588..eb9528e815b 100644 --- a/addons/account_cancel/i18n/ta.po +++ b/addons/account_cancel/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/th.po b/addons/account_cancel/i18n/th.po index 77ce8da5e3f..f0f97b48930 100644 --- a/addons/account_cancel/i18n/th.po +++ b/addons/account_cancel/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/tr.po b/addons/account_cancel/i18n/tr.po index a0a9f50dbbb..b9737963a39 100644 --- a/addons/account_cancel/i18n/tr.po +++ b/addons/account_cancel/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/uk.po b/addons/account_cancel/i18n/uk.po index 9b7f0e07124..f68cc761872 100644 --- a/addons/account_cancel/i18n/uk.po +++ b/addons/account_cancel/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/vi.po b/addons/account_cancel/i18n/vi.po index e5f0e6134bd..139cd9fe8fe 100644 --- a/addons/account_cancel/i18n/vi.po +++ b/addons/account_cancel/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_CN.po b/addons/account_cancel/i18n/zh_CN.po index 285acf99586..daa1342d5ab 100644 --- a/addons/account_cancel/i18n/zh_CN.po +++ b/addons/account_cancel/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_TW.po b/addons/account_cancel/i18n/zh_TW.po index 57abdd48438..a7fc417a28f 100644 --- a/addons/account_cancel/i18n/zh_TW.po +++ b/addons/account_cancel/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:17+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:28+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_chart/i18n/ar.po b/addons/account_chart/i18n/ar.po index c67db857aeb..e07e9577af9 100644 --- a/addons/account_chart/i18n/ar.po +++ b/addons/account_chart/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bg.po b/addons/account_chart/i18n/bg.po index 23ab324a1ff..aed5ee45f98 100644 --- a/addons/account_chart/i18n/bg.po +++ b/addons/account_chart/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bs.po b/addons/account_chart/i18n/bs.po index 529b7fd3807..3908f486d5a 100644 --- a/addons/account_chart/i18n/bs.po +++ b/addons/account_chart/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ca.po b/addons/account_chart/i18n/ca.po index 095fc0ba2c1..7a2e11ffb02 100644 --- a/addons/account_chart/i18n/ca.po +++ b/addons/account_chart/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/cs.po b/addons/account_chart/i18n/cs.po index e0b42de5dc3..8d596348150 100644 --- a/addons/account_chart/i18n/cs.po +++ b/addons/account_chart/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/da.po b/addons/account_chart/i18n/da.po index 8f024402e08..3548feee60b 100644 --- a/addons/account_chart/i18n/da.po +++ b/addons/account_chart/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/de.po b/addons/account_chart/i18n/de.po index abea21a0976..01fd6ec7fa5 100644 --- a/addons/account_chart/i18n/de.po +++ b/addons/account_chart/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/el.po b/addons/account_chart/i18n/el.po index c3f9cb462a0..b4198562551 100644 --- a/addons/account_chart/i18n/el.po +++ b/addons/account_chart/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/en_GB.po b/addons/account_chart/i18n/en_GB.po index dcd660fcbf1..ba6079ba7f2 100644 --- a/addons/account_chart/i18n/en_GB.po +++ b/addons/account_chart/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es.po b/addons/account_chart/i18n/es.po index c2c9df36b1a..b60a36f144a 100644 --- a/addons/account_chart/i18n/es.po +++ b/addons/account_chart/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_AR.po b/addons/account_chart/i18n/es_AR.po index b5bee70eacd..cd1fc7c31e6 100644 --- a/addons/account_chart/i18n/es_AR.po +++ b/addons/account_chart/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CL.po b/addons/account_chart/i18n/es_CL.po index 40b7c82b159..fe442338bb4 100644 --- a/addons/account_chart/i18n/es_CL.po +++ b/addons/account_chart/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CR.po b/addons/account_chart/i18n/es_CR.po index 342b39ede49..281250f4448 100644 --- a/addons/account_chart/i18n/es_CR.po +++ b/addons/account_chart/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: account_chart diff --git a/addons/account_chart/i18n/es_EC.po b/addons/account_chart/i18n/es_EC.po index 557a994514a..eba5e15cafd 100644 --- a/addons/account_chart/i18n/es_EC.po +++ b/addons/account_chart/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_MX.po b/addons/account_chart/i18n/es_MX.po index b922dcc3f6c..eb4c826510d 100644 --- a/addons/account_chart/i18n/es_MX.po +++ b/addons/account_chart/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_PY.po b/addons/account_chart/i18n/es_PY.po index 780aa1219f0..154cb1a91b4 100644 --- a/addons/account_chart/i18n/es_PY.po +++ b/addons/account_chart/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/et.po b/addons/account_chart/i18n/et.po index 410b162bc5a..61fd36608ac 100644 --- a/addons/account_chart/i18n/et.po +++ b/addons/account_chart/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/eu.po b/addons/account_chart/i18n/eu.po index 849371bc190..95ebfbd66ec 100644 --- a/addons/account_chart/i18n/eu.po +++ b/addons/account_chart/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fa.po b/addons/account_chart/i18n/fa.po index e73025d11b6..6692fd58504 100644 --- a/addons/account_chart/i18n/fa.po +++ b/addons/account_chart/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fi.po b/addons/account_chart/i18n/fi.po index 7bac54a1f5c..589b91a70dd 100644 --- a/addons/account_chart/i18n/fi.po +++ b/addons/account_chart/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fr.po b/addons/account_chart/i18n/fr.po index 904b8e3aad1..a68297faed6 100644 --- a/addons/account_chart/i18n/fr.po +++ b/addons/account_chart/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gl.po b/addons/account_chart/i18n/gl.po index 9d150801d5c..9fb0ac7df57 100644 --- a/addons/account_chart/i18n/gl.po +++ b/addons/account_chart/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gu.po b/addons/account_chart/i18n/gu.po index 9e2c7fef8c9..3dc1365e886 100644 --- a/addons/account_chart/i18n/gu.po +++ b/addons/account_chart/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hi.po b/addons/account_chart/i18n/hi.po index 33101885813..e9bd984e46a 100644 --- a/addons/account_chart/i18n/hi.po +++ b/addons/account_chart/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hr.po b/addons/account_chart/i18n/hr.po index 7be581b8db2..befd2a545e9 100644 --- a/addons/account_chart/i18n/hr.po +++ b/addons/account_chart/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hu.po b/addons/account_chart/i18n/hu.po index 911f596d6b5..aabbe5c56cb 100644 --- a/addons/account_chart/i18n/hu.po +++ b/addons/account_chart/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/id.po b/addons/account_chart/i18n/id.po index 9c82b4bdba2..0545cb78549 100644 --- a/addons/account_chart/i18n/id.po +++ b/addons/account_chart/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/it.po b/addons/account_chart/i18n/it.po index b320f9fa43e..1ba923af068 100644 --- a/addons/account_chart/i18n/it.po +++ b/addons/account_chart/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ja.po b/addons/account_chart/i18n/ja.po index 1df2c2a3b62..4910978acc1 100644 --- a/addons/account_chart/i18n/ja.po +++ b/addons/account_chart/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ko.po b/addons/account_chart/i18n/ko.po index d014e768369..6950363f44a 100644 --- a/addons/account_chart/i18n/ko.po +++ b/addons/account_chart/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lo.po b/addons/account_chart/i18n/lo.po index 12aa65f2db5..0baf47f814c 100644 --- a/addons/account_chart/i18n/lo.po +++ b/addons/account_chart/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lt.po b/addons/account_chart/i18n/lt.po index aa0b0aea7b8..5b460b2ad8e 100644 --- a/addons/account_chart/i18n/lt.po +++ b/addons/account_chart/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lv.po b/addons/account_chart/i18n/lv.po index 98d84f698a0..23702a2535d 100644 --- a/addons/account_chart/i18n/lv.po +++ b/addons/account_chart/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mk.po b/addons/account_chart/i18n/mk.po index bf16c6a4ecb..a1c6cdbb339 100644 --- a/addons/account_chart/i18n/mk.po +++ b/addons/account_chart/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mn.po b/addons/account_chart/i18n/mn.po index c07589f3d5c..1e4b0806647 100644 --- a/addons/account_chart/i18n/mn.po +++ b/addons/account_chart/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nb.po b/addons/account_chart/i18n/nb.po index 1b6d4983d84..ff2267f5043 100644 --- a/addons/account_chart/i18n/nb.po +++ b/addons/account_chart/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl.po b/addons/account_chart/i18n/nl.po index 865548fc2d4..29987ad4533 100644 --- a/addons/account_chart/i18n/nl.po +++ b/addons/account_chart/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl_BE.po b/addons/account_chart/i18n/nl_BE.po index 358778605b6..f26b2c727fb 100644 --- a/addons/account_chart/i18n/nl_BE.po +++ b/addons/account_chart/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/oc.po b/addons/account_chart/i18n/oc.po index de71ecc7cf3..9b6aa2ead29 100644 --- a/addons/account_chart/i18n/oc.po +++ b/addons/account_chart/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pl.po b/addons/account_chart/i18n/pl.po index 2dca683d3e1..164f5032e7f 100644 --- a/addons/account_chart/i18n/pl.po +++ b/addons/account_chart/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information @@ -24,4 +24,4 @@ msgstr "Usuń minimalny plan kont" #. module: account_chart #: model:ir.module.module,shortdesc:account_chart.module_meta_information msgid "Charts of Accounts" -msgstr "" +msgstr "Plan kont" diff --git a/addons/account_chart/i18n/pt.po b/addons/account_chart/i18n/pt.po index 21f4bdc076c..fb3515b03f1 100644 --- a/addons/account_chart/i18n/pt.po +++ b/addons/account_chart/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt_BR.po b/addons/account_chart/i18n/pt_BR.po index d0657822dbe..e0dae50fb25 100644 --- a/addons/account_chart/i18n/pt_BR.po +++ b/addons/account_chart/i18n/pt_BR.po @@ -13,13 +13,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information msgid "Remove minimal account chart" -msgstr "Retirar plano de contas mínimo" +msgstr "Remover plano de contas mínimo" #. module: account_chart #: model:ir.module.module,shortdesc:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ro.po b/addons/account_chart/i18n/ro.po index 8de1ebcde79..cbefe18b10a 100644 --- a/addons/account_chart/i18n/ro.po +++ b/addons/account_chart/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ru.po b/addons/account_chart/i18n/ru.po index 7d6b74ceeea..4bb0577bd23 100644 --- a/addons/account_chart/i18n/ru.po +++ b/addons/account_chart/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sk.po b/addons/account_chart/i18n/sk.po index a1359b0c340..5048e28de52 100644 --- a/addons/account_chart/i18n/sk.po +++ b/addons/account_chart/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sl.po b/addons/account_chart/i18n/sl.po index ab5757e67ba..56d0d8a8dd2 100644 --- a/addons/account_chart/i18n/sl.po +++ b/addons/account_chart/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sq.po b/addons/account_chart/i18n/sq.po index 2f76d061217..af008bd772b 100644 --- a/addons/account_chart/i18n/sq.po +++ b/addons/account_chart/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr.po b/addons/account_chart/i18n/sr.po index e861b34435e..fa5eaf0fdd4 100644 --- a/addons/account_chart/i18n/sr.po +++ b/addons/account_chart/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr@latin.po b/addons/account_chart/i18n/sr@latin.po index d952391201b..8999bba4a98 100644 --- a/addons/account_chart/i18n/sr@latin.po +++ b/addons/account_chart/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sv.po b/addons/account_chart/i18n/sv.po index 1acc9a88d8d..7ba07b7d065 100644 --- a/addons/account_chart/i18n/sv.po +++ b/addons/account_chart/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ta.po b/addons/account_chart/i18n/ta.po index 87c043166bd..169313edeb5 100644 --- a/addons/account_chart/i18n/ta.po +++ b/addons/account_chart/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/th.po b/addons/account_chart/i18n/th.po index 968dde402e3..4d2fd947b5c 100644 --- a/addons/account_chart/i18n/th.po +++ b/addons/account_chart/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/tr.po b/addons/account_chart/i18n/tr.po index 39fef0f560d..66487fc3518 100644 --- a/addons/account_chart/i18n/tr.po +++ b/addons/account_chart/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/uk.po b/addons/account_chart/i18n/uk.po index e70b146055e..e970060a778 100644 --- a/addons/account_chart/i18n/uk.po +++ b/addons/account_chart/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/vi.po b/addons/account_chart/i18n/vi.po index afb41c4b2f5..bb1f9529dd0 100644 --- a/addons/account_chart/i18n/vi.po +++ b/addons/account_chart/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_CN.po b/addons/account_chart/i18n/zh_CN.po index e4a83ba2bc0..fa5e365aba1 100644 --- a/addons/account_chart/i18n/zh_CN.po +++ b/addons/account_chart/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_TW.po b/addons/account_chart/i18n/zh_TW.po index f88ec1074c6..5a082c288b1 100644 --- a/addons/account_chart/i18n/zh_TW.po +++ b/addons/account_chart/i18n/zh_TW.po @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-11 11:14+0000\n" -"PO-Revision-Date: 2012-08-19 10:21+0000\n" -"Last-Translator: Eric Huang \n" +"PO-Revision-Date: 2013-12-29 09:12+0000\n" +"Last-Translator: Andy Cheng \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:05+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information msgid "Remove minimal account chart" -msgstr "移除小的會計科目表" +msgstr "移除最小的會計科目表" #. module: account_chart #: model:ir.module.module,shortdesc:account_chart.module_meta_information diff --git a/addons/account_check_writing/account_voucher.py b/addons/account_check_writing/account_voucher.py index 8e1ad2e1fbf..e4933708f7a 100644 --- a/addons/account_check_writing/account_voucher.py +++ b/addons/account_check_writing/account_voucher.py @@ -49,9 +49,21 @@ class account_voucher(osv.osv): if 'value' in default: amount = 'amount' in default['value'] and default['value']['amount'] or amount + # Currency complete name is not available in res.currency model + # Exceptions done here (EUR, USD, BRL) cover 75% of cases + # For other currencies, display the currency code + currency = self.pool['res.currency'].browse(cr, uid, currency_id, context=context) + if currency.name.upper() == 'EUR': + currency_name = 'Euro' + elif currency.name.upper() == 'USD': + currency_name = 'Dollars' + elif currency.name.upper() == 'BRL': + currency_name = 'reais' + else: + currency_name = currency.name #TODO : generic amount_to_text is not ready yet, otherwise language (and country) and currency can be passed #amount_in_word = amount_to_text(amount, context=context) - amount_in_word = amount_to_text(amount) + amount_in_word = amount_to_text(amount, currency=currency_name) default['value'].update({'amount_in_word':amount_in_word}) if journal_id: allow_check_writing = self.pool.get('account.journal').browse(cr, uid, journal_id, context=context).allow_check_writing diff --git a/addons/account_check_writing/i18n/ar.po b/addons/account_check_writing/i18n/ar.po index 361f28f1a90..eb2e42859c0 100644 --- a/addons/account_check_writing/i18n/ar.po +++ b/addons/account_check_writing/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/bs.po b/addons/account_check_writing/i18n/bs.po index d4068b46622..65b2bd57f6d 100644 --- a/addons/account_check_writing/i18n/bs.po +++ b/addons/account_check_writing/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/cs.po b/addons/account_check_writing/i18n/cs.po index 563e84af02f..ccb5e204662 100644 --- a/addons/account_check_writing/i18n/cs.po +++ b/addons/account_check_writing/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/de.po b/addons/account_check_writing/i18n/de.po index 84346fbb1cb..00195bfb71e 100644 --- a/addons/account_check_writing/i18n/de.po +++ b/addons/account_check_writing/i18n/de.po @@ -15,13 +15,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 msgid "Check on Top" -msgstr "Ausgabe Oben" +msgstr "Ausgabe oben" #. module: account_check_writing #: report:account.print.check.top:0 @@ -37,7 +37,7 @@ msgstr "Druckausgabe Scheck" #. module: account_check_writing #: selection:res.company,check_layout:0 msgid "Check in middle" -msgstr "Ausgabe in Mitte" +msgstr "Ausgabe in der Mitte" #. module: account_check_writing #: help:res.company,check_layout:0 @@ -53,7 +53,7 @@ msgstr "" #. module: account_check_writing #: selection:res.company,check_layout:0 msgid "Check on bottom" -msgstr "Ausgabe Unten" +msgstr "Ausgabe unten" #. module: account_check_writing #: model:ir.actions.act_window,name:account_check_writing.action_account_check_write @@ -111,7 +111,7 @@ msgstr "Ursprünglicher Betrag" #. module: account_check_writing #: field:res.company,check_layout:0 msgid "Check Layout" -msgstr "Scheck Layout" +msgstr "Scheck-Layout" #. module: account_check_writing #: field:account.voucher,allow_check:0 @@ -128,7 +128,7 @@ msgstr "Zahlung" #. module: account_check_writing #: field:account.journal,use_preprint_check:0 msgid "Use Preprinted Check" -msgstr "Benutze Vordruck" +msgstr "Vordruck benutzen" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_bottom @@ -152,9 +152,9 @@ msgid "" " " msgstr "" "

\n" -"                 Klicken Sie, um einen neuen Scheck erstellen.\n" +"                 Klicken Sie, um einen neuen Scheck zu erstellen.\n" "               \n" -"                 Mit dem Scheck Formular können Sie Zahlungen an Lieferanten " +"                 Mit dem Scheckformular können Sie Zahlungen an Lieferanten " "per Scheck \n" " anweisen, durchführen und verfolgen. Wenn Sie einen " "Lieferanten auswählen, \n" @@ -209,7 +209,7 @@ msgstr "Scheck drucken (Oberteil)" #: report:account.print.check.middle:0 #: report:account.print.check.top:0 msgid "Check Amount" -msgstr "Scheck Zahlbetrag" +msgstr "Scheckbetrag" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_voucher @@ -229,7 +229,7 @@ msgstr "Betrag in Worten" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_check_write msgid "Prin Check in Batch" -msgstr "Scheck Druck im Stapel" +msgstr "Scheckdruck im Stapel" #. module: account_check_writing #: view:account.check.write:0 diff --git a/addons/account_check_writing/i18n/en_GB.po b/addons/account_check_writing/i18n/en_GB.po index e23cb7427ee..8899f38ec46 100644 --- a/addons/account_check_writing/i18n/en_GB.po +++ b/addons/account_check_writing/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es.po b/addons/account_check_writing/i18n/es.po index e35974eca2c..a548600b802 100644 --- a/addons/account_check_writing/i18n/es.po +++ b/addons/account_check_writing/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_CR.po b/addons/account_check_writing/i18n/es_CR.po index 20156083fa9..66ff1b05236 100644 --- a/addons/account_check_writing/i18n/es_CR.po +++ b/addons/account_check_writing/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_EC.po b/addons/account_check_writing/i18n/es_EC.po index f8556f8d282..f096c23bc13 100644 --- a/addons/account_check_writing/i18n/es_EC.po +++ b/addons/account_check_writing/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_MX.po b/addons/account_check_writing/i18n/es_MX.po index d9ac4218ed9..37384cffa5c 100644 --- a/addons/account_check_writing/i18n/es_MX.po +++ b/addons/account_check_writing/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fi.po b/addons/account_check_writing/i18n/fi.po index f18a381d877..6f08c6e3ef5 100644 --- a/addons/account_check_writing/i18n/fi.po +++ b/addons/account_check_writing/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -65,19 +65,19 @@ msgstr "" #. module: account_check_writing #: help:account.journal,allow_check_writing:0 msgid "Check this if the journal is to be used for writing checks." -msgstr "" +msgstr "Valitse tämä, jos päiväkirjaa käytetään sekkien kirjoittamiseen." #. module: account_check_writing #: field:account.journal,allow_check_writing:0 msgid "Allow Check writing" -msgstr "" +msgstr "Salli sekkien kirjoittaminen" #. module: account_check_writing #: report:account.print.check.bottom:0 #: report:account.print.check.middle:0 #: report:account.print.check.top:0 msgid "Description" -msgstr "" +msgstr "Kuvaus" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_journal @@ -88,7 +88,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_check_writing.action_write_check #: model:ir.ui.menu,name:account_check_writing.menu_action_write_check msgid "Write Checks" -msgstr "" +msgstr "Kirjoita sekkejä" #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -102,7 +102,7 @@ msgstr "" #: report:account.print.check.middle:0 #: report:account.print.check.top:0 msgid "Original Amount" -msgstr "" +msgstr "Alkuperäinen summa" #. module: account_check_writing #: field:res.company,check_layout:0 @@ -112,7 +112,7 @@ msgstr "" #. module: account_check_writing #: field:account.voucher,allow_check:0 msgid "Allow Check Writing" -msgstr "" +msgstr "Salli sekkien kirjoittaminen" #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -124,7 +124,7 @@ msgstr "" #. module: account_check_writing #: field:account.journal,use_preprint_check:0 msgid "Use Preprinted Check" -msgstr "" +msgstr "Käytä esitulostettua sekkiä" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_bottom diff --git a/addons/account_check_writing/i18n/fr.po b/addons/account_check_writing/i18n/fr.po index 9a71819e380..4db341aef55 100644 --- a/addons/account_check_writing/i18n/fr.po +++ b/addons/account_check_writing/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/gu.po b/addons/account_check_writing/i18n/gu.po index 744638b0496..bc718b478f5 100644 --- a/addons/account_check_writing/i18n/gu.po +++ b/addons/account_check_writing/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hr.po b/addons/account_check_writing/i18n/hr.po index 36a8df12ef6..8f4c87ace77 100644 --- a/addons/account_check_writing/i18n/hr.po +++ b/addons/account_check_writing/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hu.po b/addons/account_check_writing/i18n/hu.po index 7ba9f5704f5..c1cb7bdc3e2 100644 --- a/addons/account_check_writing/i18n/hu.po +++ b/addons/account_check_writing/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ja.po b/addons/account_check_writing/i18n/ja.po index 6dbc2951463..0d7abc9491b 100644 --- a/addons/account_check_writing/i18n/ja.po +++ b/addons/account_check_writing/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -91,7 +91,7 @@ msgstr "仕訳帳" #: model:ir.actions.act_window,name:account_check_writing.action_write_check #: model:ir.ui.menu,name:account_check_writing.menu_action_write_check msgid "Write Checks" -msgstr "小切手の振出" +msgstr "小切手作成" #. module: account_check_writing #: report:account.print.check.bottom:0 diff --git a/addons/account_check_writing/i18n/lt.po b/addons/account_check_writing/i18n/lt.po index 51fb3cbda54..e446abd174e 100644 --- a/addons/account_check_writing/i18n/lt.po +++ b/addons/account_check_writing/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/mk.po b/addons/account_check_writing/i18n/mk.po index e60502bf638..273ba05c55f 100644 --- a/addons/account_check_writing/i18n/mk.po +++ b/addons/account_check_writing/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/mn.po b/addons/account_check_writing/i18n/mn.po index 971a2ae2889..8b7d0b9188b 100644 --- a/addons/account_check_writing/i18n/mn.po +++ b/addons/account_check_writing/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nb.po b/addons/account_check_writing/i18n/nb.po index 11e43857442..0cfc21d6272 100644 --- a/addons/account_check_writing/i18n/nb.po +++ b/addons/account_check_writing/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nl.po b/addons/account_check_writing/i18n/nl.po index 30368eff64a..43beb95233c 100644 --- a/addons/account_check_writing/i18n/nl.po +++ b/addons/account_check_writing/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pl.po b/addons/account_check_writing/i18n/pl.po index 9b097bc458c..552b6001b3e 100644 --- a/addons/account_check_writing/i18n/pl.po +++ b/addons/account_check_writing/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:38+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -25,7 +25,7 @@ msgstr "" #. module: account_check_writing #: report:account.print.check.top:0 msgid "Open Balance" -msgstr "" +msgstr "Bilans otwarcia" #. module: account_check_writing #: view:account.check.write:0 @@ -95,14 +95,14 @@ msgstr "" #: report:account.print.check.middle:0 #: report:account.print.check.top:0 msgid "Discount" -msgstr "" +msgstr "Upust" #. module: account_check_writing #: report:account.print.check.bottom:0 #: report:account.print.check.middle:0 #: report:account.print.check.top:0 msgid "Original Amount" -msgstr "" +msgstr "Oryginalna wartość" #. module: account_check_writing #: field:res.company,check_layout:0 @@ -119,7 +119,7 @@ msgstr "" #: report:account.print.check.middle:0 #: report:account.print.check.top:0 msgid "Payment" -msgstr "" +msgstr "Płatność" #. module: account_check_writing #: field:account.journal,use_preprint_check:0 @@ -153,7 +153,7 @@ msgstr "" #: report:account.print.check.middle:0 #: report:account.print.check.top:0 msgid "Due Date" -msgstr "" +msgstr "Termin płatności" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_middle @@ -163,13 +163,13 @@ msgstr "" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_res_company msgid "Companies" -msgstr "" +msgstr "Firmy" #. module: account_check_writing #: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59 #, python-format msgid "Error!" -msgstr "" +msgstr "Błąd!" #. module: account_check_writing #: help:account.check.write,check_number:0 @@ -202,12 +202,12 @@ msgstr "" #. module: account_check_writing #: view:account.check.write:0 msgid "or" -msgstr "" +msgstr "lub" #. module: account_check_writing #: field:account.voucher,amount_in_word:0 msgid "Amount in Word" -msgstr "" +msgstr "Wartość słownie" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_check_write diff --git a/addons/account_check_writing/i18n/pt.po b/addons/account_check_writing/i18n/pt.po index 1e1543f0fec..4c3eb6348a4 100644 --- a/addons/account_check_writing/i18n/pt.po +++ b/addons/account_check_writing/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pt_BR.po b/addons/account_check_writing/i18n/pt_BR.po index 3fe7071a26d..a9427ddd6eb 100644 --- a/addons/account_check_writing/i18n/pt_BR.po +++ b/addons/account_check_writing/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-21 23:19+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\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-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ro.po b/addons/account_check_writing/i18n/ro.po index 45545d713c3..98c87b82f71 100644 --- a/addons/account_check_writing/i18n/ro.po +++ b/addons/account_check_writing/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ru.po b/addons/account_check_writing/i18n/ru.po index af73a60e7e1..b31ef7e8efa 100644 --- a/addons/account_check_writing/i18n/ru.po +++ b/addons/account_check_writing/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sl.po b/addons/account_check_writing/i18n/sl.po index 4dfb394d03b..dba89bf7742 100644 --- a/addons/account_check_writing/i18n/sl.po +++ b/addons/account_check_writing/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sr@latin.po b/addons/account_check_writing/i18n/sr@latin.po index 830040c50cf..d9046a64437 100644 --- a/addons/account_check_writing/i18n/sr@latin.po +++ b/addons/account_check_writing/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sv.po b/addons/account_check_writing/i18n/sv.po index 1bf5469d79b..9bb8d81e39a 100644 --- a/addons/account_check_writing/i18n/sv.po +++ b/addons/account_check_writing/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/tr.po b/addons/account_check_writing/i18n/tr.po index 57b672879a6..09c3bb4794f 100644 --- a/addons/account_check_writing/i18n/tr.po +++ b/addons/account_check_writing/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/zh_CN.po b/addons/account_check_writing/i18n/zh_CN.po index 4853574341c..ac76a7bf771 100644 --- a/addons/account_check_writing/i18n/zh_CN.po +++ b/addons/account_check_writing/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/zh_TW.po b/addons/account_check_writing/i18n/zh_TW.po index 25e18e7f8f2..3871eea0e65 100644 --- a/addons/account_check_writing/i18n/zh_TW.po +++ b/addons/account_check_writing/i18n/zh_TW.po @@ -8,14 +8,14 @@ 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-08-22 06:48+0000\n" -"Last-Translator: Eric Huang \n" +"PO-Revision-Date: 2013-12-29 09:09+0000\n" +"Last-Translator: Andy Cheng \n" "Language-Team: Cenoq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -56,13 +56,13 @@ msgstr "支票位於底部" #. module: account_check_writing #: model:ir.actions.act_window,name:account_check_writing.action_account_check_write msgid "Print Check in Batch" -msgstr "" +msgstr "整批列印支票" #. module: account_check_writing #: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59 #, python-format msgid "One of the printed check already got a number." -msgstr "" +msgstr "已列印的支票中有一張已有號碼。" #. module: account_check_writing #: help:account.journal,allow_check_writing:0 @@ -109,7 +109,7 @@ msgstr "原始金額" #. module: account_check_writing #: field:res.company,check_layout:0 msgid "Check Layout" -msgstr "" +msgstr "支票格式" #. module: account_check_writing #: field:account.voucher,allow_check:0 @@ -131,7 +131,7 @@ msgstr "使用套表列印的支票" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_bottom msgid "Print Check (Bottom)" -msgstr "" +msgstr "列印支票(底端)" #. module: account_check_writing #: model:ir.actions.act_window,help:account_check_writing.action_write_check @@ -149,6 +149,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 點擊以開立新的支票。 \n" +"

\n" +" 支票付款表單讓您可以紀錄以支票付款給供應商的款項。當您選好\n" +" 要付款的供應商、付款方式、付款金額, OpenERP 會自動為您帶\n" +" 出建議核銷的發票或帳單。\n" +"

\n" +" " #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -160,7 +168,7 @@ msgstr "到期日期" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_middle msgid "Print Check (Middle)" -msgstr "" +msgstr "列印支票(中間)" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_res_company @@ -171,12 +179,12 @@ msgstr "公司" #: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59 #, python-format msgid "Error!" -msgstr "" +msgstr "錯誤!" #. module: account_check_writing #: help:account.check.write,check_number:0 msgid "The number of the next check number to be printed." -msgstr "" +msgstr "下一張列印的支票的號碼" #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -187,7 +195,7 @@ msgstr "截止餘額" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_top msgid "Print Check (Top)" -msgstr "" +msgstr "列印支票(頂端)" #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -204,7 +212,7 @@ msgstr "手工憑證" #. module: account_check_writing #: view:account.check.write:0 msgid "or" -msgstr "" +msgstr "或" #. module: account_check_writing #: field:account.voucher,amount_in_word:0 @@ -214,22 +222,22 @@ msgstr "金額大寫" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_check_write msgid "Prin Check in Batch" -msgstr "" +msgstr "整批列印支票" #. module: account_check_writing #: view:account.check.write:0 msgid "Cancel" -msgstr "" +msgstr "取消" #. module: account_check_writing #: field:account.check.write,check_number:0 msgid "Next Check Number" -msgstr "" +msgstr "下一個支票號碼" #. module: account_check_writing #: view:account.check.write:0 msgid "Check" -msgstr "" +msgstr "支票" #~ msgid "" #~ "The check payment form allows you to track the payment you do to your " diff --git a/addons/account_check_writing/report/check_print.py b/addons/account_check_writing/report/check_print.py index 57360025623..add79fcc35a 100644 --- a/addons/account_check_writing/report/check_print.py +++ b/addons/account_check_writing/report/check_print.py @@ -34,7 +34,6 @@ class report_print_check(report_sxw.rml_parse): 'fill_stars' : self.fill_stars, }) def fill_stars(self, amount): - amount = amount.replace('Dollars','') if len(amount) < 100: stars = 100 - len(amount) return ' '.join([amount,'*'*stars]) diff --git a/addons/account_followup/i18n/ar.po b/addons/account_followup/i18n/ar.po index 4856de3526c..9ec84920de7 100644 --- a/addons/account_followup/i18n/ar.po +++ b/addons/account_followup/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/bg.po b/addons/account_followup/i18n/bg.po index 520c0ab5bfa..74147e0eab3 100644 --- a/addons/account_followup/i18n/bg.po +++ b/addons/account_followup/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/bs.po b/addons/account_followup/i18n/bs.po index 1d7ba8e7ab3..648da9ede98 100644 --- a/addons/account_followup/i18n/bs.po +++ b/addons/account_followup/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -22,12 +22,12 @@ msgstr "" #: model:email.template,subject:account_followup.email_template_account_followup_level1 #: model:email.template,subject:account_followup.email_template_account_followup_level2 msgid "${user.company_id.name} Payment Reminder" -msgstr "" +msgstr "${user.company_id.name} podsjetnik plaćanja" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 msgid "The maximum follow-up level" -msgstr "" +msgstr "Maksimalni nivo praćenih koraka" #. module: account_followup #: view:account_followup.stat:0 @@ -43,33 +43,33 @@ msgstr "Sljedeća" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(date)s" -msgstr "" +msgstr "%(datum)s" #. module: account_followup #: field:res.partner,payment_next_action_date:0 msgid "Next Action Date" -msgstr "" +msgstr "Datum sljedeće akcije" #. module: account_followup #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,manual_action:0 msgid "Manual Action" -msgstr "" +msgstr "Ručna akcija" #. module: account_followup #: field:account_followup.sending.results,needprinting:0 msgid "Needs Printing" -msgstr "" +msgstr "Iziskuje štampanje" #. module: account_followup #: view:res.partner:0 msgid "⇾ Mark as Done" -msgstr "" +msgstr "Označi kao izvršeno" #. module: account_followup #: field:account_followup.followup.line,manual_action_note:0 msgid "Action To Do" -msgstr "" +msgstr "Akcija za uraditi" #. module: account_followup #: field:account_followup.followup,company_id:0 @@ -94,27 +94,27 @@ msgstr "Naslov Emaila" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(user_signature)s" -msgstr "" +msgstr "%(user_signature)s" #. module: account_followup #: view:account_followup.followup.line:0 msgid "days overdue, do the following actions:" -msgstr "" +msgstr "dana prekoračenja, izvršite sljedeće akcije:" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "" +msgstr "Koraci praćenja" #. module: account_followup #: field:account_followup.print,email_body:0 msgid "Email Body" -msgstr "" +msgstr "Sadržaj email-a" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print msgid "Send Follow-Ups" -msgstr "" +msgstr "Pošalji praćenja" #. module: account_followup #: report:account_followup.followup.print:0 @@ -129,11 +129,13 @@ msgid "" "This is the next action to be taken. It will automatically be set when the " "partner gets a follow-up level that requires a manual action. " msgstr "" +"Ovo je sljedeća akcija koja će se uraditi. Automatomatski će se postaviti " +"kada partner dosegne nivo praćenja koji zahtjeva ručne akcije. " #. module: account_followup #: view:res.partner:0 msgid "No Responsible" -msgstr "" +msgstr "Nije odgovorna osoba" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line2 @@ -158,6 +160,22 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Poštovani %(partner_name)s,\n" +"\n" +"Razočarani smo time što uprkos slanju podsjetnika, vaše dugovanje se sada " +"nalazi u ozbiljnom prekoračenju.\n" +"\n" +"Od velike važnosti je da se uplata odmah izvrši, u suprotnom će mo morati da " +"razmotrimo stopiranja isporuka roba/usluga.\n" +"Molimo, učinite potrebne korake da se plaćanje izvrši u sljedećih 8 dana.\n" +"\n" +"Ako postoji problem sa plaćanjem faktura kojeg nismo svjesni, ne okljevajte " +"da kontaktirate naše računovodstvo, tako da problem možemo riješiti hitno.\n" +"\n" +"Detalji dugovanja su ispisana ispod.\n" +"\n" +"Ljep pozdrav,\n" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level0 @@ -195,11 +213,43 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Poštovani ${object.name},

\n" +"

\n" +" Izuzetak je učinjen ako je greška do nas, ali čini se da sljedeći iznosi " +"nisu plaćeni. Molimo Vas, preuzmite\n" +"potrebne mjere da izmirite dugovanja u roku od 8 dana.\n" +"\n" +"Ako izvršite plaćanje nakon ove poruke, molimo da zanemarite ovu obavjest. " +"Ne okljevajte da pozovete naše računovodstvo\n" +"u slučaju nekog problema ili ne razjašnjenog pitanja. \n" +"\n" +"

\n" +"
\n" +"Ljep pozdrav,\n" +"
\n" +"
\n" +"${user.name}\n" +"\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: view:account_followup.stat.by.partner:0 msgid "Balance > 0" -msgstr "" +msgstr "Saldo > 0" #. module: account_followup #: view:account.move.line:0 @@ -209,17 +259,17 @@ msgstr "Ukupan dug" #. module: account_followup #: field:res.partner,payment_next_action:0 msgid "Next Action" -msgstr "" +msgstr "Sljedeća akcija" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Partner Name" -msgstr "" +msgstr ": Ime partnera" #. module: account_followup #: field:account_followup.followup.line,manual_action_responsible_id:0 msgid "Assign a Responsible" -msgstr "" +msgstr "Dodjeli odgovornog" #. module: account_followup #: view:account_followup.followup:0 @@ -269,43 +319,43 @@ msgstr "Partneri" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "" +msgstr "Dozvoljeno je samo jedno praćenje po kompaniji" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 #, python-format msgid "Invoices Reminder" -msgstr "" +msgstr "Podsjetnik faktura" #. module: account_followup #: help:account_followup.followup.line,send_letter:0 msgid "When processing, it will print a letter" -msgstr "" +msgstr "Prilikom obrade, ispisati će se pismo" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 msgid "Worst Due Date" -msgstr "" +msgstr "Najgori datum valute" #. module: account_followup #: view:account_followup.stat:0 msgid "Not Litigation" -msgstr "" +msgstr "Nije spor" #. module: account_followup #: view:account_followup.print:0 msgid "Send emails and generate letters" -msgstr "" +msgstr "Pošalji email i kreiraj pismo" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup msgid "Manual Follow-Ups" -msgstr "" +msgstr "Ručna praćenja" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(partner_name)s" -msgstr "" +msgstr "%(partner_name)s" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level1 @@ -356,49 +406,49 @@ msgstr "Dugovanje" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat msgid "Follow-up Statistics" -msgstr "" +msgstr "Statistika praćenja" #. module: account_followup #: view:res.partner:0 msgid "Send Overdue Email" -msgstr "" +msgstr "Pošalji email o isteku valute" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup_line msgid "Follow-up Criteria" -msgstr "" +msgstr "Kriterijum praćenja" #. module: account_followup #: help:account_followup.followup.line,sequence:0 msgid "Gives the sequence order when displaying a list of follow-up lines." -msgstr "" +msgstr "Daje redosljed sekvence kada se prikazuje lista stavki prećenja." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid " will be sent" -msgstr "" +msgstr " će biti poslano" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User's Company Name" -msgstr "" +msgstr ": Ime kompanije korisnika" #. module: account_followup #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_letter:0 msgid "Send a Letter" -msgstr "" +msgstr "Pošalji pismo" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form msgid "Payment Follow-ups" -msgstr "" +msgstr "Praćenja plaćanja" #. module: account_followup #: field:account_followup.followup.line,delay:0 msgid "Due Days" -msgstr "" +msgstr "Dani preko valute" #. module: account_followup #: field:account.move.line,followup_line_id:0 @@ -414,12 +464,12 @@ msgstr "Poslijednja opomena" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup msgid "Reconcile Invoices & Payments" -msgstr "" +msgstr "Zatvaranje faktura i Plaćanja" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s msgid "Do Manual Follow-Ups" -msgstr "" +msgstr "Izvedi ručna praćenja" #. module: account_followup #: report:account_followup.followup.print:0 @@ -429,17 +479,17 @@ msgstr "" #. module: account_followup #: field:account_followup.print,email_conf:0 msgid "Send Email Confirmation" -msgstr "" +msgstr "Pošalji email potvrdu" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up Entries with period in current year" -msgstr "" +msgstr "Zapisi praćenja sa periodom trenutne godine" #. module: account_followup #: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest follow-up" -msgstr "" +msgstr "Zadnje prećenje" #. module: account_followup #: field:account_followup.print,partner_lang:0 @@ -450,12 +500,12 @@ msgstr "Pošalji mail u Partnerovom jeziku" #: code:addons/account_followup/wizard/account_followup_print.py:169 #, python-format msgid " email(s) sent" -msgstr "" +msgstr " email poslan" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print msgid "Print Follow-up & Send Mail to Customers" -msgstr "" +msgstr "Štampanje praćenja i Slanje email-a kupcima" #. module: account_followup #: field:account_followup.followup.line,description:0 @@ -466,22 +516,22 @@ msgstr "Ispisana poruka" #: code:addons/account_followup/wizard/account_followup_print.py:155 #, python-format msgid "Anybody" -msgstr "" +msgstr "Bilo tko" #. module: account_followup #: help:account_followup.followup.line,send_email:0 msgid "When processing, it will send an email" -msgstr "" +msgstr "Kada se obrađuje, poslati će email" #. module: account_followup #: view:account_followup.stat.by.partner:0 msgid "Partner to Remind" -msgstr "" +msgstr "Partner za podsjetiti" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "" +msgstr "Štampaj prekoračena plaćanja" #. module: account_followup #: field:account_followup.followup.line,followup_id:0 @@ -493,12 +543,12 @@ msgstr "Opomene" #: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" -msgstr "" +msgstr "Email nije poslan zato što nije pronađena email adresa partnera." #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup msgid "Account Follow-up" -msgstr "" +msgstr "Praćenje konta" #. module: account_followup #: help:res.partner,payment_responsible_id:0 @@ -506,11 +556,13 @@ msgid "" "Optionally you can assign a user to this field, which will make him " "responsible for the action." msgstr "" +"Opcionalno možete da dodjelite korisnika ovom polju, koji će postati " +"odgovoran za ovu akciju." #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_sending_results msgid "Results from the sending of the different letters and emails" -msgstr "" +msgstr "Rezultati slanja različitih pisama i email-ova" #. module: account_followup #: constraint:account_followup.followup.line:0 @@ -525,38 +577,38 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " manual action(s) assigned:" -msgstr "" +msgstr " ručna akcij(e)a dodjeljena:" #. module: account_followup #: view:res.partner:0 msgid "Search Partner" -msgstr "" +msgstr "Pretraži partnere" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_print_menu msgid "Send Letters and Emails" -msgstr "" +msgstr "Pošalji pisma i email-ove" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "" +msgstr "Pretraži praćenja" #. module: account_followup #: view:res.partner:0 msgid "Account Move line" -msgstr "" +msgstr "Stavka kretanja konta" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:237 #, python-format msgid "Send Letters and Emails: Actions Summary" -msgstr "" +msgstr "Pošalji pisma i email-ove: Izvještaj akcije" #. module: account_followup #: view:account_followup.print:0 msgid "or" -msgstr "" +msgstr "ili" #. module: account_followup #: view:res.partner:0 @@ -564,21 +616,23 @@ msgid "" "If not specified by the latest follow-up level, it will send from the " "default email template" msgstr "" +"Ako nije specifirano posljednjim nivoom, poslati će se iz zadanog prijedloga " +"email-a" #. module: account_followup #: sql_constraint:account_followup.followup.line:0 msgid "Days of the follow-up levels must be different" -msgstr "" +msgstr "Dani nivoa praćenja moraju biti različiti" #. module: account_followup #: view:res.partner:0 msgid "Click to mark the action as done." -msgstr "" +msgstr "Klikni kako bi označili da je akcija završena." #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow msgid "Follow-Ups Analysis" -msgstr "" +msgstr "Analiza praćenja" #. module: account_followup #: help:res.partner,payment_next_action_date:0 @@ -588,11 +642,15 @@ msgid "" "action. Can be practical to set manually e.g. to see if he keeps his " "promises." msgstr "" +"Ovo je kada je potrebno ručno praćenje. Datum će biti postavljen na trenutni " +"datum kada partner dobije nivo praćenja koji zahtjeva ručnu akciju. Može " +"biti praktično da se postavi ručno, npr.: da se provjeri ispunjavanje " +"obećanja partnera" #. module: account_followup #: view:res.partner:0 msgid "Print overdue payments report independent of follow-up line" -msgstr "" +msgstr "Šatampaj izvještaj prekoračenja plaćanja ne ovisno o stavci praćenja" #. module: account_followup #: help:account_followup.print,date:0 @@ -609,7 +667,7 @@ msgstr "Datum slanja opomene" #: view:res.partner:0 #: field:res.partner,payment_responsible_id:0 msgid "Follow-up Responsible" -msgstr "" +msgstr "Odgovoran za praćenje" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level2 @@ -655,7 +713,7 @@ msgstr "Dokument : Izvod konta kupca" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_menu msgid "Follow-up Levels" -msgstr "" +msgstr "Nivoi praćenja" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line4 @@ -682,7 +740,7 @@ msgstr "" #. module: account_followup #: field:res.partner,payment_amount_due:0 msgid "Amount Due" -msgstr "" +msgstr "Iznos van valute" #. module: account_followup #: field:account.move.line,followup_date:0 @@ -692,19 +750,19 @@ msgstr "Poslijednja opomena" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Download Letters" -msgstr "" +msgstr "Download pisama" #. module: account_followup #: field:account_followup.print,company_id:0 #: field:res.partner,unreconciled_aml_ids:0 msgid "unknown" -msgstr "" +msgstr "nepoznato" #. module: account_followup #: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" -msgstr "" +msgstr "Štampani izvještaj prekoračenih plaćanja" #. module: account_followup #: help:account_followup.followup.line,manual_action:0 @@ -712,6 +770,7 @@ msgid "" "When processing, it will set the manual action to be taken for that " "customer. " msgstr "" +"Kada se obraćuje, postaviti će ručnu akciju za uraditi prema tom kupcu. " #. module: account_followup #: view:res.partner:0 @@ -721,12 +780,16 @@ msgid "" " order to exclude it from the next follow-up " "actions." msgstr "" +"Ispod se nalazi istorija transakcija za ovog\n" +" Kupca. Možete da zakačite \"Ne prati\"\n" +" da bi ste ga isključili iz sljedeće akcije " +"praćenja." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 #, python-format msgid " email(s) should have been sent, but " -msgstr "" +msgstr " email je trebao biti poslan, ali " #. module: account_followup #: help:account_followup.print,test_print:0 @@ -737,17 +800,17 @@ msgstr "" #. module: account_followup #: model:ir.model,name:account_followup.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "Stavke dnevnika" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Total:" -msgstr "" +msgstr "Ukupno:" #. module: account_followup #: field:account_followup.followup.line,email_template_id:0 msgid "Email Template" -msgstr "" +msgstr "Predložak email-a" #. module: account_followup #: field:account_followup.print,summary:0 @@ -758,7 +821,7 @@ msgstr "Sažetak" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_email:0 msgid "Send an Email" -msgstr "" +msgstr "Pošalji email" #. module: account_followup #: field:account_followup.stat,credit:0 @@ -768,7 +831,7 @@ msgstr "Potraživanje" #. module: account_followup #: field:res.partner,payment_amount_overdue:0 msgid "Amount Overdue" -msgstr "" +msgstr "Iznos van valute" #. module: account_followup #: help:res.partner,latest_followup_level_id_without_lit:0 @@ -776,12 +839,14 @@ msgid "" "The maximum follow-up level without taking into account the account move " "lines with litigation" msgstr "" +"Maksimalan nivo praćenja bez uzimanja u obzir stavki kretanja konta sa " +"litigacijom" #. module: account_followup #: view:account_followup.stat:0 #: field:res.partner,latest_followup_date:0 msgid "Latest Follow-up Date" -msgstr "" +msgstr "Posljednji datum praćenja" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_default @@ -826,17 +891,17 @@ msgstr "Saldo" #. module: account_followup #: help:res.partner,payment_note:0 msgid "Payment Note" -msgstr "" +msgstr "Zabilješka plaćanja" #. module: account_followup #: view:res.partner:0 msgid "My Follow-ups" -msgstr "" +msgstr "Moja praćenja" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(company_name)s" -msgstr "" +msgstr "%(company_name)s" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line1 @@ -864,18 +929,18 @@ msgstr "Poslijenje knjiženje" #. module: account_followup #: field:account_followup.stat,period_id:0 msgid "Period" -msgstr "" +msgstr "Period" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:228 #, python-format msgid "%s partners have no credits and as such the action is cleared" -msgstr "" +msgstr "%s partner nema potraživanja i kao takav akcija je uklonjena" #. module: account_followup #: model:ir.actions.report.xml,name:account_followup.account_followup_followup_report msgid "Follow-up Report" -msgstr "" +msgstr "Izvještaj praćenja" #. module: account_followup #: view:res.partner:0 @@ -883,6 +948,8 @@ msgid "" ", the latest payment follow-up\n" " was:" msgstr "" +", posljendnj praćenja plaćanja\n" +" je:" #. module: account_followup #: view:account_followup.print:0 @@ -892,23 +959,23 @@ msgstr "Poništi" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Close" -msgstr "" +msgstr "Zatvori" #. module: account_followup #: view:account_followup.stat:0 msgid "Litigation" -msgstr "" +msgstr "Spor" #. module: account_followup #: field:account_followup.stat.by.partner,max_followup_id:0 msgid "Max Follow Up Level" -msgstr "" +msgstr "Max nivo praćenja" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 #, python-format msgid " had unknown email address(es)" -msgstr "" +msgstr " imao nepoznate email adrese(u)" #. module: account_followup #: view:res.partner:0 @@ -919,12 +986,12 @@ msgstr "" #: model:ir.ui.menu,name:account_followup.menu_finance_followup #: view:res.partner:0 msgid "Payment Follow-up" -msgstr "" +msgstr "Praćenje plaćanja" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Current Date" -msgstr "" +msgstr ": Trenutni datum" #. module: account_followup #: view:account_followup.print:0 @@ -933,16 +1000,19 @@ msgid "" " set the manual actions per customer, according to " "the follow-up levels defined." msgstr "" +"Ova akcija će poslati emailove praćenja, štampati pisma i\n" +" postaviti ručna praćenja po kupcima, u odnosu na " +"postavljeni nivo praćenja." #. module: account_followup #: field:account_followup.followup.line,name:0 msgid "Follow-Up Action" -msgstr "" +msgstr "Akcija praćenja" #. module: account_followup #: view:account_followup.stat:0 msgid "Including journal entries marked as a litigation" -msgstr "" +msgstr "Uključujući stavke dnevnika označene kao sporne" #. module: account_followup #: report:account_followup.followup.print:0 @@ -955,7 +1025,7 @@ msgstr "Opis" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Summary of actions" -msgstr "" +msgstr "Izvještaj akcija" #. module: account_followup #: report:account_followup.followup.print:0 @@ -965,17 +1035,17 @@ msgstr "Referenca" #. module: account_followup #: view:account_followup.followup.line:0 msgid "After" -msgstr "" +msgstr "Nakon" #. module: account_followup #: view:account_followup.stat:0 msgid "This Fiscal year" -msgstr "" +msgstr "Ova poslovna godina" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 msgid "Latest Follow-up Level without litigation" -msgstr "" +msgstr "Posljednji nivo praćenja bez spora" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_manual_reconcile_receivable @@ -994,7 +1064,7 @@ msgstr "Stavke partnera" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up lines" -msgstr "" +msgstr "Stavke praćenja" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line3 @@ -1022,6 +1092,8 @@ msgid "" "Do not change message text, if you want to send email in partner language, " "or configure from company" msgstr "" +"Ne mijenjajte tekstualne poruke, ako želite poslati e-mail u partnerskom " +"jeziku, ili konfigurisati iz kompanije" #. module: account_followup #: view:account_followup.followup.line:0 @@ -1034,12 +1106,17 @@ msgid "" "installed\n" " using to top right icon." msgstr "" +"Napišite ovdje uvod pisma,\n" +" u odnosu na nivo praćenja. Možete koristiti\n" +" sljedeće ključne riječi u tekstu. Ne zaboravite\n" +" da prevedete na sve jezike koje ste instalirali\n" +" koristeći ikontu desno u vrhu." #. module: account_followup #: view:account_followup.stat:0 #: model:ir.actions.act_window,name:account_followup.action_followup_stat msgid "Follow-ups Sent" -msgstr "" +msgstr "Poslana praćenja" #. module: account_followup #: field:account_followup.followup,name:0 @@ -1049,7 +1126,7 @@ msgstr "Naziv" #. module: account_followup #: field:res.partner,latest_followup_level_id:0 msgid "Latest Follow-up Level" -msgstr "" +msgstr "Posljednji nivo praćenja" #. module: account_followup #: field:account_followup.stat,date_move:0 @@ -1060,23 +1137,23 @@ msgstr "Prvo knjiženje" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat_by_partner msgid "Follow-up Statistics by Partner" -msgstr "" +msgstr "Statistika praćenja po partneru" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " letter(s) in report" -msgstr "" +msgstr " pisma u izvještaju" #. module: account_followup #: view:res.partner:0 msgid "Partners with Overdue Credits" -msgstr "" +msgstr "Partneri sa prekoračenim potraživanjima" #. module: account_followup #: view:res.partner:0 msgid "Customer Followup" -msgstr "" +msgstr "Praćenja kupaca" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_followup_definition_form @@ -1092,22 +1169,33 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite da definišete nivoe praćenja i njihove povezane " +"akcije.\n" +"

\n" +" Za svaki korak, specifirajte akciju koja će se dogoditi i " +"odgodu u danima.\n" +" Moguće je koristiti predloge štampanja i email-a da " +"pošaljete specifične\n" +" poruke kupcima.\n" +"

\n" +" " #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid "Follow-up letter of " -msgstr "" +msgstr "Pratite pisma " #. module: account_followup #: view:res.partner:0 msgid "The" -msgstr "" +msgstr "!" #. module: account_followup #: view:account_followup.print:0 msgid "Send follow-ups" -msgstr "" +msgstr "Pošalji praćenja" #. module: account_followup #: view:account.move.line:0 @@ -1122,7 +1210,7 @@ msgstr "Sekvenca" #. module: account_followup #: view:res.partner:0 msgid "Follow-ups To Do" -msgstr "" +msgstr "Praćenja za uraditi" #. module: account_followup #: report:account_followup.followup.print:0 @@ -1141,36 +1229,38 @@ msgid "" "the reminder. Could be negative if you want to send a polite alert " "beforehand." msgstr "" +"Broj dana poslje datuma valute fakture za čekanje prije slanja podsjetnika. " +"Može biti negativno ako želite poslati pristojna upozorenja prije vremena." #. module: account_followup #: help:res.partner,latest_followup_date:0 msgid "Latest date that the follow-up level of the partner was changed" -msgstr "" +msgstr "Posljednji datum kada je nivo praćenja partnera promjenjen" #. module: account_followup #: field:account_followup.print,test_print:0 msgid "Test Print" -msgstr "" +msgstr "Testiraj ispis" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User Name" -msgstr "" +msgstr ": Korisničko ime" #. module: account_followup #: view:res.partner:0 msgid "Accounting" -msgstr "" +msgstr "Računovodstvo" #. module: account_followup #: field:account_followup.stat,blocked:0 msgid "Blocked" -msgstr "" +msgstr "Blokiran" #. module: account_followup #: field:res.partner,payment_note:0 msgid "Customer Payment Promise" -msgstr "" +msgstr "Obećanje plaćanja kupca" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Neodgovarajući XML za arhitekturu prikaza!" diff --git a/addons/account_followup/i18n/ca.po b/addons/account_followup/i18n/ca.po index 3048aab65a5..99fb0a712a4 100644 --- a/addons/account_followup/i18n/ca.po +++ b/addons/account_followup/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/cs.po b/addons/account_followup/i18n/cs.po index 38b027ed331..400debfa911 100644 --- a/addons/account_followup/i18n/cs.po +++ b/addons/account_followup/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/da.po b/addons/account_followup/i18n/da.po index e5c4ee0cfcb..12f11a121db 100644 --- a/addons/account_followup/i18n/da.po +++ b/addons/account_followup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/de.po b/addons/account_followup/i18n/de.po index 1602f3c2716..ed5f2db0387 100644 --- a/addons/account_followup/i18n/de.po +++ b/addons/account_followup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -90,7 +90,7 @@ msgstr "Rechnungsdatum" #. module: account_followup #: field:account_followup.print,email_subject:0 msgid "Email Subject" -msgstr "EMail-Betreff" +msgstr "E-Mail-Betreff" #. module: account_followup #: view:account_followup.followup.line:0 @@ -115,7 +115,7 @@ msgstr "Text der E-Mail" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print msgid "Send Follow-Ups" -msgstr "Sende Mahnungen" +msgstr "Mahnungen senden" #. module: account_followup #: report:account_followup.followup.print:0 @@ -130,7 +130,7 @@ msgid "" "This is the next action to be taken. It will automatically be set when the " "partner gets a follow-up level that requires a manual action. " msgstr "" -"Dies ist die nächste Schritt. Sie wird automatisch ausgeführt, wenn der " +"Dies ist der nächste Schritt. Er wird automatisch ausgeführt, wenn der " "Partner eine Mahnstufe erreicht, die einen manuellen Schritt erfordert. " #. module: account_followup @@ -162,15 +162,14 @@ msgid "" "Best Regards,\n" msgstr "" "\n" -"Sehr geehrte Firma %(partner_name)s,\n" +"Sehr geehrte(r) %(partner_name)s,\n" "\n" -"Leider mussten wir feststellen, das Sie trotz unserer Zahlungserinnerung bis " -"heute die Zahlung des ausstehenden Betrages nicht veranlasst haben.\n" +"leider mussten wir feststellen, dass Sie trotz unserer Zahlungserinnerung " +"bis heute die Zahlung des ausstehenden Betrages nicht veranlasst haben.\n" "\n" "Wenn Sie die Einstellung der Lieferung von Waren, bzw. unserer " -"Dienstleistungen vermeiden wollen, ist es unumgänglich, das die Zahlung " -"innerhalb der nächsten 7 Tage\n" -"unserem Konto gutgeschrieben wird.\n" +"Dienstleistungen vermeiden wollen, ist es unumgänglich, dass die Zahlung " +"innerhalb der nächsten 7 Tage unserem Konto gutgeschrieben wird.\n" "\n" "Wenn Sie Liquiditätsprobleme haben, kontaktieren Sie bitte unsere " "Buchhaltung, um eine für beide Seiten verbindliche Lösung zu finden.\n" @@ -256,7 +255,7 @@ msgstr "Saldo > 0" #. module: account_followup #: view:account.move.line:0 msgid "Total debit" -msgstr "Gesamt Soll" +msgstr "Gesamt-Soll" #. module: account_followup #: field:res.partner,payment_next_action:0 @@ -266,7 +265,7 @@ msgstr "Nächste Aktion" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Partner Name" -msgstr ": Partner Name" +msgstr ": Partnername" #. module: account_followup #: field:account_followup.followup.line,manual_action_responsible_id:0 @@ -361,7 +360,7 @@ msgstr "Ohne Rechtsstreit" #. module: account_followup #: view:account_followup.print:0 msgid "Send emails and generate letters" -msgstr "Sende Emails und erstelle Anschreiben" +msgstr "E-Mails senden und Anschreiben erstellen" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup @@ -420,7 +419,7 @@ msgstr "" " \n" "

Sehr geehrte(r) ${object.name},

\n" "

\n" -" Wir sind enttäuscht, dass trotz Zahlungserinnerung, Ihr Konto nach wie " +" wir sind enttäuscht, dass trotz Zahlungserinnerung, Ihr Konto nach wie " "vor überfällig ist.\n" "Es ist wichtig, dass eine sofortige Zahlung erfolgt, ansonsten müssen wir in " "Betracht ziehen, Ihr Konto\n" @@ -464,7 +463,7 @@ msgstr "Statistik Mahnungen" #. module: account_followup #: view:res.partner:0 msgid "Send Overdue Email" -msgstr "Sende fällige Rechnungen" +msgstr "Fällige Rechnungen senden" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup_line @@ -487,13 +486,13 @@ msgstr " wird gesendet" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User's Company Name" -msgstr ": Benutzer Unternehmen" +msgstr ": Unternehmen des Benutzers" #. module: account_followup #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_letter:0 msgid "Send a Letter" -msgstr "Sende Anschreiben" +msgstr "Anschreiben senden" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form @@ -524,7 +523,7 @@ msgstr "Ausgleich Rechnungen & Zahlungen" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s msgid "Do Manual Follow-Ups" -msgstr "Erstelle händische Mahnung" +msgstr "Händische Mahnung erstellen" #. module: account_followup #: report:account_followup.followup.print:0 @@ -534,7 +533,7 @@ msgstr "Limit" #. module: account_followup #: field:account_followup.print,email_conf:0 msgid "Send Email Confirmation" -msgstr "Sende Email Bestätigung" +msgstr "E-Mail-Bestätigung senden" #. module: account_followup #: view:account_followup.stat:0 @@ -549,23 +548,23 @@ msgstr "Letzte Mahnung" #. module: account_followup #: field:account_followup.print,partner_lang:0 msgid "Send Email in Partner Language" -msgstr "Sende EMail in Sprache d. Partners" +msgstr "E-Mail in Sprache d. Partners senden" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:169 #, python-format msgid " email(s) sent" -msgstr " gesendete Email(s)" +msgstr " gesendete E-Mail(s)" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print msgid "Print Follow-up & Send Mail to Customers" -msgstr "Drucke Erinnerungen & Sende Emails" +msgstr "Erinnerungen drucken & E-Mails senden" #. module: account_followup #: field:account_followup.followup.line,description:0 msgid "Printed Message" -msgstr "gedruckte Mitteilung" +msgstr "Gedruckte Mitteilung" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:155 @@ -576,7 +575,7 @@ msgstr "Jeder" #. module: account_followup #: help:account_followup.followup.line,send_email:0 msgid "When processing, it will send an email" -msgstr "Bei Durchführung wird Email gesendet" +msgstr "Bei Durchführung wird E-Mail gesendet" #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -586,7 +585,7 @@ msgstr "Zu erinnernde Partner" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "Drucke fällige Zahlungen" +msgstr "Fällige Zahlungen drucken" #. module: account_followup #: field:account_followup.followup.line,followup_id:0 @@ -598,7 +597,7 @@ msgstr "Mahnungen" #: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" -msgstr "Email wurde aufgrund fehlender Mailadresse nicht gesendet" +msgstr "E-Mail wurde aufgrund fehlender Mailadresse nicht gesendet" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup @@ -617,7 +616,7 @@ msgstr "" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_sending_results msgid "Results from the sending of the different letters and emails" -msgstr "Ergebnis der Versendung von Anschreiben und EMails" +msgstr "Ergebnis der Versendung von Anschreiben und E-Mails" #. module: account_followup #: constraint:account_followup.followup.line:0 @@ -632,7 +631,7 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " manual action(s) assigned:" -msgstr " manuell zugewiesene Aktion:" +msgstr " manuell zugewiesene Aktion(en):" #. module: account_followup #: view:res.partner:0 @@ -642,12 +641,12 @@ msgstr "Suche Partner" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_print_menu msgid "Send Letters and Emails" -msgstr "Sende Mahnschreiben und Emails" +msgstr "Mahnschreiben und E-Mails senden" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "Suche Mahnungen" +msgstr "Mahnungen suchen" #. module: account_followup #: view:res.partner:0 @@ -658,7 +657,7 @@ msgstr "Buchungszeile" #: code:addons/account_followup/wizard/account_followup_print.py:237 #, python-format msgid "Send Letters and Emails: Actions Summary" -msgstr "Versende Mahnschreiben und Emails: Zusammenfassung" +msgstr "Mahnschreiben und E-Mails senden: Zusammenfassung" #. module: account_followup #: view:account_followup.print:0 @@ -673,7 +672,7 @@ msgid "" msgstr "" "Solange es keine besondere Spezifikation durch die höchste Mahnstufe gibt, " "wird für den E-Mail Versand der\r\n" -"Zahlungserinnerungen die Standard Vorlage verwendet." +"Zahlungserinnerungen die Standardvorlage verwendet." #. module: account_followup #: sql_constraint:account_followup.followup.line:0 @@ -683,7 +682,7 @@ msgstr "Tage der Mahnstufen müssen verschieden sein" #. module: account_followup #: view:res.partner:0 msgid "Click to mark the action as done." -msgstr "Klicken Sie um Aktion abzuschließen" +msgstr "Klicken Sie, um Aktion abzuschließen" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow @@ -707,7 +706,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "Print overdue payments report independent of follow-up line" -msgstr "Drucke fällige Zahlungen ohne Mahnstufe" +msgstr "Fällige Zahlungen ohne Mahnstufe drucken" #. module: account_followup #: help:account_followup.print,date:0 @@ -770,7 +769,7 @@ msgstr "" " \n" "

Sehr geehrte(r) ${object.name},

\n" "

\n" -" Trotz mehrerer Mahnungen, ist Ihr Konto immer noch nicht ausgeglichen.\n" +" trotz mehrerer Mahnungen, ist Ihr Konto immer noch nicht ausgeglichen.\n" "Sofern keine vollständigen Bezahlung in den nächsten 8 Tage erfolgt, werden " "weitere rechtliche Schritte \n" "ohne weitere Ankündigung eingeleitet. Wir vertrauen darauf, dass diese " @@ -829,7 +828,7 @@ msgstr "" "\n" "

Sehr geehrte(r) %(partner_name),

\n" "

\n" -"Trotz mehrerer Mahnungen, ist Ihr Konto immer noch nicht beglichen.\n" +"trotz mehrerer Mahnungen, ist Ihr Konto immer noch nicht beglichen.\n" "\n" "Sofern keine vollständige Bezahlung in den nächsten 8 Tagen erfolgt, werden " "wir weitere rechtliche Schritte einleiten.\n" @@ -896,7 +895,7 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:171 #, python-format msgid " email(s) should have been sent, but " -msgstr " EMail(s) sollten ausgetauscht werden, aber " +msgstr " E-Mail(s) sollten ausgetauscht werden, aber " #. module: account_followup #: help:account_followup.print,test_print:0 @@ -918,7 +917,7 @@ msgstr "Summe:" #. module: account_followup #: field:account_followup.followup.line,email_template_id:0 msgid "Email Template" -msgstr "EMail Vorlage" +msgstr "E-Mail Vorlage" #. module: account_followup #: field:account_followup.print,summary:0 @@ -929,7 +928,7 @@ msgstr "Zusammenfassung" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_email:0 msgid "Send an Email" -msgstr "Sende eine Email" +msgstr "E-Mail senden" #. module: account_followup #: field:account_followup.stat,credit:0 @@ -994,10 +993,10 @@ msgstr "" " \n" "

Sehr geehrte(r) ${object.name},

\n" "

\n" -" Insofern es keinen Fehler unsererseits gibt , gibt es noch nicht bezahlte " +" soweit es keinen Fehler unsererseits gibt , gibt es noch nicht bezahlte " "Rechnungen. Bitte ergreifen Sie\n" "geeignete Maßnahmen, um eine Zahlung in den nächsten 8 Tagen vorzunehmen.\n" -"Wenn sich Ihre Zahlung mit dieser Mail überschneidet, ignorieren Sie bitte " +"Wenn sich Ihre Zahlung mit dieser E-Mail überschneidet, ignorieren Sie bitte " "diese Nachricht. Zögern Sie \n" "bitte nicht, wenn es Rückfragen gibt und kontaktieren Sie unsere " "Buchhaltung.\n" @@ -1058,7 +1057,7 @@ msgstr "" "\n" "Sehr geehrte(r) %(partner_name),\n" "\n" -"Insofern es keinen Fehler unsererseits gibt , gibt es noch nicht bezahlte " +"soweit es keinen Fehler unsererseits gibt , gibt es noch nicht bezahlte " "Rechnungen. Bitte ergreifen Sie\n" "geeignete Maßnahmen, um eine Zahlung in den nächsten 8 Tagen vorzunehmen.\n" "Wenn sich Ihre Zahlung mit dieser Mail überschneidet, ignorieren Sie bitte " @@ -1123,7 +1122,7 @@ msgstr "Höchste Mahnstufe" #: code:addons/account_followup/wizard/account_followup_print.py:171 #, python-format msgid " had unknown email address(es)" -msgstr " es ergab()en sich unbekannte Emailanschrift(en)" +msgstr " enthielt unbekannte E-Mailanschrift(en)" #. module: account_followup #: view:res.partner:0 @@ -1261,7 +1260,7 @@ msgid "" "Do not change message text, if you want to send email in partner language, " "or configure from company" msgstr "" -"Ändern Sie den Mitteilungstext nicht, wenn EMails in einer Fremdsprache an " +"Ändern Sie den Mitteilungstext nicht, wenn E-Mails in einer Fremdsprache an " "Partner gesendet werden sollen oder Sie diesen Text aus den " "Unternehmenseinstellungen heraus konfigurieren." @@ -1283,7 +1282,7 @@ msgstr "" "Vergessen Sie\n" " allerdings dann nicht alle Sprachen, die Sie " "verwenden, mit Hilfe\n" -" des oberen rechten Knopfs zu installierenn." +" des oberen rechten Button zu installieren." #. module: account_followup #: view:account_followup.stat:0 @@ -1326,7 +1325,7 @@ msgstr "Kunden mit überfälligen Gutschriften" #. module: account_followup #: view:res.partner:0 msgid "Customer Followup" -msgstr "Kunden Historie" +msgstr "Kundenhistorie" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_followup_definition_form @@ -1343,14 +1342,14 @@ msgid "" " " msgstr "" "p class = \"oe_view_nocontent_create\">\n" -"                 Klicken Sie, um zu definieren Follow-up Ebenen und die " -"damit verbundenen Aktionen.\n" +"                 Klicken Sie, um Mahnungen und die damit verbundenen " +"Aktionen zu definieren.\n" "               \n" -"                 Für jeden Schritt fest, welche Aktionen ergriffen werden " -"und verzögern in Tagen. es ist\n" -"                 möglich, Print-und E-Mail-Vorlagen verwenden, um bestimmte " -"Nachrichten zu senden\n" -"                 der Kunde.\n" +"                 Legen Sie für jeden Schritt fest, welche Aktionen ergriffen " +"werden und in welchem Zeitabstand (in Tagen). Es ist\n" +"                 möglich, Print-und E-Mail-Vorlagen zu verwenden, um dem " +"Kunden bestimmte Nachrichten \n" +"                 zu senden.\n" "               \n" " " @@ -1368,7 +1367,7 @@ msgstr "Der" #. module: account_followup #: view:account_followup.print:0 msgid "Send follow-ups" -msgstr "Sende Mahnungen" +msgstr "Mahnungen senden" #. module: account_followup #: view:account.move.line:0 @@ -1393,7 +1392,7 @@ msgstr "Kunden Referenz:" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Maturity Date" -msgstr "Fällingkeitsdatum" +msgstr "Fälligkeitsdatum" #. module: account_followup #: help:account_followup.followup.line,delay:0 @@ -1409,7 +1408,7 @@ msgstr "" #. module: account_followup #: help:res.partner,latest_followup_date:0 msgid "Latest date that the follow-up level of the partner was changed" -msgstr "Letztes Änderung der Mahnstufe" +msgstr "Letzte Änderung der Mahnstufe" #. module: account_followup #: field:account_followup.print,test_print:0 @@ -1419,7 +1418,7 @@ msgstr "Testdruck" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User Name" -msgstr ": Benutzer Name" +msgstr ": Benutzername" #. module: account_followup #: view:res.partner:0 diff --git a/addons/account_followup/i18n/el.po b/addons/account_followup/i18n/el.po index 10ff1b2e5b1..de70219aecf 100644 --- a/addons/account_followup/i18n/el.po +++ b/addons/account_followup/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/en_GB.po b/addons/account_followup/i18n/en_GB.po index 9be7f0fa224..bdcab856219 100644 --- a/addons/account_followup/i18n/en_GB.po +++ b/addons/account_followup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es.po b/addons/account_followup/i18n/es.po index a3d57aa52b0..1c9c948ced8 100644 --- a/addons/account_followup/i18n/es.po +++ b/addons/account_followup/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po index 98867129aa7..3bca51165d3 100644 --- a/addons/account_followup/i18n/es_AR.po +++ b/addons/account_followup/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_CR.po b/addons/account_followup/i18n/es_CR.po index 92a0360617a..7336bae6e1c 100644 --- a/addons/account_followup/i18n/es_CR.po +++ b/addons/account_followup/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: account_followup diff --git a/addons/account_followup/i18n/es_EC.po b/addons/account_followup/i18n/es_EC.po index a2752fd69de..aee2d80b47d 100644 --- a/addons/account_followup/i18n/es_EC.po +++ b/addons/account_followup/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_PY.po b/addons/account_followup/i18n/es_PY.po index 616ee3a9b97..968411b2adb 100644 --- a/addons/account_followup/i18n/es_PY.po +++ b/addons/account_followup/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/et.po b/addons/account_followup/i18n/et.po index 0c4643c48f6..a5718cdbb67 100644 --- a/addons/account_followup/i18n/et.po +++ b/addons/account_followup/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fa.po b/addons/account_followup/i18n/fa.po index 8879c1bd4d5..e85d55930ae 100644 --- a/addons/account_followup/i18n/fa.po +++ b/addons/account_followup/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fi.po b/addons/account_followup/i18n/fi.po index a0fe7293b56..5397bf50cdd 100644 --- a/addons/account_followup/i18n/fi.po +++ b/addons/account_followup/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fr.po b/addons/account_followup/i18n/fr.po index 4ed9c5ceb28..127ba73f712 100644 --- a/addons/account_followup/i18n/fr.po +++ b/addons/account_followup/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/gl.po b/addons/account_followup/i18n/gl.po index b5d5c4d7152..d359946a921 100644 --- a/addons/account_followup/i18n/gl.po +++ b/addons/account_followup/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/hr.po b/addons/account_followup/i18n/hr.po index 68dfcd525d0..c99d6b4e25a 100644 --- a/addons/account_followup/i18n/hr.po +++ b/addons/account_followup/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/hu.po b/addons/account_followup/i18n/hu.po index a757bd43bf8..865580de62a 100644 --- a/addons/account_followup/i18n/hu.po +++ b/addons/account_followup/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/id.po b/addons/account_followup/i18n/id.po index 79012109e9a..1655b7f3d62 100644 --- a/addons/account_followup/i18n/id.po +++ b/addons/account_followup/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/it.po b/addons/account_followup/i18n/it.po index 128adf5246a..59d232e2353 100644 --- a/addons/account_followup/i18n/it.po +++ b/addons/account_followup/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ja.po b/addons/account_followup/i18n/ja.po index 3a6cd32d7ad..69d6f533984 100644 --- a/addons/account_followup/i18n/ja.po +++ b/addons/account_followup/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ko.po b/addons/account_followup/i18n/ko.po index 044fa345a44..f23c3aacfbc 100644 --- a/addons/account_followup/i18n/ko.po +++ b/addons/account_followup/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/lt.po b/addons/account_followup/i18n/lt.po index 1f1a608b0f1..cd94e482a34 100644 --- a/addons/account_followup/i18n/lt.po +++ b/addons/account_followup/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/mk.po b/addons/account_followup/i18n/mk.po index 56b2e7f7bd6..21c6ddf999a 100644 --- a/addons/account_followup/i18n/mk.po +++ b/addons/account_followup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/mn.po b/addons/account_followup/i18n/mn.po index 73456c483a8..0b37acb9e11 100644 --- a/addons/account_followup/i18n/mn.po +++ b/addons/account_followup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nb.po b/addons/account_followup/i18n/nb.po index 0f11b7effac..1852a6ff28f 100644 --- a/addons/account_followup/i18n/nb.po +++ b/addons/account_followup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nl.po b/addons/account_followup/i18n/nl.po index f93dd0b6ec0..adcbd6e7e7a 100644 --- a/addons/account_followup/i18n/nl.po +++ b/addons/account_followup/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -349,7 +349,7 @@ msgstr "Bij verwerken wordt een brieg gemaakt" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 msgid "Worst Due Date" -msgstr "Slechtste vervaldatum" +msgstr "Oudste vervaldatum" #. module: account_followup #: view:account_followup.stat:0 diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po index 72dfc3455a1..5955f4e4192 100644 --- a/addons/account_followup/i18n/nl_BE.po +++ b/addons/account_followup/i18n/nl_BE.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-04-15 23:02+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \n" "Language-Team: Els Van Vossel\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: nl\n" #. module: account_followup diff --git a/addons/account_followup/i18n/oc.po b/addons/account_followup/i18n/oc.po index c0ceab20db7..48a5c5140d1 100644 --- a/addons/account_followup/i18n/oc.po +++ b/addons/account_followup/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pl.po b/addons/account_followup/i18n/pl.po index 837848e6b75..15dd0766cb9 100644 --- a/addons/account_followup/i18n/pl.po +++ b/addons/account_followup/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -22,12 +22,12 @@ msgstr "" #: model:email.template,subject:account_followup.email_template_account_followup_level1 #: model:email.template,subject:account_followup.email_template_account_followup_level2 msgid "${user.company_id.name} Payment Reminder" -msgstr "" +msgstr "${user.company_id.name} Przypomnienie o płatności" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 msgid "The maximum follow-up level" -msgstr "" +msgstr "Maksymalny poziom monitu o płatność" #. module: account_followup #: view:account_followup.stat:0 @@ -38,7 +38,7 @@ msgstr "Grupuj wg..." #. module: account_followup #: field:account_followup.print,followup_id:0 msgid "Follow-Up" -msgstr "Windykacja" +msgstr "Monitowanie płatności" #. module: account_followup #: view:account_followup.followup.line:0 @@ -54,7 +54,7 @@ msgstr "Data następnej akcji" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,manual_action:0 msgid "Manual Action" -msgstr "" +msgstr "Manualne działanie" #. module: account_followup #: field:account_followup.sending.results,needprinting:0 @@ -99,12 +99,12 @@ msgstr "" #. module: account_followup #: view:account_followup.followup.line:0 msgid "days overdue, do the following actions:" -msgstr "" +msgstr "dni po terminie, wykonaj następującą akcję:" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "" +msgstr "Kroki monitowania płatności" #. module: account_followup #: field:account_followup.print,email_body:0 @@ -114,7 +114,7 @@ msgstr "" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print msgid "Send Follow-Ups" -msgstr "" +msgstr "Wyślij monit o płatność" #. module: account_followup #: report:account_followup.followup.print:0 @@ -129,11 +129,14 @@ msgid "" "This is the next action to be taken. It will automatically be set when the " "partner gets a follow-up level that requires a manual action. " msgstr "" +"To jest następne działanie jakie zostanie podjęte. Zostanie automatycznie " +"podjęte jeśli kontrahent otrzyma monit o płatność, który wymaga manualnych " +"działań. " #. module: account_followup #: view:res.partner:0 msgid "No Responsible" -msgstr "" +msgstr "Bez odpowiedzi" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line2 @@ -199,7 +202,7 @@ msgstr "" #. module: account_followup #: view:account_followup.stat.by.partner:0 msgid "Balance > 0" -msgstr "" +msgstr "Bilans > 0" #. module: account_followup #: view:account.move.line:0 @@ -214,19 +217,19 @@ msgstr "Następna akcja" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Partner Name" -msgstr "" +msgstr ": Kontrahent" #. module: account_followup #: field:account_followup.followup.line,manual_action_responsible_id:0 msgid "Assign a Responsible" -msgstr "" +msgstr "Przypisz odpowiedzialną/ego" #. module: account_followup #: view:account_followup.followup:0 #: field:account_followup.followup,followup_line:0 #: view:res.partner:0 msgid "Follow-up" -msgstr "Windykacja" +msgstr "Monitowanie płatności" #. module: account_followup #: report:account_followup.followup.print:0 @@ -239,7 +242,7 @@ msgstr "VAT:" #: field:account_followup.stat.by.partner,partner_id:0 #: model:ir.model,name:account_followup.model_res_partner msgid "Partner" -msgstr "Partner" +msgstr "Kontrahent" #. module: account_followup #: view:account_followup.followup:0 @@ -264,43 +267,43 @@ msgstr "Data :" #. module: account_followup #: field:account_followup.print,partner_ids:0 msgid "Partners" -msgstr "Partnerzy" +msgstr "Kontrahenci" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "" +msgstr "Tylko jeden monit na firmę jest dozwolony" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 #, python-format msgid "Invoices Reminder" -msgstr "" +msgstr "Przypomnienie faktur" #. module: account_followup #: help:account_followup.followup.line,send_letter:0 msgid "When processing, it will print a letter" -msgstr "" +msgstr "Podczas przetwarzania, wydrukuje list" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 msgid "Worst Due Date" -msgstr "" +msgstr "Najgorszy termin płatności" #. module: account_followup #: view:account_followup.stat:0 msgid "Not Litigation" -msgstr "" +msgstr "Bez postępowania sądowego" #. module: account_followup #: view:account_followup.print:0 msgid "Send emails and generate letters" -msgstr "" +msgstr "Wyślij email i generuj listy" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup msgid "Manual Follow-Ups" -msgstr "" +msgstr "Manualne monitowanie płatności" #. module: account_followup #: view:account_followup.followup.line:0 @@ -356,44 +359,46 @@ msgstr "Winien" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat msgid "Follow-up Statistics" -msgstr "" +msgstr "Statystyka monitowania płatności" #. module: account_followup #: view:res.partner:0 msgid "Send Overdue Email" -msgstr "" +msgstr "Wyślij list zaległych płatności" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup_line msgid "Follow-up Criteria" -msgstr "" +msgstr "Kryteria monitowania płatności" #. module: account_followup #: help:account_followup.followup.line,sequence:0 msgid "Gives the sequence order when displaying a list of follow-up lines." msgstr "" +"Daje polecenie porządkowania kolejności podczas wyświetlania listy pozycji " +"monitów o płatność." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid " will be sent" -msgstr "" +msgstr " zostanie wysłany" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User's Company Name" -msgstr "" +msgstr ": Nazwa firmy użytkownika" #. module: account_followup #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_letter:0 msgid "Send a Letter" -msgstr "" +msgstr "Wyślij list" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form msgid "Payment Follow-ups" -msgstr "" +msgstr "Monity o płatność" #. module: account_followup #: field:account_followup.followup.line,delay:0 @@ -404,12 +409,12 @@ msgstr "" #: field:account.move.line,followup_line_id:0 #: view:account_followup.stat:0 msgid "Follow-up Level" -msgstr "Poziom wezwania" +msgstr "Poziom monitu o płatność" #. module: account_followup #: field:account_followup.stat,date_followup:0 msgid "Latest followup" -msgstr "Ostatnia windykacja" +msgstr "Ostatni monit o płatność" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup @@ -419,7 +424,7 @@ msgstr "" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s msgid "Do Manual Follow-Ups" -msgstr "" +msgstr "Wykonaj manualnie monit o płatność" #. module: account_followup #: report:account_followup.followup.print:0 @@ -429,33 +434,33 @@ msgstr "" #. module: account_followup #: field:account_followup.print,email_conf:0 msgid "Send Email Confirmation" -msgstr "" +msgstr "Wyślij potwierdzenie email" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up Entries with period in current year" -msgstr "" +msgstr "Wpisy monitu o płatność z bieżącego roku" #. module: account_followup #: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest follow-up" -msgstr "" +msgstr "Najnowsze monity o platność" #. module: account_followup #: field:account_followup.print,partner_lang:0 msgid "Send Email in Partner Language" -msgstr "" +msgstr "Wyślij email w języku kontrahenta" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:169 #, python-format msgid " email(s) sent" -msgstr "" +msgstr " email wysłany" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print msgid "Print Follow-up & Send Mail to Customers" -msgstr "" +msgstr "Wydrukuj monity płatności i wyślij maila do klienta" #. module: account_followup #: field:account_followup.followup.line,description:0 @@ -466,28 +471,28 @@ msgstr "Wydrukowana wiadomość" #: code:addons/account_followup/wizard/account_followup_print.py:155 #, python-format msgid "Anybody" -msgstr "" +msgstr "Ktokolwiek" #. module: account_followup #: help:account_followup.followup.line,send_email:0 msgid "When processing, it will send an email" -msgstr "" +msgstr "Podczas przetwarzania, wyśle email" #. module: account_followup #: view:account_followup.stat.by.partner:0 msgid "Partner to Remind" -msgstr "" +msgstr "Przypomnienia dla kontrahenta/ów" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "" +msgstr "Wydruk przeterminowanych płatności" #. module: account_followup #: field:account_followup.followup.line,followup_id:0 #: field:account_followup.stat,followup_id:0 msgid "Follow Ups" -msgstr "Windykacje" +msgstr "Monitowanie płatności" #. module: account_followup #: code:addons/account_followup/account_followup.py:218 @@ -498,7 +503,7 @@ msgstr "" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup msgid "Account Follow-up" -msgstr "" +msgstr "Konto monitowania płatności" #. module: account_followup #: help:res.partner,payment_responsible_id:0 @@ -528,17 +533,17 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "Search Partner" -msgstr "" +msgstr "Szukaj kontrahenta" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_print_menu msgid "Send Letters and Emails" -msgstr "" +msgstr "Wyślij list i email" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "" +msgstr "Przeszukaj monity o płatność" #. module: account_followup #: view:res.partner:0 @@ -554,7 +559,7 @@ msgstr "" #. module: account_followup #: view:account_followup.print:0 msgid "or" -msgstr "" +msgstr "lub" #. module: account_followup #: view:res.partner:0 @@ -566,17 +571,17 @@ msgstr "" #. module: account_followup #: sql_constraint:account_followup.followup.line:0 msgid "Days of the follow-up levels must be different" -msgstr "" +msgstr "Dni poziomów monitowania płatności muszą być inne" #. module: account_followup #: view:res.partner:0 msgid "Click to mark the action as done." -msgstr "" +msgstr "Kliknij aby zazaczyć działanie jako wykonane" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow msgid "Follow-Ups Analysis" -msgstr "" +msgstr "Analiza monitów o płatność" #. module: account_followup #: help:res.partner,payment_next_action_date:0 @@ -653,7 +658,7 @@ msgstr "Dokument : Zestawienie konta klienta" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_menu msgid "Follow-up Levels" -msgstr "" +msgstr "Poziomy monitowania płatności" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line4 @@ -680,29 +685,29 @@ msgstr "" #. module: account_followup #: field:res.partner,payment_amount_due:0 msgid "Amount Due" -msgstr "" +msgstr "Należność" #. module: account_followup #: field:account.move.line,followup_date:0 msgid "Latest Follow-up" -msgstr "Ostatnia windykacja" +msgstr "Najnowszy monit o płatność" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Download Letters" -msgstr "" +msgstr "Pobierz listy" #. module: account_followup #: field:account_followup.print,company_id:0 #: field:res.partner,unreconciled_aml_ids:0 msgid "unknown" -msgstr "" +msgstr "nieznany" #. module: account_followup #: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" -msgstr "" +msgstr "Raport wydrukowanych należności przeterminowanych" #. module: account_followup #: help:account_followup.followup.line,manual_action:0 @@ -735,17 +740,17 @@ msgstr "" #. module: account_followup #: model:ir.model,name:account_followup.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "Pozycje zapisów dziennika" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Total:" -msgstr "" +msgstr "Razem:" #. module: account_followup #: field:account_followup.followup.line,email_template_id:0 msgid "Email Template" -msgstr "" +msgstr "Szablon emaila" #. module: account_followup #: field:account_followup.print,summary:0 @@ -756,7 +761,7 @@ msgstr "Podsumowanie" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_email:0 msgid "Send an Email" -msgstr "" +msgstr "Wyślij email" #. module: account_followup #: field:account_followup.stat,credit:0 @@ -766,7 +771,7 @@ msgstr "Ma" #. module: account_followup #: field:res.partner,payment_amount_overdue:0 msgid "Amount Overdue" -msgstr "" +msgstr "Kwota przeterminowana" #. module: account_followup #: help:res.partner,latest_followup_level_id_without_lit:0 @@ -779,7 +784,7 @@ msgstr "" #: view:account_followup.stat:0 #: field:res.partner,latest_followup_date:0 msgid "Latest Follow-up Date" -msgstr "" +msgstr "Data najnowszego monitu" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_default @@ -824,12 +829,12 @@ msgstr "Saldo" #. module: account_followup #: help:res.partner,payment_note:0 msgid "Payment Note" -msgstr "" +msgstr "Notatka platności" #. module: account_followup #: view:res.partner:0 msgid "My Follow-ups" -msgstr "" +msgstr "Moje monity" #. module: account_followup #: view:account_followup.followup.line:0 @@ -862,7 +867,7 @@ msgstr "Ostatnia zmiana" #. module: account_followup #: field:account_followup.stat,period_id:0 msgid "Period" -msgstr "" +msgstr "Okres" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:228 @@ -873,7 +878,7 @@ msgstr "" #. module: account_followup #: model:ir.actions.report.xml,name:account_followup.account_followup_followup_report msgid "Follow-up Report" -msgstr "" +msgstr "Raport monitów płatności" #. module: account_followup #: view:res.partner:0 @@ -890,17 +895,17 @@ msgstr "Anuluj" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Close" -msgstr "" +msgstr "Zamknij" #. module: account_followup #: view:account_followup.stat:0 msgid "Litigation" -msgstr "" +msgstr "Spór sądowy" #. module: account_followup #: field:account_followup.stat.by.partner,max_followup_id:0 msgid "Max Follow Up Level" -msgstr "" +msgstr "Maksymalny poziom monitu" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 @@ -917,12 +922,12 @@ msgstr "" #: model:ir.ui.menu,name:account_followup.menu_finance_followup #: view:res.partner:0 msgid "Payment Follow-up" -msgstr "" +msgstr "Monitowanie płatności" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Current Date" -msgstr "" +msgstr ": Bieżąca data" #. module: account_followup #: view:account_followup.print:0 @@ -935,7 +940,7 @@ msgstr "" #. module: account_followup #: field:account_followup.followup.line,name:0 msgid "Follow-Up Action" -msgstr "" +msgstr "Działanie monitowania płatności" #. module: account_followup #: view:account_followup.stat:0 @@ -953,7 +958,7 @@ msgstr "Opis" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Summary of actions" -msgstr "" +msgstr "Podsumowanie działań" #. module: account_followup #: report:account_followup.followup.print:0 @@ -963,17 +968,17 @@ msgstr "Odnośnik" #. module: account_followup #: view:account_followup.followup.line:0 msgid "After" -msgstr "" +msgstr "Po" #. module: account_followup #: view:account_followup.stat:0 msgid "This Fiscal year" -msgstr "" +msgstr "Ten rok finansowy" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 msgid "Latest Follow-up Level without litigation" -msgstr "" +msgstr "Najnowszy monit o płatność bez sporu sądowego" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_manual_reconcile_receivable @@ -992,7 +997,7 @@ msgstr "Zapisy partnera" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up lines" -msgstr "" +msgstr "Pozycje monitowania płatności" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line3 @@ -1037,7 +1042,7 @@ msgstr "" #: view:account_followup.stat:0 #: model:ir.actions.act_window,name:account_followup.action_followup_stat msgid "Follow-ups Sent" -msgstr "" +msgstr "Monit wysłany" #. module: account_followup #: field:account_followup.followup,name:0 @@ -1047,7 +1052,7 @@ msgstr "Nazwa" #. module: account_followup #: field:res.partner,latest_followup_level_id:0 msgid "Latest Follow-up Level" -msgstr "" +msgstr "Najnowszy poziom monitu" #. module: account_followup #: field:account_followup.stat,date_move:0 @@ -1058,7 +1063,7 @@ msgstr "Pierwsza zmiana" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat_by_partner msgid "Follow-up Statistics by Partner" -msgstr "" +msgstr "Statystyki monitów płatności kontrahenta" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:172 @@ -1074,7 +1079,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "Customer Followup" -msgstr "" +msgstr "Monity płatności klienta" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_followup_definition_form @@ -1095,7 +1100,7 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid "Follow-up letter of " -msgstr "" +msgstr "Monit płatności " #. module: account_followup #: view:res.partner:0 @@ -1105,7 +1110,7 @@ msgstr "" #. module: account_followup #: view:account_followup.print:0 msgid "Send follow-ups" -msgstr "" +msgstr "Wyślij monit płatności" #. module: account_followup #: view:account.move.line:0 @@ -1120,7 +1125,7 @@ msgstr "Numeracja" #. module: account_followup #: view:res.partner:0 msgid "Follow-ups To Do" -msgstr "" +msgstr "Monity płatności do wykonania" #. module: account_followup #: report:account_followup.followup.print:0 @@ -1148,27 +1153,27 @@ msgstr "" #. module: account_followup #: field:account_followup.print,test_print:0 msgid "Test Print" -msgstr "" +msgstr "Wydruk testowy" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User Name" -msgstr "" +msgstr ": Nazwa użytkownika" #. module: account_followup #: view:res.partner:0 msgid "Accounting" -msgstr "" +msgstr "Księgowość" #. module: account_followup #: field:account_followup.stat,blocked:0 msgid "Blocked" -msgstr "" +msgstr "Zablokowane" #. module: account_followup #: field:res.partner,payment_note:0 msgid "Customer Payment Promise" -msgstr "" +msgstr "Obietnica płatności klienta" #~ msgid "Ok" #~ msgstr "Ok" diff --git a/addons/account_followup/i18n/pt.po b/addons/account_followup/i18n/pt.po index 79a6252a4e0..83ea3002ad6 100644 --- a/addons/account_followup/i18n/pt.po +++ b/addons/account_followup/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index b0b87080f11..c8f65d9b89c 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-22 00:49+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ro.po b/addons/account_followup/i18n/ro.po index 8136fe39961..9b5ed1818cf 100644 --- a/addons/account_followup/i18n/ro.po +++ b/addons/account_followup/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -22,7 +22,7 @@ msgstr "" #: model:email.template,subject:account_followup.email_template_account_followup_level1 #: model:email.template,subject:account_followup.email_template_account_followup_level2 msgid "${user.company_id.name} Payment Reminder" -msgstr "${utilizator.companie_id.nume} Instiintare de Plata" +msgstr "${user.company_id.name} Înștiințare de Plată" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 @@ -33,7 +33,7 @@ msgstr "Nivelul maxim de continuare" #: view:account_followup.stat:0 #: view:res.partner:0 msgid "Group By..." -msgstr "Grupeaza dupa..." +msgstr "Grupați după..." #. module: account_followup #: field:account_followup.print,followup_id:0 @@ -43,23 +43,23 @@ msgstr "Urmare" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(date)s" -msgstr "%(data)s" +msgstr "%(date)s" #. module: account_followup #: field:res.partner,payment_next_action_date:0 msgid "Next Action Date" -msgstr "Data Actiunii Urmatoare" +msgstr "Data acțiunii următoare" #. module: account_followup #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,manual_action:0 msgid "Manual Action" -msgstr "Actiune Manuala" +msgstr "Acțiune manuală" #. module: account_followup #: field:account_followup.sending.results,needprinting:0 msgid "Needs Printing" -msgstr "Necesita Tiparire" +msgstr "Necesită tipărire" #. module: account_followup #: view:res.partner:0 @@ -222,28 +222,28 @@ msgstr "" "serif; dimensiune-size: 12px; culoare: rgb(34, 34, 34); culoare-fundal: " "rgb(255, 255, 255); \">\n" "\n" -"

Stimate ${obiect.nume},

\n" +"

Stimate ${object.name},

\n" "

\n" -" Exceptand cazul in care noi am facut o greseala, se pare ca urmatoarea " -"suma este inca neplatita. Va rugam sa luati\n" -"masurile necesare pentru a efectua aceasta plata in urmatoarele 8 zile.\n" +" Exceptând cazul în care noi am făcut o greșeală, se pare ca următoarea " +"sumă este încă neplătită. Vă rugăm să luați\n" +"măsurile necesare pentru a efectua aceasta plata în următoarele 8 zile.\n" "\n" -"Daca ati efectuat plata dupa ce acest email a fost trimis, va rugam sa nu " -"luati in considerare acest mesaj. Nu ezitati sa\n" -"contact departamentul nostru contabil. \n" +"Dacă ați efectuat plata după ce acest email a fost trimis, vă rugăm să nu " +"luați în considerare acest mesaj. Nu ezitați să\n" +"contactați departamentul nostru contabil. \n" "\n" "

\n" "
\n" "Cu stima,\n" "
\n" "
\n" -"${utilizator.nume}\n" +"${user.name}\n" "\n" "
\n" "
\n" "\n" "\n" -"${obiect.obtine_urmarea_tabel_html() | safe}\n" +"${object.get_followup_table_html() | safe}\n" "\n" "
\n" "\n" @@ -417,7 +417,7 @@ msgstr "" "serif; dimensiune-font: 12px; culoare: rgb(34, 34, 34); culoarea-fundal: " "rgb(255, 255, 255); \">\n" " \n" -"

Stimate ${obiect.nume},

\n" +"

Stimate ${object.name},

\n" "

\n" " Suntem dezamagiti sa constatam faptul ca, in ciuda instriintarii " "trimise, contul dumneavoastra este foarte restant.\n" @@ -437,12 +437,12 @@ msgstr "" " \n" "
\n" "
\n" -"${utilizator.nume}\n" +"${user.name}\n" " \n" "
\n" "
\n" "\n" -"${obiect.obtine_urmarirea_tabel_html() | safe}\n" +"${object.get_followup_table_html() | safe}\n" "\n" "
\n" "\n" @@ -765,7 +765,7 @@ msgstr "" "serif; dimensiune-font: 12px; culoare: rgb(34, 34, 34); culoare-fundal: " "rgb(255, 255, 255); \">\n" " \n" -"

Stimater ${obiect.nume},

\n" +"

Stimater ${object.name},

\n" "

\n" " In ciuda mai multor instiintari trimise, contul dumneavoastra inca nu " "este rezolvat.\n" @@ -781,12 +781,12 @@ msgstr "" "Cu stima,\n" "
\n" "
\n" -"${utilizator.nume}\n" +"${user.name}\n" "
\n" "
\n" "\n" "\n" -"${obiect.obtine_urmarirea_tabel_html() | safe}\n" +"${object.get_followup_table_html() | safe}\n" "\n" "
\n" "\n" @@ -989,7 +989,7 @@ msgstr "" "serif; dimensiune-font: 12px; color: rgb(34, 34, 34); culoare-fundal: " "rgb(255, 255, 255); \">\n" " \n" -"

Stimate ${obiect.nume},

\n" +"

Stimate ${object.name},

\n" "

\n" " Exceptand faptul ca a fost o greseala din partea noastra, se pare ca " "urmatoarea suma este neplatita. Va rugam sa\n" @@ -1002,11 +1002,11 @@ msgstr "" "Cu stima,\n" "
\n" "
\n" -"${utilizator.nume}\n" +"${user.name}\n" "
\n" "
\n" "\n" -"${obiect.obtine_urmarire_tabel_html() | safe}\n" +"${object.get_followup_table_html() | safe}\n" "\n" "
\n" "\n" diff --git a/addons/account_followup/i18n/ru.po b/addons/account_followup/i18n/ru.po index a20266f19d9..7ce34c0f929 100644 --- a/addons/account_followup/i18n/ru.po +++ b/addons/account_followup/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po index 9cfb0168dcc..a86f11073b3 100644 --- a/addons/account_followup/i18n/sl.po +++ b/addons/account_followup/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sq.po b/addons/account_followup/i18n/sq.po index d0a11a6acbf..74289848ccf 100644 --- a/addons/account_followup/i18n/sq.po +++ b/addons/account_followup/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:20+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sr.po b/addons/account_followup/i18n/sr.po index d1274c6f498..72ea4808dae 100644 --- a/addons/account_followup/i18n/sr.po +++ b/addons/account_followup/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sr@latin.po b/addons/account_followup/i18n/sr@latin.po index 2665b683579..88c6bb5eb23 100644 --- a/addons/account_followup/i18n/sr@latin.po +++ b/addons/account_followup/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sv.po b/addons/account_followup/i18n/sv.po index aafb6678b4b..68601f73bcc 100644 --- a/addons/account_followup/i18n/sv.po +++ b/addons/account_followup/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/tlh.po b/addons/account_followup/i18n/tlh.po index 858aef6cef7..6e5fa7cbacd 100644 --- a/addons/account_followup/i18n/tlh.po +++ b/addons/account_followup/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po index 35233a0234f..a745355c9e1 100644 --- a/addons/account_followup/i18n/tr.po +++ b/addons/account_followup/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/uk.po b/addons/account_followup/i18n/uk.po index 633ec9d3ef8..2e4ed73706f 100644 --- a/addons/account_followup/i18n/uk.po +++ b/addons/account_followup/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/vi.po b/addons/account_followup/i18n/vi.po index a6d2e182176..c75f3755e5f 100644 --- a/addons/account_followup/i18n/vi.po +++ b/addons/account_followup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:51+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po index b365f3a7988..261f4d20711 100644 --- a/addons/account_followup/i18n/zh_CN.po +++ b/addons/account_followup/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po index 26495b60a14..e5a08e848e2 100644 --- a/addons/account_followup/i18n/zh_TW.po +++ b/addons/account_followup/i18n/zh_TW.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-24 12:49+0000\n" -"Last-Translator: Eric Huang \n" +"PO-Revision-Date: 2013-12-24 10:29+0000\n" +"Last-Translator: Andy Cheng \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:21+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 05:52+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -22,12 +22,12 @@ msgstr "" #: model:email.template,subject:account_followup.email_template_account_followup_level1 #: model:email.template,subject:account_followup.email_template_account_followup_level2 msgid "${user.company_id.name} Payment Reminder" -msgstr "" +msgstr "${user.company_id.name} 提醒付款" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 msgid "The maximum follow-up level" -msgstr "" +msgstr "最大後續追蹤層級" #. module: account_followup #: view:account_followup.stat:0 @@ -48,13 +48,13 @@ msgstr "" #. module: account_followup #: field:res.partner,payment_next_action_date:0 msgid "Next Action Date" -msgstr "" +msgstr "下個動作日期" #. module: account_followup #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,manual_action:0 msgid "Manual Action" -msgstr "" +msgstr "手動動作" #. module: account_followup #: field:account_followup.sending.results,needprinting:0 @@ -64,7 +64,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "⇾ Mark as Done" -msgstr "" +msgstr "⇾ 標為已完成" #. module: account_followup #: field:account_followup.followup.line,manual_action_note:0 @@ -104,17 +104,17 @@ msgstr "" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "" +msgstr "後續追蹤步驟" #. module: account_followup #: field:account_followup.print,email_body:0 msgid "Email Body" -msgstr "" +msgstr "Email內文" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print msgid "Send Follow-Ups" -msgstr "" +msgstr "送出後續追蹤" #. module: account_followup #: report:account_followup.followup.print:0 @@ -133,7 +133,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "No Responsible" -msgstr "" +msgstr "沒有負責人" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line2 @@ -209,17 +209,17 @@ msgstr "借方合計" #. module: account_followup #: field:res.partner,payment_next_action:0 msgid "Next Action" -msgstr "" +msgstr "下個動作" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Partner Name" -msgstr "" +msgstr "業務夥伴名稱" #. module: account_followup #: field:account_followup.followup.line,manual_action_responsible_id:0 msgid "Assign a Responsible" -msgstr "" +msgstr "指定一負責人" #. module: account_followup #: view:account_followup.followup:0 @@ -269,7 +269,7 @@ msgstr "合夥人" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "" +msgstr "一間公司僅允許一項後續追蹤" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 @@ -300,7 +300,7 @@ msgstr "" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup msgid "Manual Follow-Ups" -msgstr "" +msgstr "手動後續追蹤" #. module: account_followup #: view:account_followup.followup.line:0 @@ -356,12 +356,12 @@ msgstr "借方" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat msgid "Follow-up Statistics" -msgstr "" +msgstr "後續追蹤統計分析" #. module: account_followup #: view:res.partner:0 msgid "Send Overdue Email" -msgstr "" +msgstr "送出帳務逾期通知信" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup_line diff --git a/addons/account_followup/report/account_followup_report.xml b/addons/account_followup/report/account_followup_report.xml index 7f9ea48010b..e435e58da7b 100644 --- a/addons/account_followup/report/account_followup_report.xml +++ b/addons/account_followup/report/account_followup_report.xml @@ -2,33 +2,13 @@ - - account_followup.stat.tree - account_followup.stat - - - - - - - - - - - - - - - - - account_followup.stat.graph account_followup.stat - - - + + + @@ -60,7 +40,7 @@ Follow-ups Sent account_followup.stat form - tree,graph + graph {'search_default_followup_level':1} diff --git a/addons/account_payment/account_payment_view.xml b/addons/account_payment/account_payment_view.xml index f66f02a6d12..e49d6dfe93b 100644 --- a/addons/account_payment/account_payment_view.xml +++ b/addons/account_payment/account_payment_view.xml @@ -41,7 +41,7 @@ - + diff --git a/addons/account_payment/i18n/am.po b/addons/account_payment/i18n/am.po index 825fee9e9be..10c7c539058 100644 --- a/addons/account_payment/i18n/am.po +++ b/addons/account_payment/i18n/am.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ar.po b/addons/account_payment/i18n/ar.po index 13d3cef27e6..2a3ab9076f7 100644 --- a/addons/account_payment/i18n/ar.po +++ b/addons/account_payment/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bg.po b/addons/account_payment/i18n/bg.po index fcd602b11fd..94eefb2c7ef 100644 --- a/addons/account_payment/i18n/bg.po +++ b/addons/account_payment/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bs.po b/addons/account_payment/i18n/bs.po index 23b76160848..c671399b2bc 100644 --- a/addons/account_payment/i18n/bs.po +++ b/addons/account_payment/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -28,6 +28,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite da kreirate nalog plaćanja.\n" +"

\n" +" Nalog plaćanja je zahtjev plaćanja vaše kompanije da plati " +"fakturu\n" +" dobavljaču ili povrat kupcu.\n" +"

\n" +" " #. module: account_payment #: field:payment.line,currency:0 @@ -48,7 +56,7 @@ msgstr "Odaberite način plaćanja koji će biti primjenjen." #: view:payment.mode:0 #: view:payment.order:0 msgid "Group By..." -msgstr "" +msgstr "Grupiši po..." #. module: account_payment #: field:payment.order,line_ids:0 @@ -76,12 +84,12 @@ msgstr "" #: field:payment.mode,company_id:0 #: field:payment.order,company_id:0 msgid "Company" -msgstr "" +msgstr "Kompanija" #. module: account_payment #: model:res.groups,name:account_payment.group_account_payment msgid "Accounting / Payments" -msgstr "" +msgstr "Račnunovodstvo / Plaćanja" #. module: account_payment #: selection:payment.line,state:0 @@ -97,7 +105,7 @@ msgstr "Unosi" #. module: account_payment #: report:payment.order:0 msgid "Used Account" -msgstr "" +msgstr "Korišćeni račun" #. module: account_payment #: field:payment.line,ml_maturity_date:0 @@ -114,7 +122,7 @@ msgstr "_Dodaj u nalog za plaćanje" #: model:ir.actions.act_window,name:account_payment.action_account_payment_populate_statement #: model:ir.actions.act_window,name:account_payment.action_account_populate_statement_confirm msgid "Payment Populate statement" -msgstr "" +msgstr "Popuni nalog za plaćanje" #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 @@ -123,13 +131,15 @@ msgid "" "You cannot cancel an invoice which has already been imported in a payment " "order. Remove it from the following payment order : %s." msgstr "" +"Ne možete otkazati fakturu koja je već bila uvezena u nalog plaćanja. " +"Uklonite je iz sljedećeg naloga plaćanja: %s." #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "Error!" -msgstr "" +msgstr "Greška!" #. module: account_payment #: report:payment.order:0 @@ -140,12 +150,12 @@ msgstr "Iznos" #. module: account_payment #: view:payment.order:0 msgid "Total in Company Currency" -msgstr "Ukupno u valuti firme" +msgstr "Ukupno u valuti kompanije" #. module: account_payment #: selection:payment.order,state:0 msgid "Cancelled" -msgstr "Poništeno" +msgstr "Otkazano" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree_new @@ -161,7 +171,7 @@ msgstr "Referenca" #. module: account_payment #: sql_constraint:payment.line:0 msgid "The payment line name must be unique!" -msgstr "" +msgstr "Naziv stavke plaćanja mora biti jedinstven!" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree @@ -172,7 +182,7 @@ msgstr "Nalozi za plaćanje" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Directly" -msgstr "Izravno" +msgstr "Direktno" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_line_form @@ -194,6 +204,9 @@ msgid "" " Once the bank is confirmed the status is set to 'Confirmed'.\n" " Then the order is paid the status is 'Done'." msgstr "" +"Kada je nalog kreiran status je 'U pripremi'.\n" +" Kada je potvrđen od strane banke status je 'Potvrđeno'.\n" +" Kada je nalog plaćen status je 'Gotovo'." #. module: account_payment #: view:payment.order:0 @@ -209,7 +222,7 @@ msgstr "Efektivni datum fakture" #. module: account_payment #: report:payment.order:0 msgid "Execution Type" -msgstr "" +msgstr "Tip izvršenja" #. module: account_payment #: selection:payment.line,state:0 @@ -219,7 +232,7 @@ msgstr "Strukturiran" #. module: account_payment #: view:account.bank.statement:0 msgid "Import Payment Lines" -msgstr "" +msgstr "Uvezi stavke plaćanja" #. module: account_payment #: view:payment.line:0 @@ -255,18 +268,18 @@ msgid "" "scheduled date of execution." msgstr "" "Odaberite opciju za nalog za plaćanje: \"Fiksno\" znači datum naveden od " -"vaše strane. \"Izravno\" znači izravno izvršenje. \"Datum odgode\" znači " +"vaše strane. \"Direktno\" znači direktno izvršenje. \"Datum odgode\" znači " "zakazan datum izvršenja." #. module: account_payment #: field:payment.order,date_created:0 msgid "Creation Date" -msgstr "" +msgstr "Datum kreiranja" #. module: account_payment #: help:payment.mode,journal:0 msgid "Bank or Cash Journal for the Payment Mode" -msgstr "" +msgstr "Dnevnik banke ili blagajne za način plaćanja" #. module: account_payment #: selection:payment.order,date_prefered:0 @@ -277,17 +290,17 @@ msgstr "Fiksni datum" #: field:payment.line,info_partner:0 #: view:payment.order:0 msgid "Destination Account" -msgstr "Ciljno konto" +msgstr "Ciljani konto" #. module: account_payment #: view:payment.line:0 msgid "Desitination Account" -msgstr "" +msgstr "Ciljni račun" #. module: account_payment #: view:payment.order:0 msgid "Search Payment Orders" -msgstr "" +msgstr "Traži naloge za plaćanje" #. module: account_payment #: field:payment.line,create_date:0 @@ -324,7 +337,7 @@ msgstr "Partner" #. module: account_payment #: field:payment.line,bank_statement_line_id:0 msgid "Bank statement line" -msgstr "" +msgstr "Stavka izvoda iz banke" #. module: account_payment #: selection:payment.order,date_prefered:0 @@ -339,12 +352,12 @@ msgstr "Iznos za plaćanje" #. module: account_payment #: report:payment.order:0 msgid "Currency" -msgstr "" +msgstr "Valuta" #. module: account_payment #: view:account.payment.make.payment:0 msgid "Yes" -msgstr "" +msgstr "Da" #. module: account_payment #: help:payment.line,info_owner:0 @@ -357,19 +370,19 @@ msgid "" "If no payment date is specified, the bank will treat this payment line " "directly" msgstr "" -"Ako nije naveden datum plaćanja, banka će smatrati da je ovaj redak plaćanja " -"izravan." +"Ako nije naveden datum plaćanja, banka će smatrati da je ova stavka plaćanja " +"direktna." #. module: account_payment #: model:ir.model,name:account_payment.model_account_payment_populate_statement msgid "Account Payment Populate Statement" -msgstr "" +msgstr "Popuni izvod plaćanja" #. module: account_payment #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "There is no partner defined on the entry line." -msgstr "" +msgstr "Nema definisanog partnera na stavci zapisa." #. module: account_payment #: help:payment.mode,name:0 @@ -379,7 +392,7 @@ msgstr "Način plaćanja" #. module: account_payment #: report:payment.order:0 msgid "Value Date" -msgstr "" +msgstr "Datum vrijednosti" #. module: account_payment #: report:payment.order:0 @@ -401,7 +414,7 @@ msgstr "Draft" #: view:payment.order:0 #: field:payment.order,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: account_payment #: help:payment.line,communication2:0 @@ -416,7 +429,7 @@ msgstr "Adresa kupca naručitelja." #. module: account_payment #: view:account.payment.populate.statement:0 msgid "Populate Statement:" -msgstr "" +msgstr "Popuni izvod" #. module: account_payment #: help:payment.order,date_scheduled:0 @@ -431,7 +444,7 @@ msgstr "Stavke plaćanja" #. module: account_payment #: model:ir.model,name:account_payment.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "Stavke dnevnika" #. module: account_payment #: help:payment.line,move_line_id:0 @@ -443,12 +456,12 @@ msgstr "Ova stavka će biti određena iz informacije o kupcu naručitelju." #. module: account_payment #: view:payment.order.create:0 msgid "Search" -msgstr "" +msgstr "Pretraži" #. module: account_payment #: field:payment.order,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Odgovoran" #. module: account_payment #: field:payment.line,date:0 @@ -458,12 +471,12 @@ msgstr "Datum plaćanja" #. module: account_payment #: report:payment.order:0 msgid "Total:" -msgstr "" +msgstr "Ukupno:" #. module: account_payment #: field:payment.order,date_done:0 msgid "Execution Date" -msgstr "" +msgstr "Datum izvršavanja" #. module: account_payment #: view:account.payment.populate.statement:0 @@ -473,7 +486,7 @@ msgstr "" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_create_payment_order msgid "Populate Payment" -msgstr "" +msgstr "Popunite plaćanje" #. module: account_payment #: field:account.move.line,amount_to_pay:0 @@ -493,12 +506,12 @@ msgstr "Kupac naručitelj" #. module: account_payment #: model:ir.model,name:account_payment.model_account_payment_make_payment msgid "Account make payment" -msgstr "" +msgstr "Plaćanje" #. module: account_payment #: report:payment.order:0 msgid "Invoice Ref" -msgstr "" +msgstr "Referenca fakture" #. module: account_payment #: field:payment.line,name:0 @@ -525,7 +538,7 @@ msgstr "Urađeno" #. module: account_payment #: model:ir.model,name:account_payment.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Faktura" #. module: account_payment #: field:payment.line,communication:0 @@ -542,7 +555,7 @@ msgstr "Odustani" #. module: account_payment #: field:payment.line,bank_id:0 msgid "Destination Bank Account" -msgstr "" +msgstr "Odredišni račun banke" #. module: account_payment #: view:payment.line:0 @@ -580,12 +593,12 @@ msgstr "Komunikacija 2" #. module: account_payment #: field:payment.order,date_scheduled:0 msgid "Scheduled Date" -msgstr "" +msgstr "Zakazani datum" #. module: account_payment #: view:account.payment.make.payment:0 msgid "Are you sure you want to make payment?" -msgstr "" +msgstr "Da li ste sigurni da želite izvršiti plaćanje?" #. module: account_payment #: view:payment.mode:0 @@ -619,7 +632,7 @@ msgstr "Plaćanje" #. module: account_payment #: report:payment.order:0 msgid "Payment Order / Payment" -msgstr "" +msgstr "Nalog za plaćanje / plaćanje" #. module: account_payment #: field:payment.line,move_line_id:0 @@ -641,7 +654,7 @@ msgstr "Naziv" #. module: account_payment #: report:payment.order:0 msgid "Bank Account" -msgstr "" +msgstr "Račun banke" #. module: account_payment #: view:payment.line:0 @@ -673,14 +686,14 @@ msgstr "" #. module: account_payment #: field:payment.order,date_prefered:0 msgid "Preferred Date" -msgstr "" +msgstr "Preferirani datum" #. module: account_payment #: view:account.payment.make.payment:0 #: view:account.payment.populate.statement:0 #: view:payment.order.create:0 msgid "or" -msgstr "" +msgstr "ili" #. module: account_payment #: help:payment.mode,bank_id:0 diff --git a/addons/account_payment/i18n/ca.po b/addons/account_payment/i18n/ca.po index a96342ba5b3..d38323f9e13 100644 --- a/addons/account_payment/i18n/ca.po +++ b/addons/account_payment/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/cs.po b/addons/account_payment/i18n/cs.po index 4f49caeadb0..c350683eb27 100644 --- a/addons/account_payment/i18n/cs.po +++ b/addons/account_payment/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/da.po b/addons/account_payment/i18n/da.po index 0368cf10a57..86a3bcfa79e 100644 --- a/addons/account_payment/i18n/da.po +++ b/addons/account_payment/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -33,35 +33,35 @@ msgstr "" #. module: account_payment #: field:payment.line,currency:0 msgid "Partner Currency" -msgstr "" +msgstr "Partner valuta" #. module: account_payment #: view:payment.order:0 msgid "Set to draft" -msgstr "" +msgstr "Sæt til status kladde" #. module: account_payment #: help:payment.order,mode:0 msgid "Select the Payment Mode to be applied." -msgstr "" +msgstr "Vælg betalingsmåde" #. module: account_payment #: view:payment.mode:0 #: view:payment.order:0 msgid "Group By..." -msgstr "" +msgstr "Sorter efter" #. module: account_payment #: field:payment.order,line_ids:0 msgid "Payment lines" -msgstr "" +msgstr "Betalings linier" #. module: account_payment #: view:payment.line:0 #: field:payment.line,info_owner:0 #: view:payment.order:0 msgid "Owner Account" -msgstr "" +msgstr "Konto ejer" #. module: account_payment #: help:account.invoice,amount_to_pay:0 @@ -75,39 +75,39 @@ msgstr "" #: field:payment.mode,company_id:0 #: field:payment.order,company_id:0 msgid "Company" -msgstr "" +msgstr "Firma" #. module: account_payment #: model:res.groups,name:account_payment.group_account_payment msgid "Accounting / Payments" -msgstr "" +msgstr "Regnskab / Betalinger" #. module: account_payment #: selection:payment.line,state:0 msgid "Free" -msgstr "" +msgstr "Ledig" #. module: account_payment #: view:payment.order.create:0 #: field:payment.order.create,entries:0 msgid "Entries" -msgstr "" +msgstr "Poster" #. module: account_payment #: report:payment.order:0 msgid "Used Account" -msgstr "" +msgstr "Bruger konto" #. module: account_payment #: field:payment.line,ml_maturity_date:0 #: field:payment.order.create,duedate:0 msgid "Due Date" -msgstr "" +msgstr "Forfaldsdato" #. module: account_payment #: view:payment.order.create:0 msgid "_Add to payment order" -msgstr "" +msgstr "_Tilføj til betalingsordre" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_account_payment_populate_statement @@ -128,13 +128,13 @@ msgstr "" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "Error!" -msgstr "" +msgstr "Fejl!" #. module: account_payment #: report:payment.order:0 #: view:payment.order:0 msgid "Amount" -msgstr "" +msgstr "Mængde/beløb" #. module: account_payment #: view:payment.order:0 diff --git a/addons/account_payment/i18n/de.po b/addons/account_payment/i18n/de.po index ff90e8b98f7..623dc4753d9 100644 --- a/addons/account_payment/i18n/de.po +++ b/addons/account_payment/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -42,23 +42,23 @@ msgstr "" #. module: account_payment #: field:payment.line,currency:0 msgid "Partner Currency" -msgstr "Partner Währung" +msgstr "Partnerwährung" #. module: account_payment #: view:payment.order:0 msgid "Set to draft" -msgstr "Setze auf Entwurf" +msgstr "Auf Entwurf setzen" #. module: account_payment #: help:payment.order,mode:0 msgid "Select the Payment Mode to be applied." -msgstr "Wähle anzuwendenden Zahlungsmodus" +msgstr "Festlelegten Zahlungsmodus wählen" #. module: account_payment #: view:payment.mode:0 #: view:payment.order:0 msgid "Group By..." -msgstr "Gruppierung..." +msgstr "Gruppieren nach ..." #. module: account_payment #: field:payment.order,line_ids:0 @@ -118,7 +118,7 @@ msgstr "Fälligkeitsdatum" #. module: account_payment #: view:payment.order.create:0 msgid "_Add to payment order" -msgstr "_Add to payment order" +msgstr "_Hinzufügen zu Zahlungsvorschlag" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_account_payment_populate_statement @@ -153,7 +153,7 @@ msgstr "Betrag" #. module: account_payment #: view:payment.order:0 msgid "Total in Company Currency" -msgstr "Gesamt in eigener Währung" +msgstr "Gesamt (in eigener Währung)" #. module: account_payment #: selection:payment.order,state:0 @@ -209,7 +209,7 @@ msgid "" msgstr "" "Wenn ein Zahlungsauftrag erstellt wird ist der Status 'Entwurf'.\n" " Durch Bestätigung wechselt der Status in 'Bestätigt'.\n" -" Durch die tatsächliche Freigabe zu Zahlung wechselt der" +" Durch die tatsächliche Freigabe zur Zahlung wechselt er zu 'Erledigt'." #. module: account_payment #: view:payment.order:0 @@ -278,7 +278,7 @@ msgstr "" #. module: account_payment #: field:payment.order,date_created:0 msgid "Creation Date" -msgstr "Datum Erstellung" +msgstr "Erstelldatum" #. module: account_payment #: help:payment.mode,journal:0 @@ -288,7 +288,7 @@ msgstr "Bank oder Barkasse Journal für den Zahlungsmodus" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Fixed date" -msgstr "festes Datum" +msgstr "Festes Datum" #. module: account_payment #: field:payment.line,info_partner:0 @@ -304,7 +304,7 @@ msgstr "Konto Zahlungsempfänger" #. module: account_payment #: view:payment.order:0 msgid "Search Payment Orders" -msgstr "Suche Zahlungsaufträge" +msgstr "Zahlungsaufträge suchen" #. module: account_payment #: field:payment.line,create_date:0 @@ -324,7 +324,7 @@ msgstr "Betrag in Fremdwährung" #. module: account_payment #: view:payment.order:0 msgid "Make Payments" -msgstr "Verbuche Zahlungsvorschlag" +msgstr "Zahlungsvorschlag verbuchen" #. module: account_payment #: field:payment.line,state:0 @@ -346,7 +346,7 @@ msgstr "Bankauszug Positionen" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Due date" -msgstr "Datum fällig" +msgstr "Fälligkeitsdatum" #. module: account_payment #: field:account.invoice,amount_to_pay:0 @@ -374,7 +374,7 @@ msgid "" "If no payment date is specified, the bank will treat this payment line " "directly" msgstr "" -"Wenn kein Zahlungsdatum vorgegeben ist, wird die Banks sofort überweisen." +"Wenn kein Zahlungsdatum vorgegeben ist, wird die Bank sofort überweisen." #. module: account_payment #: model:ir.model,name:account_payment.model_account_payment_populate_statement @@ -395,12 +395,12 @@ msgstr "Zahlungsmodus" #. module: account_payment #: report:payment.order:0 msgid "Value Date" -msgstr "Datum Wertstellung" +msgstr "Datum der Wertstellung" #. module: account_payment #: report:payment.order:0 msgid "Payment Type" -msgstr "Zahlungstyp" +msgstr "Zahlungsart" #. module: account_payment #: help:payment.line,amount_currency:0 @@ -437,7 +437,7 @@ msgstr "Zahlungsvorschlag:" #. module: account_payment #: help:payment.order,date_scheduled:0 msgid "Select a date if you have chosen Preferred Date to be fixed." -msgstr "Wähle ein Datum wenn Ihre Auswahl 'festes Datum' sein soll." +msgstr "Wählen Sie ein Datum wenn Ihre Auswahl 'festes Datum' sein soll." #. module: account_payment #: field:account.payment.populate.statement,lines:0 @@ -470,7 +470,7 @@ msgstr "Verantwortlicher" #. module: account_payment #: field:payment.line,date:0 msgid "Payment Date" -msgstr "Datum Zahlung" +msgstr "Zahlungsdatum" #. module: account_payment #: report:payment.order:0 @@ -480,7 +480,7 @@ msgstr "Summe:" #. module: account_payment #: field:payment.order,date_done:0 msgid "Execution Date" -msgstr "Datum Ausführung" +msgstr "Ausführung am" #. module: account_payment #: view:account.payment.populate.statement:0 @@ -490,7 +490,7 @@ msgstr "Hinzuf." #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_create_payment_order msgid "Populate Payment" -msgstr "Erzeuge Zahlungsvorschlag" +msgstr "Zahlungsvorschlag erzeugen" #. module: account_payment #: field:account.move.line,amount_to_pay:0 @@ -618,7 +618,7 @@ msgstr "Bankkonto" #. module: account_payment #: view:payment.order:0 msgid "Confirm Payments" -msgstr "Bestätige Zahlungsvorschlag" +msgstr "Zahlungsvorschlag bestätigen" #. module: account_payment #: field:payment.line,company_currency:0 @@ -649,8 +649,8 @@ msgid "" "Used as the message between ordering customer and current company. Depicts " "'What do you want to say to the recipient about this order ?'" msgstr "" -"Verwende diesen Text Zwischen Kunde und der eigenen Firma. Was sollen Sie " -"dem Empfänger über diesen Auftrag mitteilen?" +"Wird als Mitteilungstext zwischen beauftragendem Kunden und der derzeitigen " +"Firma genutzt. Was sollen Sie dem Empfänger über diesen Auftrag mitteilen?" #. module: account_payment #: field:payment.mode,name:0 @@ -660,7 +660,7 @@ msgstr "Bezeichnung" #. module: account_payment #: report:payment.order:0 msgid "Bank Account" -msgstr "Bank Konto" +msgstr "Bankkonto" #. module: account_payment #: view:payment.line:0 @@ -681,7 +681,7 @@ msgstr "Auftrag" #. module: account_payment #: field:payment.order,total:0 msgid "Total" -msgstr "Betrag gesammt" +msgstr "Betrag gesamt" #. module: account_payment #: view:account.payment.make.payment:0 @@ -692,7 +692,7 @@ msgstr "Bezahlung" #. module: account_payment #: field:payment.order,date_prefered:0 msgid "Preferred Date" -msgstr "bevorzugtes Datum" +msgstr "Bevorzugtes Datum" #. module: account_payment #: view:account.payment.make.payment:0 diff --git a/addons/account_payment/i18n/el.po b/addons/account_payment/i18n/el.po index 6419bceec42..43281466d9d 100644 --- a/addons/account_payment/i18n/el.po +++ b/addons/account_payment/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/en_GB.po b/addons/account_payment/i18n/en_GB.po index 1a4a1d3590f..b9f43e98f9f 100644 --- a/addons/account_payment/i18n/en_GB.po +++ b/addons/account_payment/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es.po b/addons/account_payment/i18n/es.po index eecfeb77d97..f762683b07f 100644 --- a/addons/account_payment/i18n/es.po +++ b/addons/account_payment/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_AR.po b/addons/account_payment/i18n/es_AR.po index 4d92dd50615..78a16a4e68b 100644 --- a/addons/account_payment/i18n/es_AR.po +++ b/addons/account_payment/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CL.po b/addons/account_payment/i18n/es_CL.po index 05b81b4b774..d0c2bac7e0a 100644 --- a/addons/account_payment/i18n/es_CL.po +++ b/addons/account_payment/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CR.po b/addons/account_payment/i18n/es_CR.po index a9e6cc71eca..fbbfdc83ff8 100644 --- a/addons/account_payment/i18n/es_CR.po +++ b/addons/account_payment/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: account_payment diff --git a/addons/account_payment/i18n/es_EC.po b/addons/account_payment/i18n/es_EC.po index acf9f80fe50..adbf97b8f48 100644 --- a/addons/account_payment/i18n/es_EC.po +++ b/addons/account_payment/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_MX.po b/addons/account_payment/i18n/es_MX.po index f7f051ca3da..4bb30fb3740 100644 --- a/addons/account_payment/i18n/es_MX.po +++ b/addons/account_payment/i18n/es_MX.po @@ -1,84 +1,67 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * account_payment +# Spanish (Mexico) translation for openobject-addons +# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2014. # 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: 2011-01-12 13:13+0000\n" -"Last-Translator: Borja López Soilán (NeoPolus) \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: 2014-01-10 21:52+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:26+0000\n" -"X-Generator: Launchpad (build 13830)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment -#: field:payment.order,date_scheduled:0 -msgid "Scheduled date if fixed" -msgstr "Fecha planificada si es fija" +#: model:ir.actions.act_window,help:account_payment.action_payment_order_tree +msgid "" +"

\n" +" Click to create a payment order.\n" +"

\n" +" A payment order is a payment request from your company to " +"pay a\n" +" supplier invoice or a customer refund.\n" +"

\n" +" " +msgstr "" #. module: account_payment #: field:payment.line,currency:0 msgid "Partner Currency" -msgstr "Moneda de la empresa" +msgstr "" #. module: account_payment #: view:payment.order:0 msgid "Set to draft" -msgstr "Cambiar a borrador" +msgstr "" #. module: account_payment #: help:payment.order,mode:0 msgid "Select the Payment Mode to be applied." -msgstr "Seleccione el modo de pago a aplicar." +msgstr "" #. module: account_payment #: view:payment.mode:0 #: view:payment.order:0 msgid "Group By..." -msgstr "Agrupar por..." - -#. module: account_payment -#: model:ir.module.module,description:account_payment.module_meta_information -msgid "" -"\n" -"This module provides :\n" -"* a more efficient way to manage invoice payment.\n" -"* a basic mechanism to easily plug various automated payment.\n" -" " msgstr "" -"\n" -"Este módulo proporciona:\n" -"* Una forma más eficiente para gestionar el pago de las facturas.\n" -"* Un mecanismo básico para conectar fácilmente varios pagos automatizados.\n" -" " #. module: account_payment #: field:payment.order,line_ids:0 msgid "Payment lines" -msgstr "Líneas de pago" +msgstr "" #. module: account_payment #: view:payment.line:0 #: field:payment.line,info_owner:0 #: view:payment.order:0 msgid "Owner Account" -msgstr "Cuenta propietario" - -#. module: account_payment -#: help:payment.order,state:0 -msgid "" -"When an order is placed the state is 'Draft'.\n" -" Once the bank is confirmed the state is set to 'Confirmed'.\n" -" Then the order is paid the state is 'Done'." msgstr "" -"Cuando se hace una orden, el estado es 'Borrador'.\n" -" Una vez se confirma el banco, el estado es \"Confirmada\".\n" -" Cuando la orden se paga, el estado es 'Realizada'." #. module: account_payment #: help:account.invoice,amount_to_pay:0 @@ -86,108 +69,109 @@ msgid "" "The amount which should be paid at the current date\n" "minus the amount which is already in payment order" msgstr "" -"El importe que se debería haber pagado en la fecha actual\n" -"menos el importe que ya está en la orden de pago" #. module: account_payment +#: field:payment.line,company_id:0 #: field:payment.mode,company_id:0 +#: field:payment.order,company_id:0 msgid "Company" -msgstr "Compañía" +msgstr "" #. module: account_payment -#: field:payment.order,date_prefered:0 -msgid "Preferred date" -msgstr "Fecha preferida" +#: model:res.groups,name:account_payment.group_account_payment +msgid "Accounting / Payments" +msgstr "" #. module: account_payment #: selection:payment.line,state:0 msgid "Free" -msgstr "Libre" +msgstr "" #. module: account_payment +#: view:payment.order.create:0 #: field:payment.order.create,entries:0 msgid "Entries" -msgstr "Asientos" +msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Used Account" -msgstr "Cuenta utilizada" +msgstr "" #. module: account_payment #: field:payment.line,ml_maturity_date:0 #: field:payment.order.create,duedate:0 msgid "Due Date" -msgstr "Fecha de vencimiento" - -#. module: account_payment -#: constraint:account.move.line:0 -msgid "You can not create move line on closed account." -msgstr "No puede crear una línea de movimiento en una cuenta cerrada." - -#. module: account_payment -#: view:account.move.line:0 -msgid "Account Entry Line" -msgstr "Línea del asiento contable" +msgstr "" #. module: account_payment #: view:payment.order.create:0 msgid "_Add to payment order" -msgstr "_Añadir a la orden de pago" +msgstr "" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_account_payment_populate_statement #: model:ir.actions.act_window,name:account_payment.action_account_populate_statement_confirm msgid "Payment Populate statement" -msgstr "Extracto generar pago" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/account_invoice.py:43 +#, python-format +msgid "" +"You cannot cancel an invoice which has already been imported in a payment " +"order. Remove it from the following payment order : %s." +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/account_invoice.py:43 +#: code:addons/account_payment/account_move_line.py:110 +#, python-format +msgid "Error!" +msgstr "" #. module: account_payment #: report:payment.order:0 #: view:payment.order:0 msgid "Amount" -msgstr "Importe" - -#. module: account_payment -#: sql_constraint:account.move.line:0 -msgid "Wrong credit or debit value in accounting entry !" -msgstr "¡Valor haber o debe erróneo en el asiento contable!" +msgstr "" #. module: account_payment #: view:payment.order:0 msgid "Total in Company Currency" -msgstr "Total en moneda de la compañía" +msgstr "" #. module: account_payment #: selection:payment.order,state:0 msgid "Cancelled" -msgstr "Cancelado" +msgstr "" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree_new msgid "New Payment Order" -msgstr "Nueva orden de pago" +msgstr "" #. module: account_payment #: report:payment.order:0 #: field:payment.order,reference:0 msgid "Reference" -msgstr "Referencia" +msgstr "" #. module: account_payment #: sql_constraint:payment.line:0 msgid "The payment line name must be unique!" -msgstr "¡El nombre de la línea de pago debe ser única!" +msgstr "" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree #: model:ir.ui.menu,name:account_payment.menu_action_payment_order_form msgid "Payment Orders" -msgstr "Órdenes de pago" +msgstr "" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Directly" -msgstr "Directamente" +msgstr "" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_line_form @@ -195,45 +179,52 @@ msgstr "Directamente" #: view:payment.line:0 #: view:payment.order:0 msgid "Payment Line" -msgstr "Línea de pago" +msgstr "" #. module: account_payment #: view:payment.line:0 msgid "Amount Total" -msgstr "Importe total" +msgstr "" + +#. module: account_payment +#: help:payment.order,state:0 +msgid "" +"When an order is placed the status is 'Draft'.\n" +" Once the bank is confirmed the status is set to 'Confirmed'.\n" +" Then the order is paid the status is 'Done'." +msgstr "" #. module: account_payment #: view:payment.order:0 #: selection:payment.order,state:0 msgid "Confirmed" -msgstr "Confirmada" +msgstr "" #. module: account_payment #: help:payment.line,ml_date_created:0 msgid "Invoice Effective Date" -msgstr "Fecha vencimiento factura" +msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Execution Type" -msgstr "Tipo ejecución" +msgstr "" #. module: account_payment #: selection:payment.line,state:0 msgid "Structured" -msgstr "Estructurado" +msgstr "" #. module: account_payment -#: view:payment.order:0 -#: field:payment.order,state:0 -msgid "State" -msgstr "Estado" +#: view:account.bank.statement:0 +msgid "Import Payment Lines" +msgstr "" #. module: account_payment #: view:payment.line:0 #: view:payment.order:0 msgid "Transaction Information" -msgstr "Información de transacción" +msgstr "" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_mode_form @@ -241,18 +232,19 @@ msgstr "Información de transacción" #: model:ir.ui.menu,name:account_payment.menu_action_payment_mode_form #: view:payment.mode:0 #: view:payment.order:0 +#: field:payment.order,mode:0 msgid "Payment Mode" -msgstr "Modo de pago" +msgstr "" #. module: account_payment #: field:payment.line,ml_date_created:0 msgid "Effective Date" -msgstr "Fecha vencimiento" +msgstr "" #. module: account_payment #: field:payment.line,ml_inv_ref:0 msgid "Invoice Ref." -msgstr "Ref. factura" +msgstr "" #. module: account_payment #: help:payment.order,date_prefered:0 @@ -261,119 +253,99 @@ msgid "" "by you.'Directly' stands for the direct execution.'Due date' stands for the " "scheduled date of execution." msgstr "" -"Seleccione una opción para la orden de pago: 'Fecha fija' para una fecha " -"especificada por usted. 'Directamente' para la ejecución directa. 'Fecha " -"vencimiento' para la fecha programada de ejecución." #. module: account_payment -#: code:addons/account_payment/account_move_line.py:110 -#, python-format -msgid "Error !" -msgstr "¡Error!" - -#. module: account_payment -#: view:account.move.line:0 -msgid "Total debit" -msgstr "Total debe" - -#. module: account_payment -#: field:payment.order,date_done:0 -msgid "Execution date" -msgstr "Fecha ejecución" +#: field:payment.order,date_created:0 +msgid "Creation Date" +msgstr "" #. module: account_payment #: help:payment.mode,journal:0 msgid "Bank or Cash Journal for the Payment Mode" -msgstr "Diario de banco o caja para el modo de pago." +msgstr "" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Fixed date" -msgstr "Fecha fija" +msgstr "" #. module: account_payment #: field:payment.line,info_partner:0 #: view:payment.order:0 msgid "Destination Account" -msgstr "Cuenta de destino" +msgstr "" #. module: account_payment #: view:payment.line:0 msgid "Desitination Account" -msgstr "Cuenta de destino" +msgstr "" #. module: account_payment #: view:payment.order:0 msgid "Search Payment Orders" -msgstr "Buscar órdenes de pago" - -#. module: account_payment -#: constraint:account.move.line:0 -msgid "" -"You can not create move line on receivable/payable account without partner" msgstr "" -"No puede crear una línea de movimiento en una cuenta a cobrar/a pagar sin " -"una empresa." #. module: account_payment #: field:payment.line,create_date:0 msgid "Created" -msgstr "Creado" +msgstr "" #. module: account_payment #: view:payment.order:0 msgid "Select Invoices to Pay" -msgstr "Seleccionar facturas a pagar" +msgstr "" #. module: account_payment #: view:payment.line:0 msgid "Currency Amount Total" -msgstr "Importe total monetario" +msgstr "" #. module: account_payment #: view:payment.order:0 msgid "Make Payments" -msgstr "Realizar pagos" +msgstr "" #. module: account_payment #: field:payment.line,state:0 msgid "Communication Type" -msgstr "Tipo de comunicación" +msgstr "" #. module: account_payment -#: model:ir.module.module,shortdesc:account_payment.module_meta_information -msgid "Payment Management" -msgstr "Gestión de pagos" +#: field:payment.line,partner_id:0 +#: field:payment.mode,partner_id:0 +#: report:payment.order:0 +msgid "Partner" +msgstr "" #. module: account_payment #: field:payment.line,bank_statement_line_id:0 msgid "Bank statement line" -msgstr "Línea extracto bancario" +msgstr "" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Due date" -msgstr "Fecha vencimiento" +msgstr "" #. module: account_payment #: field:account.invoice,amount_to_pay:0 msgid "Amount to be paid" -msgstr "Importe a pagar" +msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Currency" -msgstr "Moneda" +msgstr "" #. module: account_payment #: view:account.payment.make.payment:0 msgid "Yes" -msgstr "Sí" +msgstr "" #. module: account_payment #: help:payment.line,info_owner:0 msgid "Address of the Main Partner" -msgstr "Dirección de la empresa principal" +msgstr "" #. module: account_payment #: help:payment.line,date:0 @@ -381,92 +353,79 @@ msgid "" "If no payment date is specified, the bank will treat this payment line " "directly" msgstr "" -"Si no se indica fecha de pago, el banco procesará esta línea de pago " -"directamente" #. module: account_payment #: model:ir.model,name:account_payment.model_account_payment_populate_statement msgid "Account Payment Populate Statement" -msgstr "Contabilidad extracto generar pago" +msgstr "" + +#. module: account_payment +#: code:addons/account_payment/account_move_line.py:110 +#, python-format +msgid "There is no partner defined on the entry line." +msgstr "" #. module: account_payment #: help:payment.mode,name:0 msgid "Mode of Payment" -msgstr "Modo de pago" +msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Value Date" -msgstr "Fecha valor" +msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Payment Type" -msgstr "Tipo de Pago" +msgstr "" #. module: account_payment #: help:payment.line,amount_currency:0 msgid "Payment amount in the partner currency" -msgstr "Importe pagado en la moneda de la empresa" +msgstr "" #. module: account_payment #: view:payment.order:0 #: selection:payment.order,state:0 msgid "Draft" -msgstr "Borrador" +msgstr "" + +#. module: account_payment +#: view:payment.order:0 +#: field:payment.order,state:0 +msgid "Status" +msgstr "" #. module: account_payment #: help:payment.line,communication2:0 msgid "The successor message of Communication." -msgstr "El mensaje de pago realizado a comunicar." - -#. module: account_payment -#: code:addons/account_payment/account_move_line.py:110 -#, python-format -msgid "No partner defined on entry line" -msgstr "No se ha definido la empresa en la línea de entrada" +msgstr "" #. module: account_payment #: help:payment.line,info_partner:0 msgid "Address of the Ordering Customer." -msgstr "Dirección del cliente que ordena." +msgstr "" #. module: account_payment #: view:account.payment.populate.statement:0 msgid "Populate Statement:" -msgstr "Generar extracto:" - -#. module: account_payment -#: view:account.move.line:0 -msgid "Total credit" -msgstr "Total haber" +msgstr "" #. module: account_payment #: help:payment.order,date_scheduled:0 msgid "Select a date if you have chosen Preferred Date to be fixed." msgstr "" -"Seleccione una fecha si ha seleccionado que la fecha preferida sea fija." - -#. module: account_payment -#: field:payment.order,user_id:0 -msgid "User" -msgstr "Usuario" #. module: account_payment #: field:account.payment.populate.statement,lines:0 -#: model:ir.actions.act_window,name:account_payment.act_account_invoice_2_payment_line msgid "Payment Lines" -msgstr "Líneas de pago" +msgstr "" #. module: account_payment #: model:ir.model,name:account_payment.model_account_move_line msgid "Journal Items" -msgstr "Apuntes contables" - -#. module: account_payment -#: constraint:account.move.line:0 -msgid "Company must be same for its related account and period." -msgstr "La compañía debe ser la misma para la cuenta y periodo relacionados." +msgstr "" #. module: account_payment #: help:payment.line,move_line_id:0 @@ -474,202 +433,192 @@ msgid "" "This Entry Line will be referred for the information of the ordering " "customer." msgstr "" -"Esta línea se usará como referencia para la información del cliente que " -"ordena." #. module: account_payment #: view:payment.order.create:0 msgid "Search" -msgstr "Buscar" +msgstr "" #. module: account_payment -#: model:ir.actions.report.xml,name:account_payment.payment_order1 -#: model:ir.model,name:account_payment.model_payment_order -msgid "Payment Order" -msgstr "Orden de pago" +#: field:payment.order,user_id:0 +msgid "Responsible" +msgstr "" #. module: account_payment #: field:payment.line,date:0 msgid "Payment Date" -msgstr "Fecha de pago" +msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Total:" -msgstr "Total:" +msgstr "" #. module: account_payment -#: field:payment.order,date_created:0 -msgid "Creation date" -msgstr "Fecha de creación" +#: field:payment.order,date_done:0 +msgid "Execution Date" +msgstr "" #. module: account_payment #: view:account.payment.populate.statement:0 msgid "ADD" -msgstr "Añadir" +msgstr "" #. module: account_payment -#: view:account.bank.statement:0 -msgid "Import payment lines" -msgstr "Importar líneas de pago" +#: model:ir.actions.act_window,name:account_payment.action_create_payment_order +msgid "Populate Payment" +msgstr "" #. module: account_payment #: field:account.move.line,amount_to_pay:0 msgid "Amount to pay" -msgstr "Importe a pagar" +msgstr "" #. module: account_payment #: field:payment.line,amount:0 msgid "Amount in Company Currency" -msgstr "Importe en la moneda de la compañía" +msgstr "" #. module: account_payment #: help:payment.line,partner_id:0 msgid "The Ordering Customer" -msgstr "El cliente que ordena" +msgstr "" #. module: account_payment #: model:ir.model,name:account_payment.model_account_payment_make_payment msgid "Account make payment" -msgstr "Contabilidad realizar pago" +msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Invoice Ref" -msgstr "Ref. factura" +msgstr "" #. module: account_payment #: field:payment.line,name:0 msgid "Your Reference" -msgstr "Su referencia" - -#. module: account_payment -#: field:payment.order,mode:0 -msgid "Payment mode" -msgstr "Modo de pago" +msgstr "" #. module: account_payment #: view:payment.order:0 msgid "Payment order" -msgstr "Órdenes de pago" +msgstr "" #. module: account_payment #: view:payment.line:0 #: view:payment.order:0 msgid "General Information" -msgstr "Información General" +msgstr "" #. module: account_payment #: view:payment.order:0 #: selection:payment.order,state:0 msgid "Done" -msgstr "Realizado" +msgstr "" #. module: account_payment #: model:ir.model,name:account_payment.model_account_invoice msgid "Invoice" -msgstr "Factura" +msgstr "" #. module: account_payment #: field:payment.line,communication:0 msgid "Communication" -msgstr "Comunicación" +msgstr "" #. module: account_payment #: view:account.payment.make.payment:0 #: view:account.payment.populate.statement:0 -#: view:payment.order:0 #: view:payment.order.create:0 msgid "Cancel" -msgstr "Cancelar" +msgstr "" + +#. module: account_payment +#: field:payment.line,bank_id:0 +msgid "Destination Bank Account" +msgstr "" #. module: account_payment #: view:payment.line:0 #: view:payment.order:0 msgid "Information" -msgstr "Información" +msgstr "" #. module: account_payment -#: model:ir.actions.act_window,help:account_payment.action_payment_order_tree -msgid "" -"A payment order is a payment request from your company to pay a supplier " -"invoice or a customer credit note. Here you can register all payment orders " -"that should be done, keep track of all payment orders and mention the " -"invoice reference and the partner the payment should be done for." +#: model:ir.actions.report.xml,name:account_payment.payment_order1 +#: model:ir.model,name:account_payment.model_payment_order +#: view:payment.order:0 +msgid "Payment Order" msgstr "" -"Una órden de pago es una petición de pago que realiza su compañía para pagar " -"una factura de proveedor o un apunte de crédito de un cliente. Aquí puede " -"registrar todas las órdenes de pago pendientes y hacer seguimiento de las " -"órdenes e indicar la referencia de factura y la entidad a la cual pagar." #. module: account_payment #: help:payment.line,amount:0 msgid "Payment amount in the company currency" -msgstr "Importe pagado en la moneda de la compañía" +msgstr "" #. module: account_payment #: view:payment.order.create:0 msgid "Search Payment lines" -msgstr "Buscar líneas de pago" +msgstr "" #. module: account_payment #: field:payment.line,amount_currency:0 msgid "Amount in Partner Currency" -msgstr "Importe en la moneda de la empresa" +msgstr "" #. module: account_payment #: field:payment.line,communication2:0 msgid "Communication 2" -msgstr "Comunicación 2" +msgstr "" #. module: account_payment -#: field:payment.line,bank_id:0 -msgid "Destination Bank account" -msgstr "Cuenta bancaria destino" +#: field:payment.order,date_scheduled:0 +msgid "Scheduled Date" +msgstr "" #. module: account_payment #: view:account.payment.make.payment:0 msgid "Are you sure you want to make payment?" -msgstr "¿Está seguro que quiere realizar el pago?" +msgstr "" #. module: account_payment #: view:payment.mode:0 #: field:payment.mode,journal:0 msgid "Journal" -msgstr "Diario" +msgstr "" #. module: account_payment #: field:payment.mode,bank_id:0 msgid "Bank account" -msgstr "Cuenta bancaria" +msgstr "" #. module: account_payment #: view:payment.order:0 msgid "Confirm Payments" -msgstr "Confirmar pagos" +msgstr "" #. module: account_payment #: field:payment.line,company_currency:0 #: report:payment.order:0 msgid "Company Currency" -msgstr "Moneda de la compañía" +msgstr "" #. module: account_payment #: model:ir.ui.menu,name:account_payment.menu_main_payment #: view:payment.line:0 #: view:payment.order:0 msgid "Payment" -msgstr "Pago" +msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Payment Order / Payment" -msgstr "Orden de pago / Pago" +msgstr "" #. module: account_payment #: field:payment.line,move_line_id:0 msgid "Entry line" -msgstr "Línea del asiento" +msgstr "" #. module: account_payment #: help:payment.line,communication:0 @@ -677,134 +626,57 @@ msgid "" "Used as the message between ordering customer and current company. Depicts " "'What do you want to say to the recipient about this order ?'" msgstr "" -"Se utiliza como mensaje entre el cliente que hace el pedido y la compañía " -"actual. Describe '¿Qué quiere decir al receptor sobre este pedido?'" #. module: account_payment #: field:payment.mode,name:0 msgid "Name" -msgstr "Nombre" +msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Bank Account" -msgstr "Cuenta bancaria" +msgstr "" #. module: account_payment #: view:payment.line:0 #: view:payment.order:0 msgid "Entry Information" -msgstr "Información del asiento" +msgstr "" #. module: account_payment #: model:ir.model,name:account_payment.model_payment_order_create msgid "payment.order.create" -msgstr "pago.orden.crear" +msgstr "" #. module: account_payment #: field:payment.line,order_id:0 msgid "Order" -msgstr "Orden" +msgstr "" #. module: account_payment #: field:payment.order,total:0 msgid "Total" -msgstr "Total" +msgstr "" #. module: account_payment #: view:account.payment.make.payment:0 #: model:ir.actions.act_window,name:account_payment.action_account_payment_make_payment msgid "Make Payment" -msgstr "Realizar pago" +msgstr "" #. module: account_payment -#: field:payment.line,partner_id:0 -#: report:payment.order:0 -msgid "Partner" -msgstr "Empresa" +#: field:payment.order,date_prefered:0 +msgid "Preferred Date" +msgstr "" #. module: account_payment -#: model:ir.actions.act_window,name:account_payment.action_create_payment_order -msgid "Populate Payment" -msgstr "Generar pago" +#: view:account.payment.make.payment:0 +#: view:account.payment.populate.statement:0 +#: view:payment.order.create:0 +msgid "or" +msgstr "" #. module: account_payment #: help:payment.mode,bank_id:0 msgid "Bank Account for the Payment Mode" -msgstr "Cuenta bancaria para el modo de pago" - -#. module: account_payment -#: constraint:account.move.line:0 -msgid "You can not create move line on view account." -msgstr "No puede crear una línea de movimiento en una cuenta de tipo vista." - -#~ msgid "Execution date:" -#~ msgstr "Fecha de ejecución:" - -#~ msgid "Suitable bank types" -#~ msgstr "Tipos de banco adecuados" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML inválido para la definición de la vista!" - -#~ msgid "_Cancel" -#~ msgstr "_Cancelar" - -#~ msgid "Date" -#~ msgstr "Fecha" - -#~ msgid "Reference:" -#~ msgstr "Referencia:" - -#~ msgid "Maturity Date" -#~ msgstr "Fecha vencimiento" - -#~ msgid "Specify the Code for Payment Type" -#~ msgstr "Indique el código para el tipo de pago" - -#~ msgid "Code" -#~ msgstr "Código" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -#~ "especial!" - -#~ msgid "Pay" -#~ msgstr "Pagar" - -#~ msgid "Draft Payment Order" -#~ msgstr "Orden de pago borrador" - -#~ msgid "Cash Journal for the Payment Mode" -#~ msgstr "Diario de caja para el modo de pago" - -#~ msgid "_Search" -#~ msgstr "_Buscar" - -#, python-format -#~ msgid "Partner '+ line.partner_id.name+ ' has no bank account defined" -#~ msgstr "" -#~ "Empresa '+ line.partner_id.name+ ' no tiene una cuenta bancaria definida" - -#~ msgid "Payment Orders to Validate" -#~ msgstr "Órdenes de pago a validar" - -#~ msgid "Payment type" -#~ msgstr "Tipo de pago" - -#~ msgid "_Add" -#~ msgstr "_Añadir" - -#~ msgid "Select the Payment Type for the Payment Mode." -#~ msgstr "Seleccione el tipo de pago para el modo de pago." - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nombre de modelo no válido en la definición de acción." - -#~ msgid "Populate payment" -#~ msgstr "Rellenar la orden" - -#~ msgid "Populate Statement with Payment lines" -#~ msgstr "Llenar un extracto con líneas de pago" +msgstr "" diff --git a/addons/account_payment/i18n/es_PY.po b/addons/account_payment/i18n/es_PY.po index 4911be7ff40..28223807109 100644 --- a/addons/account_payment/i18n/es_PY.po +++ b/addons/account_payment/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/et.po b/addons/account_payment/i18n/et.po index e38be0d8489..43226bdad9e 100644 --- a/addons/account_payment/i18n/et.po +++ b/addons/account_payment/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -48,7 +48,7 @@ msgstr "Vali rakendatav makseviis" #: view:payment.mode:0 #: view:payment.order:0 msgid "Group By..." -msgstr "" +msgstr "Grupeeri..." #. module: account_payment #: field:payment.order,line_ids:0 @@ -76,12 +76,12 @@ msgstr "" #: field:payment.mode,company_id:0 #: field:payment.order,company_id:0 msgid "Company" -msgstr "" +msgstr "Ettevõte" #. module: account_payment #: model:res.groups,name:account_payment.group_account_payment msgid "Accounting / Payments" -msgstr "" +msgstr "Raamatupidamine / Maksed" #. module: account_payment #: selection:payment.line,state:0 @@ -97,7 +97,7 @@ msgstr "Kirjed" #. module: account_payment #: report:payment.order:0 msgid "Used Account" -msgstr "" +msgstr "Kasutajakonto" #. module: account_payment #: field:payment.line,ml_maturity_date:0 @@ -129,7 +129,7 @@ msgstr "" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "Error!" -msgstr "" +msgstr "Viga!" #. module: account_payment #: report:payment.order:0 @@ -161,7 +161,7 @@ msgstr "Viide" #. module: account_payment #: sql_constraint:payment.line:0 msgid "The payment line name must be unique!" -msgstr "" +msgstr "Makse reanimi peab olema unikaalne!" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree @@ -209,7 +209,7 @@ msgstr "Arve tegelik kuupäev" #. module: account_payment #: report:payment.order:0 msgid "Execution Type" -msgstr "" +msgstr "Teostamise tüüp" #. module: account_payment #: selection:payment.line,state:0 @@ -261,7 +261,7 @@ msgstr "" #. module: account_payment #: field:payment.order,date_created:0 msgid "Creation Date" -msgstr "" +msgstr "Loomise kuupäev" #. module: account_payment #: help:payment.mode,journal:0 diff --git a/addons/account_payment/i18n/fa.po b/addons/account_payment/i18n/fa.po index 5b5a0a4dc71..d4727cac21b 100644 --- a/addons/account_payment/i18n/fa.po +++ b/addons/account_payment/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fi.po b/addons/account_payment/i18n/fi.po index 7316d991300..8ff7fdb4c48 100644 --- a/addons/account_payment/i18n/fi.po +++ b/addons/account_payment/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fr.po b/addons/account_payment/i18n/fr.po index 272eb6cf8b3..079abdc8e15 100644 --- a/addons/account_payment/i18n/fr.po +++ b/addons/account_payment/i18n/fr.po @@ -8,14 +8,14 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-03 21:19+0000\n" -"Last-Translator: Frederic Clementi - Camptocamp.com " +"Last-Translator: Frederic Clementi - 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: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #~ msgid "Total debit" #~ msgstr "Débit total" diff --git a/addons/account_payment/i18n/gl.po b/addons/account_payment/i18n/gl.po index 3a0b11c667f..7482e635775 100644 --- a/addons/account_payment/i18n/gl.po +++ b/addons/account_payment/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hi.po b/addons/account_payment/i18n/hi.po index 2238c392fd4..69da97db839 100644 --- a/addons/account_payment/i18n/hi.po +++ b/addons/account_payment/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hr.po b/addons/account_payment/i18n/hr.po index b91101139f8..87a9f84cd42 100644 --- a/addons/account_payment/i18n/hr.po +++ b/addons/account_payment/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po index 806715d470f..d71f5c70434 100644 --- a/addons/account_payment/i18n/hu.po +++ b/addons/account_payment/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/id.po b/addons/account_payment/i18n/id.po index 26bf5c40850..d70da3e715f 100644 --- a/addons/account_payment/i18n/id.po +++ b/addons/account_payment/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/it.po b/addons/account_payment/i18n/it.po index ebd00922541..aee7985a265 100644 --- a/addons/account_payment/i18n/it.po +++ b/addons/account_payment/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-18 18:55+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ja.po b/addons/account_payment/i18n/ja.po index b5a447a2281..279e5440bc5 100644 --- a/addons/account_payment/i18n/ja.po +++ b/addons/account_payment/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -128,7 +128,7 @@ msgstr "" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "Error!" -msgstr "" +msgstr "エラー!" #. module: account_payment #: report:payment.order:0 @@ -218,7 +218,7 @@ msgstr "構造化済" #. module: account_payment #: view:account.bank.statement:0 msgid "Import Payment Lines" -msgstr "" +msgstr "支払明細をインポート" #. module: account_payment #: view:payment.line:0 @@ -258,7 +258,7 @@ msgstr "" #. module: account_payment #: field:payment.order,date_created:0 msgid "Creation Date" -msgstr "" +msgstr "作成日" #. module: account_payment #: help:payment.mode,journal:0 @@ -341,7 +341,7 @@ msgstr "通貨" #. module: account_payment #: view:account.payment.make.payment:0 msgid "Yes" -msgstr "" +msgstr "はい" #. module: account_payment #: help:payment.line,info_owner:0 @@ -364,7 +364,7 @@ msgstr "設定済取引明細書によるアカウント支払" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "There is no partner defined on the entry line." -msgstr "" +msgstr "入力明細に取引先が設定されていません。" #. module: account_payment #: help:payment.mode,name:0 @@ -396,7 +396,7 @@ msgstr "ドラフト" #: view:payment.order:0 #: field:payment.order,state:0 msgid "Status" -msgstr "" +msgstr "状態" #. module: account_payment #: help:payment.line,communication2:0 @@ -443,7 +443,7 @@ msgstr "検索" #. module: account_payment #: field:payment.order,user_id:0 msgid "Responsible" -msgstr "" +msgstr "担当" #. module: account_payment #: field:payment.line,date:0 @@ -458,7 +458,7 @@ msgstr "合計:" #. module: account_payment #: field:payment.order,date_done:0 msgid "Execution Date" -msgstr "" +msgstr "実行日" #. module: account_payment #: view:account.payment.populate.statement:0 @@ -575,7 +575,7 @@ msgstr "通信2" #. module: account_payment #: field:payment.order,date_scheduled:0 msgid "Scheduled Date" -msgstr "" +msgstr "予定日" #. module: account_payment #: view:account.payment.make.payment:0 @@ -675,7 +675,7 @@ msgstr "" #: view:account.payment.populate.statement:0 #: view:payment.order.create:0 msgid "or" -msgstr "" +msgstr "または" #. module: account_payment #: help:payment.mode,bank_id:0 diff --git a/addons/account_payment/i18n/ko.po b/addons/account_payment/i18n/ko.po index 56677490f4f..3059c900813 100644 --- a/addons/account_payment/i18n/ko.po +++ b/addons/account_payment/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lt.po b/addons/account_payment/i18n/lt.po index 530387c4221..8293ed15d85 100644 --- a/addons/account_payment/i18n/lt.po +++ b/addons/account_payment/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lv.po b/addons/account_payment/i18n/lv.po index c82e6d7d4bc..13fd79c5b84 100644 --- a/addons/account_payment/i18n/lv.po +++ b/addons/account_payment/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/mk.po b/addons/account_payment/i18n/mk.po index b83136dbe93..91d1ba6700b 100644 --- a/addons/account_payment/i18n/mk.po +++ b/addons/account_payment/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/mn.po b/addons/account_payment/i18n/mn.po index 22eaa451295..e7b20b5b25f 100644 --- a/addons/account_payment/i18n/mn.po +++ b/addons/account_payment/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nb.po b/addons/account_payment/i18n/nb.po index e7ffd770fe8..2b0f697a948 100644 --- a/addons/account_payment/i18n/nb.po +++ b/addons/account_payment/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl.po b/addons/account_payment/i18n/nl.po index 266aeeadad2..92fbab4aa0b 100644 --- a/addons/account_payment/i18n/nl.po +++ b/addons/account_payment/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po index 4e337c31ae0..80522a686c2 100644 --- a/addons/account_payment/i18n/nl_BE.po +++ b/addons/account_payment/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/oc.po b/addons/account_payment/i18n/oc.po index db087476d6c..18d81f35461 100644 --- a/addons/account_payment/i18n/oc.po +++ b/addons/account_payment/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pl.po b/addons/account_payment/i18n/pl.po index 3a0426526b7..3efec9dde76 100644 --- a/addons/account_payment/i18n/pl.po +++ b/addons/account_payment/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -139,7 +139,7 @@ msgstr "" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "Error!" -msgstr "" +msgstr "Błąd!" #. module: account_payment #: report:payment.order:0 @@ -429,7 +429,7 @@ msgstr "Adres zamawiającego klienta." #. module: account_payment #: view:account.payment.populate.statement:0 msgid "Populate Statement:" -msgstr "" +msgstr "Wypełnij oświadczenie:" #. module: account_payment #: help:payment.order,date_scheduled:0 @@ -668,7 +668,7 @@ msgstr "Informacja zapisu" #. module: account_payment #: model:ir.model,name:account_payment.model_payment_order_create msgid "payment.order.create" -msgstr "" +msgstr "payment.order.create" #. module: account_payment #: field:payment.line,order_id:0 @@ -696,7 +696,7 @@ msgstr "Preferowana data" #: view:account.payment.populate.statement:0 #: view:payment.order.create:0 msgid "or" -msgstr "" +msgstr "lub" #. module: account_payment #: help:payment.mode,bank_id:0 @@ -860,3 +860,26 @@ msgstr "Konto bankowe dla sposobu płatności" #~ "that should be done, keep track of all payment orders and mention the " #~ "invoice reference and the partner the payment should be done for." #~ msgstr "Polecenie zapłaty służy do obsługi płatności." + +#~ msgid "You can not create move line on closed account." +#~ msgstr "Nie możesz utworzyć przesunięcia na zamkniętym koncie." + +#~ msgid "You can not create move line on view account." +#~ msgstr "Nie możesz tworzyć przesunięć w widoku konta." + +#~ msgid "Company must be same for its related account and period." +#~ msgstr "Firma musi odpowiednia do konta i okresu." + +#~ msgid "" +#~ "\n" +#~ "This module provides :\n" +#~ "* a more efficient way to manage invoice payment.\n" +#~ "* a basic mechanism to easily plug various automated payment.\n" +#~ " " +#~ msgstr "" +#~ "\n" +#~ "Ten moduł dostarcza :\n" +#~ "* bardziej efektywny sposób zarządzania płatnościami faktur.\n" +#~ "* podstawowy mechanizm do łatwego wprowadzania rozmaitych automatycznych " +#~ "płatności.\n" +#~ " " diff --git a/addons/account_payment/i18n/pt.po b/addons/account_payment/i18n/pt.po index e4a00b9c8e6..746129afef0 100644 --- a/addons/account_payment/i18n/pt.po +++ b/addons/account_payment/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po index a05eeb21e5f..c5dbc42b5bc 100644 --- a/addons/account_payment/i18n/pt_BR.po +++ b/addons/account_payment/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-11 12:23+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ro.po b/addons/account_payment/i18n/ro.po index 2577dfd4207..b5c1d05ee7e 100644 --- a/addons/account_payment/i18n/ro.po +++ b/addons/account_payment/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ru.po b/addons/account_payment/i18n/ru.po index 143a3304bb9..7726cfd046e 100644 --- a/addons/account_payment/i18n/ru.po +++ b/addons/account_payment/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sl.po b/addons/account_payment/i18n/sl.po index 5db816f2709..f74fdc0fa72 100644 --- a/addons/account_payment/i18n/sl.po +++ b/addons/account_payment/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sq.po b/addons/account_payment/i18n/sq.po index d2cb0e38f3a..c87cddeb7f4 100644 --- a/addons/account_payment/i18n/sq.po +++ b/addons/account_payment/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:47+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:10+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr.po b/addons/account_payment/i18n/sr.po index 05424a843dd..2f7aa35f674 100644 --- a/addons/account_payment/i18n/sr.po +++ b/addons/account_payment/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr@latin.po b/addons/account_payment/i18n/sr@latin.po index e512c34038f..d7485174f2e 100644 --- a/addons/account_payment/i18n/sr@latin.po +++ b/addons/account_payment/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sv.po b/addons/account_payment/i18n/sv.po index e4a5a1db496..ba6d0545ff9 100644 --- a/addons/account_payment/i18n/sv.po +++ b/addons/account_payment/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tlh.po b/addons/account_payment/i18n/tlh.po index dbe06f09e21..4e29ed10d5c 100644 --- a/addons/account_payment/i18n/tlh.po +++ b/addons/account_payment/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tr.po b/addons/account_payment/i18n/tr.po index d581c975c97..350581fec87 100644 --- a/addons/account_payment/i18n/tr.po +++ b/addons/account_payment/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -40,7 +40,7 @@ msgstr "" #. module: account_payment #: field:payment.line,currency:0 msgid "Partner Currency" -msgstr "Paydaş Para Birimi" +msgstr "İş Ortağı Para Birimi" #. module: account_payment #: view:payment.order:0 @@ -330,7 +330,7 @@ msgstr "İletişim Türü" #: field:payment.mode,partner_id:0 #: report:payment.order:0 msgid "Partner" -msgstr "Paydaş" +msgstr "İş Ortağı" #. module: account_payment #: field:payment.line,bank_statement_line_id:0 @@ -360,7 +360,7 @@ msgstr "Evet" #. module: account_payment #: help:payment.line,info_owner:0 msgid "Address of the Main Partner" -msgstr "Ana Paydaş Adresi" +msgstr "Ana İş Ortağı Adresi" #. module: account_payment #: help:payment.line,date:0 @@ -380,7 +380,7 @@ msgstr "Hesap Ödeme Doldurma Cetveli" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "There is no partner defined on the entry line." -msgstr "Giriş kaydında tanımlanmamış paydaş yoktur." +msgstr "Giriş kaydında tanımlanmamış iş ortağı yoktur." #. module: account_payment #: help:payment.mode,name:0 @@ -400,7 +400,7 @@ msgstr "Ödeme Tipi" #. module: account_payment #: help:payment.line,amount_currency:0 msgid "Payment amount in the partner currency" -msgstr "Paydaş para biriminde ödeme tutarı" +msgstr "İş Ortağı para biriminde ödeme tutarı" #. module: account_payment #: view:payment.order:0 @@ -412,7 +412,7 @@ msgstr "Taslak" #: view:payment.order:0 #: field:payment.order,state:0 msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. module: account_payment #: help:payment.line,communication2:0 @@ -475,7 +475,7 @@ msgstr "Toplam:" #. module: account_payment #: field:payment.order,date_done:0 msgid "Execution Date" -msgstr "Çalıtırılma Tarihi" +msgstr "Uygulama Tarihi" #. module: account_payment #: view:account.payment.populate.statement:0 @@ -532,7 +532,7 @@ msgstr "Genel Bilgiler" #: view:payment.order:0 #: selection:payment.order,state:0 msgid "Done" -msgstr "Bitti" +msgstr "Biten" #. module: account_payment #: model:ir.model,name:account_payment.model_account_invoice @@ -582,7 +582,7 @@ msgstr "Ödeme Kalemlerinde Ara" #. module: account_payment #: field:payment.line,amount_currency:0 msgid "Amount in Partner Currency" -msgstr "Paydaş Para Biriminde Tutar" +msgstr "İş Ortağı Para Biriminde Tutar" #. module: account_payment #: field:payment.line,communication2:0 diff --git a/addons/account_payment/i18n/uk.po b/addons/account_payment/i18n/uk.po index a3f8b9289df..eb0aa361ccf 100644 --- a/addons/account_payment/i18n/uk.po +++ b/addons/account_payment/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/vi.po b/addons/account_payment/i18n/vi.po index d51956f3ad3..e77eb8bddb7 100644 --- a/addons/account_payment/i18n/vi.po +++ b/addons/account_payment/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po index 3deedfad5fa..dd4dd525f5e 100644 --- a/addons/account_payment/i18n/zh_CN.po +++ b/addons/account_payment/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:25+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po index 5c206a238c1..6841487e383 100644 --- a/addons/account_payment/i18n/zh_TW.po +++ b/addons/account_payment/i18n/zh_TW.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-08-29 15:27+0000\n" -"Last-Translator: Eric Huang \n" +"PO-Revision-Date: 2013-12-29 09:05+0000\n" +"Last-Translator: Andy Cheng \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:48+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:11+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -28,6 +28,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 點擊以建立付款單。\n" +"

\n" +" 付款單是付款請求,由您的公司給付某張供應商發票或客戶退款。\n" +"

\n" +" " #. module: account_payment #: field:payment.line,currency:0 @@ -106,7 +112,7 @@ msgstr "到期日" #. module: account_payment #: view:payment.order.create:0 msgid "_Add to payment order" -msgstr "" +msgstr "新增至付款單" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_account_payment_populate_statement @@ -127,7 +133,7 @@ msgstr "" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "Error!" -msgstr "" +msgstr "錯誤!" #. module: account_payment #: report:payment.order:0 @@ -148,7 +154,7 @@ msgstr "取消" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree_new msgid "New Payment Order" -msgstr "" +msgstr "新增付款單" #. module: account_payment #: report:payment.order:0 @@ -165,12 +171,12 @@ msgstr "" #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree #: model:ir.ui.menu,name:account_payment.menu_action_payment_order_form msgid "Payment Orders" -msgstr "" +msgstr "付款單" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Directly" -msgstr "" +msgstr "直接" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_line_form @@ -217,7 +223,7 @@ msgstr "" #. module: account_payment #: view:account.bank.statement:0 msgid "Import Payment Lines" -msgstr "" +msgstr "匯入付款細項" #. module: account_payment #: view:payment.line:0 @@ -256,17 +262,17 @@ msgstr "" #. module: account_payment #: field:payment.order,date_created:0 msgid "Creation Date" -msgstr "" +msgstr "建立日期" #. module: account_payment #: help:payment.mode,journal:0 msgid "Bank or Cash Journal for the Payment Mode" -msgstr "" +msgstr "付款模式的銀行或現金日記帳簿" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Fixed date" -msgstr "" +msgstr "固定日期" #. module: account_payment #: field:payment.line,info_partner:0 @@ -282,12 +288,12 @@ msgstr "目的帳號" #. module: account_payment #: view:payment.order:0 msgid "Search Payment Orders" -msgstr "" +msgstr "搜尋付款單" #. module: account_payment #: field:payment.line,create_date:0 msgid "Created" -msgstr "" +msgstr "已建立" #. module: account_payment #: view:payment.order:0 @@ -394,7 +400,7 @@ msgstr "草稿" #: view:payment.order:0 #: field:payment.order,state:0 msgid "Status" -msgstr "" +msgstr "狀態" #. module: account_payment #: help:payment.line,communication2:0 @@ -424,7 +430,7 @@ msgstr "付款明細" #. module: account_payment #: model:ir.model,name:account_payment.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "日記簿項目" #. module: account_payment #: help:payment.line,move_line_id:0 @@ -441,7 +447,7 @@ msgstr "搜尋" #. module: account_payment #: field:payment.order,user_id:0 msgid "Responsible" -msgstr "" +msgstr "負責人" #. module: account_payment #: field:payment.line,date:0 @@ -456,7 +462,7 @@ msgstr "總計:" #. module: account_payment #: field:payment.order,date_done:0 msgid "Execution Date" -msgstr "" +msgstr "執行日期" #. module: account_payment #: view:account.payment.populate.statement:0 @@ -501,7 +507,7 @@ msgstr "您的參考" #. module: account_payment #: view:payment.order:0 msgid "Payment order" -msgstr "" +msgstr "付款單" #. module: account_payment #: view:payment.line:0 @@ -535,7 +541,7 @@ msgstr "取消" #. module: account_payment #: field:payment.line,bank_id:0 msgid "Destination Bank Account" -msgstr "" +msgstr "目的銀行帳戶" #. module: account_payment #: view:payment.line:0 @@ -548,7 +554,7 @@ msgstr "資訊" #: model:ir.model,name:account_payment.model_payment_order #: view:payment.order:0 msgid "Payment Order" -msgstr "" +msgstr "付款單" #. module: account_payment #: help:payment.line,amount:0 @@ -573,7 +579,7 @@ msgstr "通訊 2" #. module: account_payment #: field:payment.order,date_scheduled:0 msgid "Scheduled Date" -msgstr "" +msgstr "預定日期" #. module: account_payment #: view:account.payment.make.payment:0 @@ -584,7 +590,7 @@ msgstr "是否進行付款?" #: view:payment.mode:0 #: field:payment.mode,journal:0 msgid "Journal" -msgstr "" +msgstr "帳簿" #. module: account_payment #: field:payment.mode,bank_id:0 @@ -612,12 +618,12 @@ msgstr "付款" #. module: account_payment #: report:payment.order:0 msgid "Payment Order / Payment" -msgstr "" +msgstr "付款單 / 付款" #. module: account_payment #: field:payment.line,move_line_id:0 msgid "Entry line" -msgstr "" +msgstr "分錄細項" #. module: account_payment #: help:payment.line,communication:0 @@ -640,7 +646,7 @@ msgstr "銀行帳戶" #: view:payment.line:0 #: view:payment.order:0 msgid "Entry Information" -msgstr "" +msgstr "分錄資訊" #. module: account_payment #: model:ir.model,name:account_payment.model_payment_order_create @@ -673,7 +679,7 @@ msgstr "" #: view:account.payment.populate.statement:0 #: view:payment.order.create:0 msgid "or" -msgstr "" +msgstr "或" #. module: account_payment #: help:payment.mode,bank_id:0 diff --git a/addons/account_sequence/i18n/ar.po b/addons/account_sequence/i18n/ar.po index e60513db9db..74bdb053ef7 100644 --- a/addons/account_sequence/i18n/ar.po +++ b/addons/account_sequence/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/bg.po b/addons/account_sequence/i18n/bg.po index 93b6fbe62cc..f15f7584843 100644 --- a/addons/account_sequence/i18n/bg.po +++ b/addons/account_sequence/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/bs.po b/addons/account_sequence/i18n/bs.po index 3837814c91a..a528c1f3f68 100644 --- a/addons/account_sequence/i18n/bs.po +++ b/addons/account_sequence/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-30 05:16+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ca.po b/addons/account_sequence/i18n/ca.po index 24364a62c97..83e1acd6c39 100644 --- a/addons/account_sequence/i18n/ca.po +++ b/addons/account_sequence/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/cs.po b/addons/account_sequence/i18n/cs.po index 8982f40aafb..6950b2a97c8 100644 --- a/addons/account_sequence/i18n/cs.po +++ b/addons/account_sequence/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/da.po b/addons/account_sequence/i18n/da.po index 5fa9f0b53b1..ede615eb08f 100644 --- a/addons/account_sequence/i18n/da.po +++ b/addons/account_sequence/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/de.po b/addons/account_sequence/i18n/de.po index 633766055f8..1fa9340a33b 100644 --- a/addons/account_sequence/i18n/de.po +++ b/addons/account_sequence/i18n/de.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-02-08 08:52+0000\n" -"Last-Translator: Ferdinand @ Camptocamp \n" +"Last-Translator: Ferdinand \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-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -91,8 +91,8 @@ msgid "" "OpenERP will automatically adds some '0' on the left of the 'Next Number' to " "get the required padding size." msgstr "" -"OpenERP wird automatisch '0' vor die \"Nächste Nummer\" stellen um die " -"gewünschte Länge zu erzeugen" +"OpenERP wird automatisch '0' vor die \"Nächste Nummer\" stellen, um die " +"gewünschte Länge zu erzeugen." #. module: account_sequence #: field:account.sequence.installer,name:0 @@ -135,7 +135,7 @@ msgid "" "This sequence will be used to maintain the internal number for the journal " "entries related to this journal." msgstr "" -"Diese Sequenz wird für die Numerierung der Buchungszeilen dieses Journals " +"Diese Sequenz wird für die Nummerierung der Buchungszeilen dieses Journals " "verwendet" #. module: account_sequence @@ -151,7 +151,7 @@ msgstr "Journal" #. module: account_sequence #: view:account.sequence.installer:0 msgid "You can enhance the Account Sequence Application by installing ." -msgstr "erweiterte Konfiguration der Sequenzen der Journale." +msgstr "Erweiterte Konfiguration der Sequenzen der Journale." #~ msgid "" #~ "You cannot create entries on different periods/journals in the same move" diff --git a/addons/account_sequence/i18n/el.po b/addons/account_sequence/i18n/el.po index 5dfc97528cf..526bc2df3e2 100644 --- a/addons/account_sequence/i18n/el.po +++ b/addons/account_sequence/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/en_GB.po b/addons/account_sequence/i18n/en_GB.po index 4dedf232e96..85a2baa2042 100644 --- a/addons/account_sequence/i18n/en_GB.po +++ b/addons/account_sequence/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es.po b/addons/account_sequence/i18n/es.po index 358a617c0dd..bfbc5d7e82f 100644 --- a/addons/account_sequence/i18n/es.po +++ b/addons/account_sequence/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_CR.po b/addons/account_sequence/i18n/es_CR.po index ab5d4156790..5ca394e41e4 100644 --- a/addons/account_sequence/i18n/es_CR.po +++ b/addons/account_sequence/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/es_EC.po b/addons/account_sequence/i18n/es_EC.po index 53c9a0babf3..cbcb4330bbd 100644 --- a/addons/account_sequence/i18n/es_EC.po +++ b/addons/account_sequence/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_PY.po b/addons/account_sequence/i18n/es_PY.po index e5fe5280a29..f75bca15c6a 100644 --- a/addons/account_sequence/i18n/es_PY.po +++ b/addons/account_sequence/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fa.po b/addons/account_sequence/i18n/fa.po index 9d7bc025f0a..941754d4a5f 100644 --- a/addons/account_sequence/i18n/fa.po +++ b/addons/account_sequence/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fr.po b/addons/account_sequence/i18n/fr.po index 0c2e1f81425..7117e8d3b90 100644 --- a/addons/account_sequence/i18n/fr.po +++ b/addons/account_sequence/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-29 17:04+0000\n" -"Last-Translator: Christophe Chauvet - http://www.syleam.fr/ \n" +"Last-Translator: Christophe CHAUVET \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/gl.po b/addons/account_sequence/i18n/gl.po index 6701d384c54..52028ac0836 100644 --- a/addons/account_sequence/i18n/gl.po +++ b/addons/account_sequence/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hr.po b/addons/account_sequence/i18n/hr.po index 9d7a63f97a3..0b563db8cd4 100644 --- a/addons/account_sequence/i18n/hr.po +++ b/addons/account_sequence/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hu.po b/addons/account_sequence/i18n/hu.po index a32e9e8c359..2add4f6d26f 100644 --- a/addons/account_sequence/i18n/hu.po +++ b/addons/account_sequence/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/id.po b/addons/account_sequence/i18n/id.po index e0ab3a8bf70..69368a52c56 100644 --- a/addons/account_sequence/i18n/id.po +++ b/addons/account_sequence/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/it.po b/addons/account_sequence/i18n/it.po index 3d7ef278dc4..17fc36f57c1 100644 --- a/addons/account_sequence/i18n/it.po +++ b/addons/account_sequence/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ja.po b/addons/account_sequence/i18n/ja.po index 5d261d8970b..9198e5e9495 100644 --- a/addons/account_sequence/i18n/ja.po +++ b/addons/account_sequence/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/lv.po b/addons/account_sequence/i18n/lv.po index 8ace09925a6..2c56ffb0b45 100644 --- a/addons/account_sequence/i18n/lv.po +++ b/addons/account_sequence/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/mk.po b/addons/account_sequence/i18n/mk.po index 80522085545..5da93083498 100644 --- a/addons/account_sequence/i18n/mk.po +++ b/addons/account_sequence/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/mn.po b/addons/account_sequence/i18n/mn.po index 5513939cfa0..7706624de1c 100644 --- a/addons/account_sequence/i18n/mn.po +++ b/addons/account_sequence/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -32,7 +32,7 @@ msgstr "Дотоод Дарааллын Дугаар" #. module: account_sequence #: help:account.sequence.installer,number_next:0 msgid "Next number of this sequence" -msgstr "" +msgstr "Энэ дарааллын дараагийн дугаар" #. module: account_sequence #: field:account.sequence.installer,number_next:0 @@ -47,7 +47,7 @@ msgstr "Өсөх тоон утга" #. module: account_sequence #: help:account.sequence.installer,number_increment:0 msgid "The next number of the sequence will be incremented by this number" -msgstr "" +msgstr "Дараагийн дугаарлалт нь энэ утгаар нэмэгдэнэ" #. module: account_sequence #: view:account.sequence.installer:0 @@ -57,17 +57,17 @@ msgstr "" #. module: account_sequence #: view:account.sequence.installer:0 msgid "Configure" -msgstr "" +msgstr "Тохируулга" #. module: account_sequence #: help:account.sequence.installer,suffix:0 msgid "Suffix value of the record for the sequence" -msgstr "" +msgstr "Дарааллын дугаарт тавигдах дагавар утга" #. module: account_sequence #: field:account.sequence.installer,company_id:0 msgid "Company" -msgstr "" +msgstr "Компани" #. module: account_sequence #: field:account.sequence.installer,padding:0 @@ -77,7 +77,7 @@ msgstr "" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "Журналын бичилт" #. module: account_sequence #: field:account.move,internal_sequence_number:0 @@ -95,7 +95,7 @@ msgstr "" #. module: account_sequence #: field:account.sequence.installer,name:0 msgid "Name" -msgstr "" +msgstr "Нэр" #. module: account_sequence #: field:account.journal,internal_sequence_id:0 @@ -105,7 +105,7 @@ msgstr "Дотоод дараалал" #. module: account_sequence #: help:account.sequence.installer,prefix:0 msgid "Prefix value of the record for the sequence" -msgstr "" +msgstr "Дараалалын дугаарт тавигдах угтвар утга" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_move @@ -125,7 +125,7 @@ msgstr "" #. module: account_sequence #: field:account.sequence.installer,prefix:0 msgid "Prefix" -msgstr "" +msgstr "Угтвар" #. module: account_sequence #: help:account.journal,internal_sequence_id:0 @@ -142,7 +142,7 @@ msgstr "" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_journal msgid "Journal" -msgstr "" +msgstr "Журнал" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nb.po b/addons/account_sequence/i18n/nb.po index 072cb075694..972274168da 100644 --- a/addons/account_sequence/i18n/nb.po +++ b/addons/account_sequence/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl.po b/addons/account_sequence/i18n/nl.po index 961907fcb9b..30f874632bf 100644 --- a/addons/account_sequence/i18n/nl.po +++ b/addons/account_sequence/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl_BE.po b/addons/account_sequence/i18n/nl_BE.po index 16ef6cddee9..c271f4b319a 100644 --- a/addons/account_sequence/i18n/nl_BE.po +++ b/addons/account_sequence/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-27 13:36+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \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: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pl.po b/addons/account_sequence/i18n/pl.po index 224c3a14d5f..53be382be86 100644 --- a/addons/account_sequence/i18n/pl.po +++ b/addons/account_sequence/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -141,7 +141,7 @@ msgstr "" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_sequence_installer msgid "account.sequence.installer" -msgstr "" +msgstr "account.sequence.installer" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_journal diff --git a/addons/account_sequence/i18n/pt.po b/addons/account_sequence/i18n/pt.po index 2f4f67da276..6c23c8d2333 100644 --- a/addons/account_sequence/i18n/pt.po +++ b/addons/account_sequence/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pt_BR.po b/addons/account_sequence/i18n/pt_BR.po index 12eb5eecc4b..4150a8f0020 100644 --- a/addons/account_sequence/i18n/pt_BR.po +++ b/addons/account_sequence/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ro.po b/addons/account_sequence/i18n/ro.po index 35e56565792..61c9ad0eb58 100644 --- a/addons/account_sequence/i18n/ro.po +++ b/addons/account_sequence/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ru.po b/addons/account_sequence/i18n/ru.po index bd6a02c2d34..6342d753f7c 100644 --- a/addons/account_sequence/i18n/ru.po +++ b/addons/account_sequence/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sl.po b/addons/account_sequence/i18n/sl.po index 279818e2067..f81936c912d 100644 --- a/addons/account_sequence/i18n/sl.po +++ b/addons/account_sequence/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sq.po b/addons/account_sequence/i18n/sq.po index 32d62c3c40c..5b82f407080 100644 --- a/addons/account_sequence/i18n/sq.po +++ b/addons/account_sequence/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sr@latin.po b/addons/account_sequence/i18n/sr@latin.po index fdd171e9148..562147a1140 100644 --- a/addons/account_sequence/i18n/sr@latin.po +++ b/addons/account_sequence/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sv.po b/addons/account_sequence/i18n/sv.po index e6fdf5dcc25..a5b8b928e75 100644 --- a/addons/account_sequence/i18n/sv.po +++ b/addons/account_sequence/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/tr.po b/addons/account_sequence/i18n/tr.po index efb4647bcd3..f6323a7d2d0 100644 --- a/addons/account_sequence/i18n/tr.po +++ b/addons/account_sequence/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/vi.po b/addons/account_sequence/i18n/vi.po index abc0e9aee46..9b75474d56a 100644 --- a/addons/account_sequence/i18n/vi.po +++ b/addons/account_sequence/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_CN.po b/addons/account_sequence/i18n/zh_CN.po index 490d9c40db5..309e59046f9 100644 --- a/addons/account_sequence/i18n/zh_CN.po +++ b/addons/account_sequence/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_TW.po b/addons/account_sequence/i18n/zh_TW.po index 62db82f3100..423afae8820 100644 --- a/addons/account_sequence/i18n/zh_TW.po +++ b/addons/account_sequence/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_test/i18n/ar.po b/addons/account_test/i18n/ar.po index 778823d7c10..efeb573ad88 100644 --- a/addons/account_test/i18n/ar.po +++ b/addons/account_test/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/cs.po b/addons/account_test/i18n/cs.po index 63fc81052be..74025f16956 100644 --- a/addons/account_test/i18n/cs.po +++ b/addons/account_test/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/da.po b/addons/account_test/i18n/da.po index 3f2b380b8c9..b836d61ba96 100644 --- a/addons/account_test/i18n/da.po +++ b/addons/account_test/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/en_GB.po b/addons/account_test/i18n/en_GB.po index 22a2e2ed855..0c02fc53b85 100644 --- a/addons/account_test/i18n/en_GB.po +++ b/addons/account_test/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/es.po b/addons/account_test/i18n/es.po index 4df28ad40eb..f18ba5ee3f2 100644 --- a/addons/account_test/i18n/es.po +++ b/addons/account_test/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/fr.po b/addons/account_test/i18n/fr.po index 7065c87dd26..36e9cba968a 100644 --- a/addons/account_test/i18n/fr.po +++ b/addons/account_test/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -142,7 +142,7 @@ msgstr "" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_08 msgid "Test 9 : Accounts and partners on account moves" -msgstr "" +msgstr "Test 9 : Comptes et partenaires dans les mouvements de compte" #. module: account_test #: model:ir.actions.act_window,name:account_test.action_accounting_assert @@ -165,12 +165,12 @@ msgstr "" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_06 msgid "Test 6 : Invoices status" -msgstr "" +msgstr "Test 6 : Statut des factures" #. module: account_test #: model:ir.model,name:account_test.model_accounting_assert_test msgid "accounting.assert.test" -msgstr "" +msgstr "accounting.assert.test" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_05 @@ -189,11 +189,13 @@ msgid "" "Check on bank statement that the Closing Balance = Starting Balance + sum of " "statement lines" msgstr "" +"Vérifie sur le relevé bancaire que le solde de fermeture = solde d'ouverture " +"+ somme des lignes de transaction" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_07 msgid "Test 8 : Closing balance on bank statements" -msgstr "" +msgstr "Test 8 : Solde de fermeture des relevés bancaires" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_03 diff --git a/addons/account_test/i18n/hr.po b/addons/account_test/i18n/hr.po index e2b7618b1a7..03f7e92759b 100644 --- a/addons/account_test/i18n/hr.po +++ b/addons/account_test/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/hu.po b/addons/account_test/i18n/hu.po index 464b201346b..91151eb729f 100644 --- a/addons/account_test/i18n/hu.po +++ b/addons/account_test/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/it.po b/addons/account_test/i18n/it.po index b5d38b63eba..cf6fb0b5e77 100644 --- a/addons/account_test/i18n/it.po +++ b/addons/account_test/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/mk.po b/addons/account_test/i18n/mk.po index f8b9099ed8c..b05c1488cb5 100644 --- a/addons/account_test/i18n/mk.po +++ b/addons/account_test/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/mn.po b/addons/account_test/i18n/mn.po index 91379e84555..7678eb5f2ac 100644 --- a/addons/account_test/i18n/mn.po +++ b/addons/account_test/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nb.po b/addons/account_test/i18n/nb.po index 0c80fbb2903..b70e11cb6c5 100644 --- a/addons/account_test/i18n/nb.po +++ b/addons/account_test/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nl.po b/addons/account_test/i18n/nl.po index cd021dd9ab8..b644666b8b9 100644 --- a/addons/account_test/i18n/nl.po +++ b/addons/account_test/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pl.po b/addons/account_test/i18n/pl.po index a281e3dae00..df6e5b560be 100644 --- a/addons/account_test/i18n/pl.po +++ b/addons/account_test/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-16 05:45+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -175,7 +175,7 @@ msgstr "Test 6: Status faktur" #. module: account_test #: model:ir.model,name:account_test.model_accounting_assert_test msgid "accounting.assert.test" -msgstr "" +msgstr "accounting.assert.test" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_05 diff --git a/addons/account_test/i18n/pt.po b/addons/account_test/i18n/pt.po index 80edfca63d8..3872d648df5 100644 --- a/addons/account_test/i18n/pt.po +++ b/addons/account_test/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pt_BR.po b/addons/account_test/i18n/pt_BR.po index 797d6b6ab19..19478c382af 100644 --- a/addons/account_test/i18n/pt_BR.po +++ b/addons/account_test/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/ro.po b/addons/account_test/i18n/ro.po index cfa26cfe5f9..4b8c2333682 100644 --- a/addons/account_test/i18n/ro.po +++ b/addons/account_test/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/ru.po b/addons/account_test/i18n/ru.po index f24a0d63c25..0320c32fcc5 100644 --- a/addons/account_test/i18n/ru.po +++ b/addons/account_test/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/sl.po b/addons/account_test/i18n/sl.po index a840afa5357..9caf77696f4 100644 --- a/addons/account_test/i18n/sl.po +++ b/addons/account_test/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/tr.po b/addons/account_test/i18n/tr.po index 5916ead89c9..da87a52eb5e 100644 --- a/addons/account_test/i18n/tr.po +++ b/addons/account_test/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -189,7 +189,7 @@ msgstr "Test 5.1 : Uzlaştırılmış faturaların Borç ve Alacak hesap kaleml #. module: account_test #: field:accounting.assert.test,code_exec:0 msgid "Python code" -msgstr "Piton kodu" +msgstr "Python kodu" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_07 @@ -247,7 +247,7 @@ msgstr "" #. module: account_test #: view:accounting.assert.test:0 msgid "Python Code" -msgstr "Piton Kodu" +msgstr "Python Kodu" #. module: account_test #: model:ir.actions.act_window,help:account_test.action_accounting_assert @@ -275,7 +275,7 @@ msgstr "Hesap hareketlerindeki genel hesapları ve paydaşları denetleyin" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_06_1 msgid "Test 7: « View  » account type" -msgstr "Test 7: « View  » hesap türü" +msgstr "Test 7: « Görünüm  » hesap türü" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/zh_CN.po b/addons/account_test/i18n/zh_CN.po index 67aeab3353e..2ff698d82cd 100644 --- a/addons/account_test/i18n/zh_CN.po +++ b/addons/account_test/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-25 05:28+0000\n" -"X-Generator: Launchpad (build 16771)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_voucher/account_voucher.py b/addons/account_voucher/account_voucher.py index ef4c9379c82..c9516b6135f 100644 --- a/addons/account_voucher/account_voucher.py +++ b/addons/account_voucher/account_voucher.py @@ -217,7 +217,7 @@ class account_voucher(osv.osv): if context.get('type', 'sale') in ('purchase', 'payment'): nodes = doc.xpath("//field[@name='partner_id']") for node in nodes: - node.set('context', "{'search_default_supplier': 1}") + node.set('context', "{'default_customer': 0, 'search_default_supplier': 1, 'default_supplier': 1}") if context.get('invoice_type','') in ('in_invoice', 'in_refund'): node.set('string', _("Supplier")) res['arch'] = etree.tostring(doc) @@ -746,7 +746,7 @@ class account_voucher(osv.osv): ids = context['move_line_ids'] invoice_id = context.get('invoice_id', False) company_currency = journal.company_id.currency_id.id - move_line_found = False + move_lines_found = [] #order the lines by most old first ids.reverse() @@ -761,21 +761,20 @@ class account_voucher(osv.osv): if line.invoice.id == invoice_id: #if the invoice linked to the voucher line is equal to the invoice_id in context #then we assign the amount on that line, whatever the other voucher lines - move_line_found = line.id - break + move_lines_found.append(line.id) elif currency_id == company_currency: #otherwise treatments is the same but with other field names if line.amount_residual == price: #if the amount residual is equal the amount voucher, we assign it to that voucher #line, whatever the other voucher lines - move_line_found = line.id + move_lines_found.append(line.id) break #otherwise we will split the voucher amount on each line (by most old first) total_credit += line.credit or 0.0 total_debit += line.debit or 0.0 elif currency_id == line.currency_id.id: if line.amount_residual_currency == price: - move_line_found = line.id + move_lines_found.append(line.id) break total_credit += line.credit and line.amount_currency or 0.0 total_debit += line.debit and line.amount_currency or 0.0 @@ -800,15 +799,16 @@ class account_voucher(osv.osv): 'move_line_id':line.id, 'account_id':line.account_id.id, 'amount_original': amount_original, - 'amount': (move_line_found == line.id) and min(abs(price), amount_unreconciled) or 0.0, + 'amount': (line.id in move_lines_found) and min(abs(price), amount_unreconciled) or 0.0, 'date_original':line.date, 'date_due':line.date_maturity, 'amount_unreconciled': amount_unreconciled, 'currency_id': line_currency_id, } + price -= rs['amount'] #in case a corresponding move_line hasn't been found, we now try to assign the voucher amount #on existing invoices: we split voucher amount by most old first, but only for lines in the same currency - if not move_line_found: + if not move_lines_found: if currency_id == line_currency_id: if line.credit: amount = min(amount_unreconciled, abs(total_debit)) @@ -1329,7 +1329,7 @@ class account_voucher(osv.osv): 'date': voucher.date, 'credit': diff > 0 and diff or 0.0, 'debit': diff < 0 and -diff or 0.0, - 'amount_currency': company_currency <> current_currency and (sign * -1 * voucher.writeoff_amount) or False, + 'amount_currency': company_currency <> current_currency and (sign * -1 * voucher.writeoff_amount) or 0.0, 'currency_id': company_currency <> current_currency and current_currency or False, 'analytic_account_id': voucher.analytic_id and voucher.analytic_id.id or False, } diff --git a/addons/account_voucher/i18n/ar.po b/addons/account_voucher/i18n/ar.po index 2f825a14e31..9f04621a8ce 100644 --- a/addons/account_voucher/i18n/ar.po +++ b/addons/account_voucher/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/bg.po b/addons/account_voucher/i18n/bg.po index 5b1c368105d..6d403edef21 100644 --- a/addons/account_voucher/i18n/bg.po +++ b/addons/account_voucher/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po index 309995cd43e..fdc87070dff 100644 --- a/addons/account_voucher/i18n/bs.po +++ b/addons/account_voucher/i18n/bs.po @@ -13,45 +13,45 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Zatvaranje" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" -msgstr "" +msgstr "Otpis" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Ref" -msgstr "" +msgstr "Ref plaćanja" #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" -msgstr "" +msgstr "Ukupan Iznos" #. module: account_voucher #: view:account.voucher:0 msgid "Open Customer Journal Entries" -msgstr "" +msgstr "Otvori dnevničke zapise kupaca" #. module: account_voucher #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Group By..." -msgstr "" +msgstr "Grupiši po..." #. module: account_voucher #: help:account.voucher,writeoff_amount:0 @@ -63,19 +63,19 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Ažuriraj)" #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_pay_bills msgid "Bill Payment" -msgstr "" +msgstr "Plaćanje računa" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice_lines msgid "Import Entries" -msgstr "" +msgstr "Uvoz stavki" #. module: account_voucher #: view:account.voucher:0 @@ -85,32 +85,32 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "March" -msgstr "" +msgstr "Mart" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepročitane poruke" #. module: account_voucher #: view:account.voucher:0 msgid "Pay Bill" -msgstr "" +msgstr "Plati račun" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Jeste li sigurni da želite otkazati ovu potvrdu?" #. module: account_voucher #: view:account.voucher:0 msgid "Set to Draft" -msgstr "" +msgstr "Postavi u pripremu" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "" +msgstr "Referentni broj transakcije" #. module: account_voucher #: view:sale.receipt.report:0 @@ -121,7 +121,7 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Prodavač(ica)" #. module: account_voucher #: view:account.voucher:0 @@ -134,18 +134,18 @@ msgstr "" msgid "" "You can not change the journal as you already reconciled some statement " "lines!" -msgstr "" +msgstr "Ne možete mijenjati dnevnik jer ste već zatvorili neke stavke!" #. module: account_voucher #: view:account.voucher:0 msgid "Validate" -msgstr "" +msgstr "Odobri" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "Plaćanja dobavljaču" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -167,7 +167,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "Protukonto" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -701,7 +701,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Allocation" -msgstr "" +msgstr "Raspodjela" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po index b4c52af180c..ab6c6f20417 100644 --- a/addons/account_voucher/i18n/ca.po +++ b/addons/account_voucher/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/cs.po b/addons/account_voucher/i18n/cs.po index 64e24b57748..452843a29a4 100644 --- a/addons/account_voucher/i18n/cs.po +++ b/addons/account_voucher/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -295,7 +295,7 @@ msgstr "Den" #: view:account.voucher:0 #: field:account.voucher,tax_id:0 msgid "Tax" -msgstr "DPH" +msgstr "Daň" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:971 @@ -526,7 +526,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,tax_amount:0 msgid "Tax Amount" -msgstr "DPH" +msgstr "Částka daně" #. module: account_voucher #: view:sale.receipt.report:0 @@ -693,7 +693,7 @@ msgstr "Koncepty účtenek" #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total_tax:0 msgid "Total With Tax" -msgstr "Celkem s DPH" +msgstr "Celkem s daní" #. module: account_voucher #: view:account.voucher:0 @@ -893,7 +893,7 @@ msgstr "Faktury a nevyřízené transakce" #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total:0 msgid "Total Without Tax" -msgstr "Celkem bez DPH" +msgstr "Celkem bez daně" #. module: account_voucher #: view:account.voucher:0 @@ -1228,7 +1228,7 @@ msgstr "Průměrné zpoždění úhrady" #. module: account_voucher #: field:account.voucher.line,untax_amount:0 msgid "Untax Amount" -msgstr "Částka bez DPH" +msgstr "Částka bez daně" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report diff --git a/addons/account_voucher/i18n/da.po b/addons/account_voucher/i18n/da.po index fedcfad1889..b37514aa9b3 100644 --- a/addons/account_voucher/i18n/da.po +++ b/addons/account_voucher/i18n/da.po @@ -14,24 +14,24 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Udlingning/afstemning" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "Konto konfigurations opsætninger" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" -msgstr "" +msgstr "Afskrivning" #. module: account_voucher #: view:account.voucher:0 @@ -41,7 +41,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" -msgstr "" +msgstr "Totalt beløb" #. module: account_voucher #: view:account.voucher:0 @@ -52,7 +52,7 @@ msgstr "" #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Group By..." -msgstr "" +msgstr "Gruppér efter..." #. module: account_voucher #: help:account.voucher,writeoff_amount:0 @@ -64,7 +64,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Opdatér)" #. module: account_voucher #: view:account.voucher:0 @@ -146,7 +146,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "Leverandør betalinger" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -214,7 +214,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Køb uden varenummer" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -757,7 +757,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Salg uden varenummer" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -855,7 +855,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "Kundebetalinger" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all diff --git a/addons/account_voucher/i18n/de.po b/addons/account_voucher/i18n/de.po index e69c132e593..767472a56c3 100644 --- a/addons/account_voucher/i18n/de.po +++ b/addons/account_voucher/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -96,7 +96,7 @@ msgstr "Ungelesene Nachrichten" #. module: account_voucher #: view:account.voucher:0 msgid "Pay Bill" -msgstr "Bezahle Rechnung" +msgstr "Rechnung zahlen" #. module: account_voucher #: view:account.voucher:0 @@ -106,12 +106,12 @@ msgstr "Sind Sie sicher, dass Sie diesen Beleg löschen wollen ?" #. module: account_voucher #: view:account.voucher:0 msgid "Set to Draft" -msgstr "Entwurf" +msgstr "Auf 'Entwurf' setzen" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "Transaktion Referenz" +msgstr "Transaktion Referenznummer" #. module: account_voucher #: view:sale.receipt.report:0 @@ -148,7 +148,7 @@ msgstr "Bestätigen" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "Lieferanten Bezahlung" +msgstr "Lieferantenzahlung" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -162,17 +162,17 @@ msgid "" " " msgstr "" "

\n" -"                 Klicken Sie zur Erfassung eines Kaufbeleg.\n" +"                 Klicken Sie zur Erfassung eines Kaufbelegs.\n" "               \n" " Wenn der Kaufbeleg bestätigt wird, können Sie die\n" -"                 Lieferanten Bezahlung erfassen.\n" +"                 Lieferantenzahlung erfassen.\n" "               \n" " " #. module: account_voucher #: view:account.voucher:0 msgid "Search Vouchers" -msgstr "Suche Zahlungsbelege" +msgstr "Zahlungsbelege suchen" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 @@ -223,19 +223,19 @@ msgstr "Mitteilungen" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "Einkauf Belege" +msgstr "Einkaufsbelege" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "Journal Buchung" +msgstr "Journalbuchung" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:558 #: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" -msgstr "Fehler !" +msgstr "Fehler!" #. module: account_voucher #: field:account.voucher.line,amount:0 @@ -245,7 +245,7 @@ msgstr "Betrag" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Options" -msgstr "Zahlungsalternativen" +msgstr "Zahlungsoptionen" #. module: account_voucher #: view:account.voucher:0 @@ -282,8 +282,7 @@ msgstr "" "

\n" " Klicken Sie zur Erstellung eines Kaufbeleg.\n" "

\n" -" Wenn Sie den Kaufbeleg bestätigt haben, können Sie optional " -"die\n" +" Wenn Sie den Kaufbeleg bestätigt haben, können Sie die\n" "                 Einzahlung sofort oder später erfassen.\n" "

\n" " " @@ -291,12 +290,12 @@ msgstr "" #. module: account_voucher #: help:account.voucher,message_unread:0 msgid "If checked new messages require your attention." -msgstr "Benachrichtigung erfordert handeln" +msgstr "Wenn aktiviert, erfordern neue Nachrichten Ihr Handeln." #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "Bankauszug Buchungen" +msgstr "Bankauszug-Buchungen" #. module: account_voucher #: view:sale.receipt.report:0 @@ -324,7 +323,7 @@ msgstr "Gegenkonto Kommentar" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 msgid "Analytic Account" -msgstr "Analytisches Konto" +msgstr "Kostenstellenkonto" #. module: account_voucher #: help:account.voucher,message_summary:0 @@ -362,7 +361,7 @@ msgstr "Entwurf" #. module: account_voucher #: view:account.bank.statement:0 msgid "Import Invoices" -msgstr "Importiere Rechnungen" +msgstr "Rechnungen importieren" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1208 @@ -374,7 +373,7 @@ msgstr "Falsche Belegzeile" #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Later or Group Funds" -msgstr "Buche Einzahlung später" +msgstr "Einzahlung später buchen" #. module: account_voucher #: view:account.voucher:0 @@ -391,9 +390,8 @@ msgid "" "settings, to manage automatically the booking of accounting entries related " "to differences between exchange rates." msgstr "" -"Sie sollten in den Einstellungen für die Buchhaltung das 'Kursgewinn Konto' " -"einstellen, um automatisch die entstehenden erforderlichen Buchungen für " -"Wechselkursdifferenzen zu generieren." +"Um Wechselkursdifferenzen automatisch zu buchen, geben Sie hier das Konto " +"für Kurserträge an." #. module: account_voucher #: view:account.voucher:0 @@ -438,7 +436,7 @@ msgstr "Es ist nicht möglich das Journal zu ändern !" #: view:sale.receipt.report:0 #: field:sale.receipt.report,nbr:0 msgid "# of Voucher Lines" -msgstr "# Zahlungsposten" +msgstr "Zahlungsposten" #. module: account_voucher #: view:sale.receipt.report:0 @@ -449,7 +447,7 @@ msgstr "Typ" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "Pro-Forma Belege" +msgstr "Pro-Forma-Belege" #. module: account_voucher #: view:account.voucher:0 @@ -469,7 +467,7 @@ msgid "" " " msgstr "" "

\n" -" Klicken Sie zur Eingabe einer Lieferanten Bezahlung.\n" +" Klicken Sie zur Eingabe einer Lieferantenzahlung.\n" "

\n" " OpenERP unterstützt Sie bei der Bezahlung Ihrer " "Lieferantenrechnungen.\n" @@ -479,7 +477,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "Öffne Lieferantenbuchungen" +msgstr "Lieferantenbuchungen öffnen" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list @@ -506,7 +504,7 @@ msgstr "Beleg mit mehreren Währungen" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "Information Rechnung" +msgstr "Rechnungsinformationen" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -526,7 +524,7 @@ msgid "" "* The 'Cancelled' status is used when user cancel voucher." msgstr "" " * Ein Zahlungsbeleg befindet sich unmittelbar nach der Erstellung im " -"\"Entwurf\" Zustand.\n" +"\"Entwurf\"-Zustand.\n" "* Durch Änderung auf den Status \"Pro-Forma\" wird der Status geändert, aber " "keine Belegnummer vergeben.\n" "* Der Status \"Gebucht\" wird angewendet, wenn ein Benutzer einen " @@ -548,7 +546,7 @@ msgstr "Durch. Zahlungsverzug" #: code:addons/account_voucher/invoice.py:34 #, python-format msgid "Pay Invoice" -msgstr "Zahle Rechnung" +msgstr "Rechnung zahlen" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1249 @@ -620,7 +618,7 @@ msgstr "Zu Prüfen" #: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" -msgstr "Ändern" +msgstr "ändern" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1106 @@ -630,9 +628,8 @@ msgid "" "settings, to manage automatically the booking of accounting entries related " "to differences between exchange rates." msgstr "" -"Sie sollten das Kursverlust Konto in den Einstellungen der Buchhaltung " -"definieren, um automatisch die Buchungen für die Kursverluste aus " -"Wechselkursänderungen zu generieren." +"Um Wechselkursdifferenzen automatisch zu buchen, geben Sie hier das Konto " +"für Kursaufwendungen an." #. module: account_voucher #: view:account.voucher:0 @@ -656,7 +653,7 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "Erfassen Einzahlung" +msgstr "Einzahlung erfassen" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 @@ -695,7 +692,7 @@ msgstr "Kreditoren und Debitoren" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Payment" -msgstr "Zahlung Belege" +msgstr "Zahlungsbelege" #. module: account_voucher #: field:sale.receipt.report,state:0 @@ -735,7 +732,7 @@ msgstr "Konfigurationsfehler !" #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "Entwurf Belege" +msgstr "Belegentwurf" #. module: account_voucher #: view:sale.receipt.report:0 @@ -746,7 +743,7 @@ msgstr "Bruttobetrag" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "Einkauf Belege" +msgstr "Einkaufsbelege" #. module: account_voucher #: view:account.voucher:0 @@ -774,7 +771,7 @@ msgstr "August" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "Bestätige Zahlung" +msgstr "Zahlung bestätigen" #. module: account_voucher #: help:account.voucher,audit:0 @@ -782,8 +779,9 @@ msgid "" "Check this box if you are unsure of that journal entry and if you want to " "note it as 'to be reviewed' by an accounting expert." msgstr "" -"Aktiviere diese Option, wenn Sie bezüglich der Buchung nicht sicher sind und " -"demnach als 'zu überprüfen' durch einen Buchhalter markieren möchten." +"Aktivieren Sie diese Option, wenn Sie bezüglich der Buchung nicht sicher " +"sind und demnach als 'zu überprüfen' durch einen Buchhalter markieren " +"möchten." #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -815,7 +813,7 @@ msgstr "Bezahlt" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "Verkauf Belege" +msgstr "Verkaufsbelege" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -852,13 +850,13 @@ msgstr "Bezahlter Betrag in Unternehmenswährung" #. module: account_voucher #: field:account.bank.statement.line,amount_reconciled:0 msgid "Amount reconciled" -msgstr "Betrag Ausgeglichen" +msgstr "Betrag ausgeglichen" #. module: account_voucher #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Directly" -msgstr "Buche Einzahlung sofort" +msgstr "Einzahlung sofort buchen" #. module: account_voucher #: field:account.voucher.line,type:0 @@ -913,14 +911,14 @@ msgstr "Bitte definieren Sie eine Nummernfolge für dieses Journal." #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "Kunden Einzahlungen" +msgstr "Kundeneinzahlungen" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "Statistik Verkauf Belege" +msgstr "Statistik Verkaufsbelege" #. module: account_voucher #: view:sale.receipt.report:0 @@ -972,7 +970,7 @@ msgstr "Konto entlasten (Haben)" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement msgid "Bank Statement" -msgstr "Bank Auszug" +msgstr "Bankauszug" #. module: account_voucher #: view:account.bank.statement:0 @@ -1022,7 +1020,7 @@ msgstr "Offene Rechnungen Auswahl" #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Pro-forma" -msgstr "Pro-forma" +msgstr "Pro-Forma" #. module: account_voucher #: view:account.voucher:0 @@ -1035,7 +1033,7 @@ msgstr "Buchungsjournale" #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" -"Bitte definieren Sie je ein Standard Soll / Haben Konto für das Journal " +"Bitte definieren Sie je ein Standard Soll-/ Haben-Konto für das Journal " "\"%s\"." #. module: account_voucher @@ -1224,12 +1222,12 @@ msgstr "Nur für Steuern ohne Preis" #. module: account_voucher #: field:account.voucher,type:0 msgid "Default Type" -msgstr "Standard Typ" +msgstr "Standardtyp" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "Nachrichten und Kommunikation Historie" +msgstr "Nachrichten und Kommunikations-Historie" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines @@ -1270,7 +1268,7 @@ msgstr "Tatsächliches Buchungsdatum" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change msgid "Status Change" -msgstr "Status Änderung" +msgstr "Statusänderung" #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -1333,8 +1331,8 @@ msgid "" "inactive, which allow to hide the customer/supplier payment while the bank " "statement isn't confirmed." msgstr "" -"Standardmäßig werden die Zahlungsausgleiche aus Bank Belegen als inaktiv " -"gesetzt, um Kunden / Lieferanten Bezahlung zu verbergen, während der " +"Standardmäßig werden die Zahlungsausgleiche aus Bankbelegen als inaktiv " +"gesetzt, um Kunden-/ Lieferantenzahlungen zu verbergen, während der " "Kontoauszug noch nicht endgültig bestätigt wurde." #~ msgid "On Account of :" diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po index 5bbf7166a58..11b32b8b825 100644 --- a/addons/account_voucher/i18n/el.po +++ b/addons/account_voucher/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/en_GB.po b/addons/account_voucher/i18n/en_GB.po index 5103474d1ea..7164e61fc00 100644 --- a/addons/account_voucher/i18n/en_GB.po +++ b/addons/account_voucher/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po index 6d5cdd5885a..4c0db0b015a 100644 --- a/addons/account_voucher/i18n/es.po +++ b/addons/account_voucher/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -1307,7 +1307,7 @@ msgstr "Empresa" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "Abrir balance" +msgstr "Saldo Inicial" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 923dd1e57e6..7cf7e89dc47 100644 --- a/addons/account_voucher/i18n/es_AR.po +++ b/addons/account_voucher/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_CR.po b/addons/account_voucher/i18n/es_CR.po index f920bbc4189..2920f93b41e 100644 --- a/addons/account_voucher/i18n/es_CR.po +++ b/addons/account_voucher/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/es_EC.po b/addons/account_voucher/i18n/es_EC.po index 769cd93de32..4e8e1ebf9ef 100644 --- a/addons/account_voucher/i18n/es_EC.po +++ b/addons/account_voucher/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_PE.po b/addons/account_voucher/i18n/es_PE.po index 057c611a108..ca11e3fcdf2 100644 --- a/addons/account_voucher/i18n/es_PE.po +++ b/addons/account_voucher/i18n/es_PE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-12 05:15+0000\n" -"X-Generator: Launchpad (build 16869)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_PY.po b/addons/account_voucher/i18n/es_PY.po index 72bf81c375d..bc3bf53cef2 100644 --- a/addons/account_voucher/i18n/es_PY.po +++ b/addons/account_voucher/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/et.po b/addons/account_voucher/i18n/et.po index 2983f9f97dd..9fc8c5c4838 100644 --- a/addons/account_voucher/i18n/et.po +++ b/addons/account_voucher/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #~ msgid "Bank Receipt Voucher" #~ msgstr "Panga sissetulekuorder" diff --git a/addons/account_voucher/i18n/fa.po b/addons/account_voucher/i18n/fa.po index 9bff4c92196..220b90f4444 100644 --- a/addons/account_voucher/i18n/fa.po +++ b/addons/account_voucher/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/fi.po b/addons/account_voucher/i18n/fi.po index b3542ed0ab6..fc322dbc42c 100644 --- a/addons/account_voucher/i18n/fi.po +++ b/addons/account_voucher/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-02 05:23+0000\n" -"X-Generator: Launchpad (build 16856)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po index 9055b6fa255..217157c9a9c 100644 --- a/addons/account_voucher/i18n/fr.po +++ b/addons/account_voucher/i18n/fr.po @@ -8,14 +8,14 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2013-01-03 14:30+0000\n" -"Last-Translator: Frederic Clementi - Camptocamp.com " +"Last-Translator: Frederic Clementi - 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: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/gl.po b/addons/account_voucher/i18n/gl.po index 80ba35f321f..a05a5907a70 100644 --- a/addons/account_voucher/i18n/gl.po +++ b/addons/account_voucher/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/gu.po b/addons/account_voucher/i18n/gu.po index 6c525e4f257..03427e98674 100644 --- a/addons/account_voucher/i18n/gu.po +++ b/addons/account_voucher/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po index 5da77889346..628efa5f2b0 100644 --- a/addons/account_voucher/i18n/hi.po +++ b/addons/account_voucher/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hr.po b/addons/account_voucher/i18n/hr.po index 3e2a6363e08..09284176540 100644 --- a/addons/account_voucher/i18n/hr.po +++ b/addons/account_voucher/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -24,7 +24,7 @@ msgstr "Zatvaranje" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:417 @@ -58,7 +58,7 @@ msgstr "Grupiraj po..." msgid "" "Computed as the difference between the amount stated in the voucher and the " "sum of allocation on the voucher lines." -msgstr "" +msgstr "Izračunato kao razlika između iznosa" #. module: account_voucher #: view:account.voucher:0 @@ -158,6 +158,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog vaučera nabave. \n" +"

\n" +" Nakon potvrđivanja vaučera nabave, moguće je evidentirati\n" +" uplate dobavljaču povezane sa tim vaučerom nabave.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -213,7 +220,7 @@ msgstr "Poruke" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "Potvrde kupovine" +msgstr "Vaučer nabave" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -253,7 +260,7 @@ msgstr "Otkazani" #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" -msgstr "" +msgstr "Morate podesiti konto osnovice i poreza na '%s' porezu!" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_sale_receipt @@ -267,6 +274,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog vaučera prodaje.\n" +"

\n" +" Nakon kreiranje vaučera prodaje, moguće je evidentirati " +"uplate kupaca\n" +" povezane sa ovim vaučerom.\n" +"

\n" +" " #. module: account_voucher #: help:account.voucher,message_unread:0 @@ -370,6 +385,8 @@ msgid "" "settings, to manage automatically the booking of accounting entries related " "to differences between exchange rates." msgstr "" +"Trebali bi podesiti 'Konto pozitivne tečajne razlike' u postavkama " +"računovodstva, za automatsko knjiženje tečajnih razlika." #. module: account_voucher #: view:account.voucher:0 @@ -444,6 +461,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove uplate dobavljaču.\n" +"

\n" +" OpenERP pomaže da jednostavno pratite plaćanja kao i\n" +" preostala salda i dugovanja prema dobavljačima.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -492,6 +516,13 @@ msgid "" "\n" "* The 'Cancelled' status is used when user cancel voucher." msgstr "" +" * 'Nacrt' je status koji se koristi kada korisnik unosi novi nepotvrđeni " +"vaučer. \n" +"* 'Pro-forma' je status koji se koristi kada je vaučer u Pro-forma " +"statusu,dakle vaučeru nije dodijeljen broj. \n" +"* 'Potvrđen' je status koji se koristi kada je vaučer kreiran, dodijeljen mu " +"je broj te je proveden u računovodstvu \n" +"* 'Otkazan' je status koji se koristi kada je vaučer otkazan." #. module: account_voucher #: field:account.voucher,writeoff_amount:0 @@ -541,6 +572,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za evidentiranje nove uplate. \n" +"

\n" +" Unesite kupca i način plaćanja a zatim unesite ručno ili će\n" +" OpenERP predložiti automatski zatvaranje stavaka sa\n" +" računom ili vaučerom.\n" +"

\n" +" " #. module: account_voucher #: field:account.config.settings,expense_currency_exchange_account_id:0 @@ -599,6 +638,8 @@ msgid "" "Fields with internal purpose only that depicts if the voucher is a multi " "currency one or not" msgstr "" +"Polja sa internom svrhom koja samo opisuje ako je vaučer u višestrukoj " +"valuti ili ne." #. module: account_voucher #: view:account.invoice:0 @@ -670,7 +711,7 @@ msgstr "Vaučer je plaćen u potpunosti" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Reconcile Payment Balance" -msgstr "" +msgstr "Zatvori saldo plaćanja" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1067 @@ -751,7 +792,7 @@ msgstr "Lipanj" #. module: account_voucher #: field:account.voucher,payment_rate_currency_id:0 msgid "Payment Rate Currency" -msgstr "" +msgstr "Tečaj plaćanja" #. module: account_voucher #: field:account.voucher,paid:0 @@ -762,7 +803,7 @@ msgstr "Plaćeno" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Vaučer prodaje" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -821,7 +862,7 @@ msgstr "Predhodna plaćanja ?" #: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." -msgstr "" +msgstr "Račun koji želite platiti nije više važeći." #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -867,7 +908,7 @@ msgstr "Plaćanja kupaca" #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "" +msgstr "Analiza potvrda" #. module: account_voucher #: view:sale.receipt.report:0 @@ -924,7 +965,7 @@ msgstr "Izvod banke" #. module: account_voucher #: view:account.bank.statement:0 msgid "onchange_amount(amount)" -msgstr "" +msgstr "onchange_amount(amount)" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -1026,7 +1067,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Posted Vouchers" -msgstr "" +msgstr "Potvrđeni vaučeri" #. module: account_voucher #: field:account.voucher,payment_rate:0 @@ -1080,7 +1121,7 @@ msgstr "Originalni iznos" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "" +msgstr "Vaučer nabave" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1136,7 +1177,7 @@ msgstr "Godina" #: field:account.config.settings,income_currency_exchange_account_id:0 #: field:res.company,income_currency_exchange_account_id:0 msgid "Gain Exchange Rate Account" -msgstr "" +msgstr "Konto pozitivne tečajne razlike" #. module: account_voucher #: selection:account.voucher,type:0 @@ -1191,7 +1232,7 @@ msgstr "" #: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." -msgstr "" +msgstr "Otvorene ili plaćene vaučere nije moguće pobrisati." #. module: account_voucher #: help:account.voucher,date:0 @@ -1323,9 +1364,6 @@ msgstr "" #~ msgid "Unreconciliation" #~ msgstr "Poništavanje zatvaranja IOS-a" -#~ msgid "Sales Receipt" -#~ msgstr "Izdani vaučeri" - #~ msgid "" #~ "The amount of the voucher must be the same amount as the one on the " #~ "statement line" @@ -1402,3 +1440,6 @@ msgstr "" #~ msgstr "" #~ "Ako želite poništiti zatvaranja transakcija, morate također provjeriti sve " #~ "radnje koje su povezane sa tim transakcijama jer neće biti onemogućene" + +#~ msgid "Sales Receipt" +#~ msgstr "Vaučer prodaje" diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po index 16ae25074db..089cb50dc30 100644 --- a/addons/account_voucher/i18n/hu.po +++ b/addons/account_voucher/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/id.po b/addons/account_voucher/i18n/id.po index 102c73c256e..9ab08f36fab 100644 --- a/addons/account_voucher/i18n/id.po +++ b/addons/account_voucher/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/it.po b/addons/account_voucher/i18n/it.po index 71a6436b66d..b1d090fc07b 100644 --- a/addons/account_voucher/i18n/it.po +++ b/addons/account_voucher/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ja.po b/addons/account_voucher/i18n/ja.po index 376089beae5..f57987cc264 100644 --- a/addons/account_voucher/i18n/ja.po +++ b/addons/account_voucher/i18n/ja.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "消込" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings @@ -64,7 +64,7 @@ msgstr "バウチャーで明示された金額とバウチャー行で割り当 #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(更新)" #. module: account_voucher #: view:account.voucher:0 @@ -146,7 +146,7 @@ msgstr "検証" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "仕入先支払" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -159,6 +159,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして購入領収書を登録します。\n" +"

\n" +" 購入領収書が確認されると、これに関連する仕入先支払を記録できます。\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -190,7 +196,7 @@ msgstr "OK" #. module: account_voucher #: field:account.voucher.line,reconcile:0 msgid "Full Reconcile" -msgstr "全消し込み" +msgstr "全消込" #. module: account_voucher #: field:account.voucher,date_due:0 @@ -214,12 +220,12 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "購買記録" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "仕訳帳項目" +msgstr "仕訳項目" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:558 @@ -268,6 +274,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして販売領収書を作成します。\n" +"

\n" +" 販売領収書が確認されると、これに関連する顧客入金を記録できます。\n" +"

\n" +" " #. module: account_voucher #: help:account.voucher,message_unread:0 @@ -305,7 +317,7 @@ msgstr "相手のコメント" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 msgid "Analytic Account" -msgstr "分析アカウント" +msgstr "分析勘定" #. module: account_voucher #: help:account.voucher,message_summary:0 @@ -327,7 +339,7 @@ msgstr "支払情報" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(更新)" #. module: account_voucher #: view:account.voucher:0 @@ -443,6 +455,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして新しい仕入先への支払いを作成してください。\n" +"

\n" +" OpenERPは仕入先への支払いと残高の追跡を簡単にします。\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -462,7 +480,7 @@ msgstr "メモ" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "このレコードを本当に消し込みしキャンセルしますか?" +msgstr "本当にこの消込を取り消しますか?" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 @@ -540,6 +558,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして新しい入金を登録します。\n" +"

\n" +" " +"顧客と支払い方法を入力した後に手動で入金記録を作成するか、OpenERPが自動で請求書や領収書と入金の調整を提案します。\n" +"

\n" +" " #. module: account_voucher #: field:account.config.settings,expense_currency_exchange_account_id:0 @@ -600,7 +625,7 @@ msgstr "バウチャーが多通貨であるかどうかを示す内部目的の #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "支払登録" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 @@ -667,7 +692,7 @@ msgstr "バウチャーは全て支払済です。" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Reconcile Payment Balance" -msgstr "消し込み支払残高" +msgstr "差額を消し込む" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1067 @@ -702,7 +727,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Allocation" -msgstr "割り当て" +msgstr "消込額" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -757,7 +782,7 @@ msgstr "支払済" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "販売記録" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -767,7 +792,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "償却の分析アカウント" +msgstr "差額適用分析勘定" #. module: account_voucher #: field:account.voucher,date:0 @@ -855,14 +880,14 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "顧客入金" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "" +msgstr "販売記録分析" #. module: account_voucher #: view:sale.receipt.report:0 @@ -893,7 +918,7 @@ msgstr "請求日" #. module: account_voucher #: view:account.voucher:0 msgid "Unreconcile" -msgstr "未消し込み" +msgstr "消込取消" #. module: account_voucher #: view:account.voucher:0 @@ -970,7 +995,7 @@ msgstr "プロフォーマ" #: view:account.voucher:0 #: field:account.voucher,move_ids:0 msgid "Journal Items" -msgstr "仕訳帳項目" +msgstr "仕訳項目" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:558 @@ -1071,12 +1096,12 @@ msgstr "貸方" #. module: account_voucher #: field:account.voucher.line,amount_original:0 msgid "Original Amount" -msgstr "元アカウント" +msgstr "計上額" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "領収書" +msgstr "購買記録" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1197,12 +1222,12 @@ msgstr "会計エントリーの有効日" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change msgid "Status Change" -msgstr "" +msgstr "ステータス変化" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Keep Open" -msgstr "開くの継続" +msgstr "オープンのまま残す" #. module: account_voucher #: field:account.voucher,line_ids:0 @@ -1225,7 +1250,7 @@ msgstr "非課税金額" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report msgid "Sales Receipt Statistics" -msgstr "領収書統計" +msgstr "販売記録統計" #. module: account_voucher #: view:account.voucher:0 @@ -1239,7 +1264,7 @@ msgstr "パートナ" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "期首残高" +msgstr "残額" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change @@ -1349,9 +1374,6 @@ msgstr "" #~ msgid "Invalid action !" #~ msgstr "無効なアクションです。" -#~ msgid "Sales Receipt" -#~ msgstr "領収書" - #~ msgid "" #~ "The amount of the voucher must be the same amount as the one on the " #~ "statement line" @@ -1445,3 +1467,6 @@ msgstr "" #~ msgid "Voucher State" #~ msgstr "バウチャー状態" + +#~ msgid "Sales Receipt" +#~ msgstr "販売記録" diff --git a/addons/account_voucher/i18n/ko.po b/addons/account_voucher/i18n/ko.po index 94970bdde25..e10472c85e9 100644 --- a/addons/account_voucher/i18n/ko.po +++ b/addons/account_voucher/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po index 34d6b837910..a2132721134 100644 --- a/addons/account_voucher/i18n/lt.po +++ b/addons/account_voucher/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/mk.po b/addons/account_voucher/i18n/mk.po index 83bf3eda22c..a98b146f47d 100644 --- a/addons/account_voucher/i18n/mk.po +++ b/addons/account_voucher/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/mn.po b/addons/account_voucher/i18n/mn.po index 61c1b80b324..94cf3d2e606 100644 --- a/addons/account_voucher/i18n/mn.po +++ b/addons/account_voucher/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nb.po b/addons/account_voucher/i18n/nb.po index d26bf1919f5..d326ad21182 100644 --- a/addons/account_voucher/i18n/nb.po +++ b/addons/account_voucher/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index 7a70d02b291..71d8c4495df 100644 --- a/addons/account_voucher/i18n/nl.po +++ b/addons/account_voucher/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -1103,7 +1103,7 @@ msgstr "Wisselkoers" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Method" -msgstr "Betalingsmethode" +msgstr "Betaalwijze" #. module: account_voucher #: field:account.voucher.line,name:0 diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index 6c248fba734..9ee44e4be3c 100644 --- a/addons/account_voucher/i18n/nl_BE.po +++ b/addons/account_voucher/i18n/nl_BE.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2013-07-10 09:54+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \n" "Language-Team: Els Van Vossel\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: nl\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/oc.po b/addons/account_voucher/i18n/oc.po index 18ed1087bc5..1c5114694da 100644 --- a/addons/account_voucher/i18n/oc.po +++ b/addons/account_voucher/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po index f0a1530efca..49575ffabad 100644 --- a/addons/account_voucher/i18n/pl.po +++ b/addons/account_voucher/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -24,7 +24,7 @@ msgstr "Uzgodnienie" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:417 @@ -64,7 +64,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Aktualizacja)" #. module: account_voucher #: view:account.voucher:0 @@ -346,7 +346,7 @@ msgstr "Informacje o płatności" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(aktualizuj)" #. module: account_voucher #: view:account.voucher:0 @@ -972,7 +972,7 @@ msgstr "Wyciąg bankowy" #. module: account_voucher #: view:account.bank.statement:0 msgid "onchange_amount(amount)" -msgstr "" +msgstr "onchange_amount(amount)" #. module: account_voucher #: selection:sale.receipt.report,month:0 diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po index bee4dff38ad..d316b803d77 100644 --- a/addons/account_voucher/i18n/pt.po +++ b/addons/account_voucher/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index e729414f06f..cccfd4d385d 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-22 00:55+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index f17d75ff65e..94c8aaae3d8 100644 --- a/addons/account_voucher/i18n/ro.po +++ b/addons/account_voucher/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -35,12 +35,12 @@ msgstr "Pierdere" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Ref" -msgstr "Ref plata" +msgstr "Ref plată" #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" -msgstr "Suma totala" +msgstr "Suma totală" #. module: account_voucher #: view:account.voucher:0 @@ -51,7 +51,7 @@ msgstr "Deschide Inregistrarile Clientului in Registru" #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Group By..." -msgstr "Grupeaza dupa..." +msgstr "Grupare dupa..." #. module: account_voucher #: help:account.voucher,writeoff_amount:0 @@ -149,7 +149,7 @@ msgstr "Valideaza" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "Plati Furnizori" +msgstr "Plăți furnizori" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -162,7 +162,7 @@ msgid "" "

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

\n" " Faceti click pentru a inregistra o chitanta de cumparare. \n" "

\n" " Atunci cand este confirmata o chitanta de cumparare, puteti " @@ -282,7 +282,7 @@ msgid "" "

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

\n" " Faceti click pentru a crea o chitanta de vanzari.\n" "

\n" " Atunci cand o chitanta de vanzari este confirmata, puteti " @@ -470,12 +470,12 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a crea o noua plata a furnizorului.\n" +"

\n" +" Faceți clic pentru a crea o nouă plată a furnizorului.\n" "

\n" -" OpenERP va ajuta sa urmariti cu usurinta platile pe care le " -"faceti si soldurile ramase pe care trebuie sa le platiti furnizorilor " -"umneavoastra.\n" +" OpenERP va ajută să urmăriți cu ușurință plățile pe care le " +"faceți și soldurile rămase pe care trebuie să le plătiți furnizorilor " +"dumneavoastră.\n" "

\n" " " @@ -528,14 +528,14 @@ msgid "" "\n" "* The 'Cancelled' status is used when user cancel voucher." msgstr "" -" * Starea 'Ciorna' este utilizata atunci cand un utilizator inregistreaza un " -"Voucher nou si neconfirmat. \n" -"* 'Pro-forma' este atunci cand voucher-ul este in starea Pro-forma,iar " -"voucher-ul nu are numar. \n" -"* Starea 'Postat' este atunci cand utilizatorul creeaza voucher-ul, este " -"generat un numar pentru voucher si inregistrarile voucher-ului sunt create " -"in cont \n" -"* Starea 'Anulat' este atunci cand utilizatorul anuleaza voucher-ul." +" * Starea 'Ciornă' este utilizata atunci când un utilizator înregistrează o " +"Chitanță nouă și neconfirmată. \n" +"* 'Pro-forma' este atunci când chitanța este în starea Pro-forma, iar " +"chitanța nu are număr. \n" +"* Starea 'Postat' este atunci când utilizatorul creează chitanța, este " +"generat un număr pentru chitanță și sunt create notele contabilitate " +" \n" +"* Starea 'Anulat' este atunci când utilizatorul anulează chitanța." #. module: account_voucher #: field:account.voucher,writeoff_amount:0 @@ -586,7 +586,7 @@ msgid "" "

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

\n" " Faceti click pentru a inregistra o plata noua. \n" "

\n" " Introduceti clientul si metoda de plata, iar apoi sau\n" @@ -874,7 +874,7 @@ msgstr "Dr/Cr" #. module: account_voucher #: field:account.voucher,pre_line:0 msgid "Previous Payments ?" -msgstr "Plati anterioare ?" +msgstr "Plați anterioare ?" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1208 @@ -919,7 +919,7 @@ msgstr "Va rugam sa definiti o secventa in registru." #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "Plati Client" +msgstr "Încasări" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all @@ -936,7 +936,7 @@ msgstr "Grupati dupa Data Facturii" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "Afisati" +msgstr "Postați" #. module: account_voucher #: view:account.voucher:0 @@ -1099,7 +1099,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Posted Vouchers" -msgstr "Vouchere afisate" +msgstr "Chitanțe postate" #. module: account_voucher #: field:account.voucher,payment_rate:0 @@ -1179,7 +1179,7 @@ msgstr "Plata" #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Posted" -msgstr "Afisat" +msgstr "Postat" #. module: account_voucher #: view:account.voucher:0 diff --git a/addons/account_voucher/i18n/ru.po b/addons/account_voucher/i18n/ru.po index a047271ca0c..cd6d30cb2d1 100644 --- a/addons/account_voucher/i18n/ru.po +++ b/addons/account_voucher/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po index d2df474fffa..7b47cff3db1 100644 --- a/addons/account_voucher/i18n/sl.po +++ b/addons/account_voucher/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -378,6 +378,8 @@ msgid "" "settings, to manage automatically the booking of accounting entries related " "to differences between exchange rates." msgstr "" +"Nastaviti morate \"Konto pozitivnih tečajnih razlik\" v nastavitvah " +"računovodstva, da se lahko avtomatično knjižijo tečajne razlike." #. module: account_voucher #: view:account.voucher:0 @@ -508,7 +510,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Difference Amount" -msgstr "" +msgstr "Znesek razlike" #. module: account_voucher #: view:sale.receipt.report:0 @@ -526,7 +528,7 @@ msgstr "Plačilo računa" #: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" -msgstr "" +msgstr "Manjka konto osnove in konto davka!" #. module: account_voucher #: field:account.voucher,tax_amount:0 @@ -562,7 +564,7 @@ msgstr "" #: field:account.config.settings,expense_currency_exchange_account_id:0 #: field:res.company,expense_currency_exchange_account_id:0 msgid "Loss Exchange Rate Account" -msgstr "" +msgstr "Konto negativnih tečajnih razlik" #. module: account_voucher #: view:account.voucher:0 @@ -572,7 +574,7 @@ msgstr "Plačani znesek" #. module: account_voucher #: field:account.voucher,payment_option:0 msgid "Payment Difference" -msgstr "" +msgstr "Razlika plačila" #. module: account_voucher #: view:account.voucher:0 @@ -596,11 +598,13 @@ msgid "" "settings, to manage automatically the booking of accounting entries related " "to differences between exchange rates." msgstr "" +"Nastaviti morate 'Konto negativnih tečajnih razlik' v nastavitvah " +"računovodstva, da se lahko avtomatično knjižijo tečajne razlike." #. module: account_voucher #: view:account.voucher:0 msgid "Expense Lines" -msgstr "" +msgstr "Vrstice stroškov" #. module: account_voucher #: view:account.voucher:0 @@ -612,12 +616,12 @@ msgstr "" msgid "" "Fields with internal purpose only that depicts if the voucher is a multi " "currency one or not" -msgstr "" +msgstr "Polja imajo interni namen, samo za oznako večvalutnosti plačila." #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Zabeleži plačilo" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 @@ -651,12 +655,12 @@ msgstr "Valuta" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Payable and Receivables" -msgstr "" +msgstr "Obveznosti in terjatve" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Payment" -msgstr "" +msgstr "Plačilo računa" #. module: account_voucher #: field:sale.receipt.report,state:0 @@ -679,12 +683,12 @@ msgstr "Družba" #. module: account_voucher #: help:account.voucher,paid:0 msgid "The Voucher has been totally paid." -msgstr "" +msgstr "Račun je v celoti plačan." #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Reconcile Payment Balance" -msgstr "" +msgstr "Uskladi plačila" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1067 @@ -755,7 +759,7 @@ msgstr "Oktober" #: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" -msgstr "" +msgstr "Nastavite zaporedje izbranega dnevnika!" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -765,7 +769,7 @@ msgstr "Junij" #. module: account_voucher #: field:account.voucher,payment_rate_currency_id:0 msgid "Payment Rate Currency" -msgstr "" +msgstr "Tačaj valute plačila" #. module: account_voucher #: field:account.voucher,paid:0 @@ -786,7 +790,7 @@ msgstr "Je sledilec" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "" +msgstr "Analitični konto odpisov" #. module: account_voucher #: field:account.voucher,date:0 @@ -808,7 +812,7 @@ msgstr "Razširjeni filtri..." #. module: account_voucher #: field:account.voucher,paid_amount_in_company_currency:0 msgid "Paid Amount in Company Currency" -msgstr "" +msgstr "Plačan znesek v osnovni valuti" #. module: account_voucher #: field:account.bank.statement.line,amount_reconciled:0 @@ -819,7 +823,7 @@ msgstr "Usklajeni znesek" #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Directly" -msgstr "" +msgstr "Plačaj direkto" #. module: account_voucher #: field:account.voucher.line,type:0 @@ -829,13 +833,13 @@ msgstr "Br/Db" #. module: account_voucher #: field:account.voucher,pre_line:0 msgid "Previous Payments ?" -msgstr "" +msgstr "Predhodna plačila?" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." -msgstr "" +msgstr "Račun, ki ga želite plačati, ni več veljaven." #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -846,7 +850,7 @@ msgstr "Januar" #: model:ir.actions.act_window,name:account_voucher.action_voucher_list #: model:ir.ui.menu,name:account_voucher.menu_encode_entries_by_voucher msgid "Journal Vouchers" -msgstr "" +msgstr "Dnevnik računov" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company @@ -896,7 +900,7 @@ msgstr "Vknjiži" #. module: account_voucher #: view:account.voucher:0 msgid "Invoices and outstanding transactions" -msgstr "" +msgstr "Računi in odprte postavke" #. module: account_voucher #: view:sale.receipt.report:0 @@ -907,7 +911,7 @@ msgstr "Skupno brez davka" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Date" -msgstr "" +msgstr "Datum računa" #. module: account_voucher #: view:account.voucher:0 @@ -918,7 +922,7 @@ msgstr "Prekliči uskladitev" #: view:account.voucher:0 #: model:ir.model,name:account_voucher.model_account_voucher msgid "Accounting Voucher" -msgstr "" +msgstr "Plačilo" #. module: account_voucher #: field:account.voucher,number:0 @@ -1013,7 +1017,7 @@ msgstr "Plačaj" #. module: account_voucher #: view:account.voucher:0 msgid "Currency Options" -msgstr "" +msgstr "Opcije valute" #. module: account_voucher #: help:account.voucher,payment_option:0 @@ -1023,6 +1027,9 @@ msgid "" "either choose to keep open this difference on the partner's account, or " "reconcile it with the payment(s)" msgstr "" +"Izberemo, kaj želimo narediti z morebitnimi razlikami med plačanim zneskom " +"in vsoto prirejenih zneskov. Razlika lahko ostane odprta na partnerjevem " +"kontu ali pa se uskladi z plačili." #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_sale_receipt_report_all @@ -1036,6 +1043,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" S tem poročilom lahko imate pregled fakturiranih zneskov vašemu\n" +" kupcu, prav tako pa tudi zamude pri plačilih. Z orodjem za " +"iskanje lahko\n" +" prilagodite vaše poročilo o računih in tako dobite analizo,\n" +" ki jo potrebujete.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -1089,7 +1104,7 @@ msgstr "V dobro" #. module: account_voucher #: field:account.voucher.line,amount_original:0 msgid "Original Amount" -msgstr "" +msgstr "Izvirni znesek" #. module: account_voucher #: view:account.voucher:0 @@ -1102,6 +1117,8 @@ msgid "" "The specific rate that will be used, in this voucher, between the selected " "currency (in 'Payment Rate Currency' field) and the voucher currency." msgstr "" +"Za to plačilo bo uporabljen tečaj, med izbrano valuto (v polju \"tečaj " +"valute plačila\") in valuto plačila." #. module: account_voucher #: view:account.voucher:0 @@ -1133,7 +1150,7 @@ msgstr "Februar" #. module: account_voucher #: view:account.voucher:0 msgid "Supplier Invoices and Outstanding transactions" -msgstr "" +msgstr "Računi dobaviteljev in neporavnane transakcije" #. module: account_voucher #: field:account.voucher,reference:0 @@ -1150,7 +1167,7 @@ msgstr "Leto" #: field:account.config.settings,income_currency_exchange_account_id:0 #: field:res.company,income_currency_exchange_account_id:0 msgid "Gain Exchange Rate Account" -msgstr "" +msgstr "Konto pozitivnih tečajnih razlik" #. module: account_voucher #: selection:account.voucher,type:0 @@ -1166,7 +1183,7 @@ msgstr "April" #. module: account_voucher #: help:account.voucher,tax_id:0 msgid "Only for tax excluded from price" -msgstr "" +msgstr "Samo za davek, izvzet iz cene" #. module: account_voucher #: field:account.voucher,type:0 @@ -1181,7 +1198,7 @@ msgstr "Sporočila in zgodovina sporočil" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines msgid "Entries by Statement from Invoices" -msgstr "" +msgstr "Vnosi po izpiskih na osnovi računov" #. module: account_voucher #: view:account.voucher:0 @@ -1199,7 +1216,7 @@ msgstr "Vknjižba" msgid "" "The amount of the voucher must be the same amount as the one on the " "statement line." -msgstr "" +msgstr "Znesek plačila mora biti isti kot na izpisku." #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:971 @@ -1210,7 +1227,7 @@ msgstr "Ni možno izbrisati odprtega ali plačanega potrdila." #. module: account_voucher #: help:account.voucher,date:0 msgid "Effective date for accounting entries" -msgstr "" +msgstr "Datum knjiženja" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change @@ -1257,7 +1274,7 @@ msgstr "Partner" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "" +msgstr "Odprto stanje" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change @@ -1278,6 +1295,9 @@ msgid "" "inactive, which allow to hide the customer/supplier payment while the bank " "statement isn't confirmed." msgstr "" +"Privzeto so zapiranja računov, vezanih na osnutke bančnih izpiskov, " +"neaktivna, kar vam omogoča, da kupcu/dobavitelju ne prikazujete plačil, " +"dokler bančni izpisek ni dokončno potrjen." #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Neveljaven XML za arhitekturo pogleda." diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po index e8def82c4ed..d3921acaa43 100644 --- a/addons/account_voucher/i18n/sq.po +++ b/addons/account_voucher/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sr.po b/addons/account_voucher/i18n/sr.po index 6620020f76b..fef2d0695af 100644 --- a/addons/account_voucher/i18n/sr.po +++ b/addons/account_voucher/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sr@latin.po b/addons/account_voucher/i18n/sr@latin.po index 0c00c869e0d..bb9665d3991 100644 --- a/addons/account_voucher/i18n/sr@latin.po +++ b/addons/account_voucher/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sv.po b/addons/account_voucher/i18n/sv.po index 3f81046e70e..aa24fc3665f 100644 --- a/addons/account_voucher/i18n/sv.po +++ b/addons/account_voucher/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/tlh.po b/addons/account_voucher/i18n/tlh.po index f6c27d5f596..eb300b813d5 100644 --- a/addons/account_voucher/i18n/tlh.po +++ b/addons/account_voucher/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index 6e1f6ba3c4a..124d456fd81 100644 --- a/addons/account_voucher/i18n/tr.po +++ b/addons/account_voucher/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -883,7 +883,7 @@ msgstr "Ocak" #: model:ir.actions.act_window,name:account_voucher.action_voucher_list #: model:ir.ui.menu,name:account_voucher.menu_encode_entries_by_voucher msgid "Journal Vouchers" -msgstr "Yevniye Fişleri" +msgstr "Yevmiye Fişleri" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company diff --git a/addons/account_voucher/i18n/uk.po b/addons/account_voucher/i18n/uk.po index 699c57bae81..d09da341f66 100644 --- a/addons/account_voucher/i18n/uk.po +++ b/addons/account_voucher/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/vi.po b/addons/account_voucher/i18n/vi.po index 510596fedbe..f591924a900 100644 --- a/addons/account_voucher/i18n/vi.po +++ b/addons/account_voucher/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index 37ecb87235d..f00c242c678 100644 --- a/addons/account_voucher/i18n/zh_CN.po +++ b/addons/account_voucher/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index 2c78874dd2b..e2d83644ceb 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/i18n/zh_TW.po @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-08-28 02:30+0000\n" -"Last-Translator: Eric Huang \n" +"PO-Revision-Date: 2013-12-29 08:26+0000\n" +"Last-Translator: Andy Cheng \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "核銷" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings @@ -63,7 +63,7 @@ msgstr "計算公式 : 憑證上输入的金额 - 憑證行的金额合計." #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(更新)" #. module: account_voucher #: view:account.voucher:0 @@ -90,7 +90,7 @@ msgstr "三月" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "未讀訊息" #. module: account_voucher #: view:account.voucher:0 @@ -100,7 +100,7 @@ msgstr "付賬" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "你確定要取消這張收據嗎?" #. module: account_voucher #: view:account.voucher:0 @@ -121,7 +121,7 @@ msgstr "依發票年份分組" #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "業務人員" #. module: account_voucher #: view:account.voucher:0 @@ -134,7 +134,7 @@ msgstr "換領券統計" msgid "" "You can not change the journal as you already reconciled some statement " "lines!" -msgstr "" +msgstr "你已經核銷部分項目,所以無法變更日記帳簿!" #. module: account_voucher #: view:account.voucher:0 @@ -145,7 +145,7 @@ msgstr "驗證" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "供應商付款" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -207,13 +207,13 @@ msgstr "備註" #. module: account_voucher #: field:account.voucher,message_ids:0 msgid "Messages" -msgstr "" +msgstr "訊息" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "採購單據" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -225,7 +225,7 @@ msgstr "會計憑證行" #: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" -msgstr "" +msgstr "錯誤!" #. module: account_voucher #: field:account.voucher.line,amount:0 @@ -271,7 +271,7 @@ msgstr "" #. module: account_voucher #: help:account.voucher,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "當有新訊息時通知您。" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line @@ -294,7 +294,7 @@ msgstr "稅" #: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "無效的動作!" #. module: account_voucher #: field:account.voucher,comment:0 @@ -326,7 +326,7 @@ msgstr "付款資料" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(更新)" #. module: account_voucher #: view:account.voucher:0 @@ -395,7 +395,7 @@ msgstr "供應商換領券" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "關注者" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -406,7 +406,7 @@ msgstr "借方" #: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" -msgstr "" +msgstr "無法變更日記帳簿!" #. module: account_voucher #: view:sale.receipt.report:0 @@ -544,7 +544,7 @@ msgstr "" #: field:account.config.settings,expense_currency_exchange_account_id:0 #: field:res.company,expense_currency_exchange_account_id:0 msgid "Loss Exchange Rate Account" -msgstr "" +msgstr "匯損科目" #. module: account_voucher #: view:account.voucher:0 @@ -587,7 +587,7 @@ msgstr "支出明細" #. module: account_voucher #: view:account.voucher:0 msgid "Sale voucher" -msgstr "" +msgstr "銷售單據" #. module: account_voucher #: help:account.voucher,is_multi_currency:0 @@ -599,7 +599,7 @@ msgstr "此字段由系統內部使用,區分該憑證是否涉及外幣" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "登記付款紀錄" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 @@ -638,17 +638,17 @@ msgstr "應收應付" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Payment" -msgstr "" +msgstr "付款單據" #. module: account_voucher #: field:sale.receipt.report,state:0 msgid "Voucher Status" -msgstr "" +msgstr "單據狀態" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile this record?" -msgstr "" +msgstr "你是否要取消核銷此紀錄?" #. module: account_voucher #: field:account.voucher,company_id:0 @@ -672,7 +672,7 @@ msgstr "核銷付款餘額" #: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" -msgstr "" +msgstr "設置錯誤!" #. module: account_voucher #: view:account.voucher:0 @@ -689,14 +689,14 @@ msgstr "連稅總額" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "" +msgstr "採購單據" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "" +msgstr "狀態" #. module: account_voucher #: view:account.voucher:0 @@ -707,7 +707,7 @@ msgstr "分配" #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "or" -msgstr "" +msgstr "或" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -717,7 +717,7 @@ msgstr "八月" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "認可付款" #. module: account_voucher #: help:account.voucher,audit:0 @@ -756,12 +756,12 @@ msgstr "已付款" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "銷售收據" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "為關注者" #. module: account_voucher #: field:account.voucher,analytic_id:0 @@ -815,7 +815,7 @@ msgstr "預付款?" #: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." -msgstr "" +msgstr "你要付款的發票已經不再有效。" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -836,12 +836,12 @@ msgstr "公司" #. module: account_voucher #: field:account.voucher,message_summary:0 msgid "Summary" -msgstr "" +msgstr "摘要" #. module: account_voucher #: field:account.voucher,active:0 msgid "Active" -msgstr "" +msgstr "啟用" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1074 @@ -854,14 +854,14 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "客戶付款" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "" +msgstr "銷售收據分析" #. module: account_voucher #: view:sale.receipt.report:0 @@ -956,7 +956,7 @@ msgstr "取消" #. module: account_voucher #: model:ir.actions.client,name:account_voucher.action_client_invoice_menu msgid "Open Invoicing Menu" -msgstr "" +msgstr "開啟發票開立選單" #. module: account_voucher #: selection:account.voucher,state:0 @@ -1044,7 +1044,7 @@ msgstr "五月" #. module: account_voucher #: view:account.voucher:0 msgid "Sale Receipt" -msgstr "" +msgstr "銷售收據" #. module: account_voucher #: view:account.voucher:0 @@ -1129,7 +1129,7 @@ msgstr "年份" #: field:account.config.settings,income_currency_exchange_account_id:0 #: field:res.company,income_currency_exchange_account_id:0 msgid "Gain Exchange Rate Account" -msgstr "" +msgstr "匯益科目" #. module: account_voucher #: selection:account.voucher,type:0 @@ -1155,7 +1155,7 @@ msgstr "預設類型" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "訊息及聯絡紀錄" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines @@ -1194,7 +1194,7 @@ msgstr "會計分錄的生效日期" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change msgid "Status Change" -msgstr "" +msgstr "狀態變更" #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -1241,14 +1241,14 @@ msgstr "未結餘額" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change msgid "Status changed" -msgstr "" +msgstr "狀態已變更" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1106 #: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" -msgstr "" +msgstr "設置不夠完整!" #. module: account_voucher #: help:account.voucher,active:0 diff --git a/addons/account_voucher/report/account_voucher_sales_receipt_view.xml b/addons/account_voucher/report/account_voucher_sales_receipt_view.xml index d0f696c2f7e..38b5423a7d6 100644 --- a/addons/account_voucher/report/account_voucher_sales_receipt_view.xml +++ b/addons/account_voucher/report/account_voucher_sales_receipt_view.xml @@ -2,7 +2,7 @@ - + sale.receipt.report.graph sale.receipt.report - + - + @@ -77,7 +77,7 @@ Sales Receipts Analysis sale.receipt.report form - tree,graph + graph {'search_default_year':1,'search_default_month':1,'search_default_current':1, 'search_default_partner':1, 'search_default_customer':1, 'group_by':[], 'group_by_no_leaf':1,} diff --git a/addons/analytic/analytic.py b/addons/analytic/analytic.py index 14c8f712e81..4f1de653ae1 100644 --- a/addons/analytic/analytic.py +++ b/addons/analytic/analytic.py @@ -194,7 +194,7 @@ class account_analytic_account(osv.osv): 'user_id': fields.many2one('res.users', 'Project Manager', track_visibility='onchange'), 'manager_id': fields.many2one('res.users', 'Account Manager', track_visibility='onchange'), 'date_start': fields.date('Start Date'), - 'date': fields.date('End Date', select=True, track_visibility='onchange'), + 'date': fields.date('Expiration Date', select=True, track_visibility='onchange'), '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'),('pending','To Renew'),('close','Closed'),('cancelled', 'Cancelled')], '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 diff --git a/addons/analytic/i18n/ar.po b/addons/analytic/i18n/ar.po index a7481317305..bc6eca7826a 100644 --- a/addons/analytic/i18n/ar.po +++ b/addons/analytic/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/bg.po b/addons/analytic/i18n/bg.po index b9a0c119254..7e7f1905c7d 100644 --- a/addons/analytic/i18n/bg.po +++ b/addons/analytic/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po index 878cd7c6a33..eafd16b9f7f 100644 --- a/addons/analytic/i18n/bs.po +++ b/addons/analytic/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -25,13 +25,13 @@ msgstr "Pod računi" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "" +msgstr "U toku" #. module: analytic #: code:addons/analytic/analytic.py:229 #, python-format msgid "Contract: " -msgstr "" +msgstr "Ugovor: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -42,7 +42,7 @@ msgstr "Predložak." #: view:account.analytic.account:0 #: field:account.analytic.account,date:0 msgid "End Date" -msgstr "" +msgstr "Krajnji datum" #. module: analytic #: help:account.analytic.line,unit_amount:0 @@ -66,6 +66,14 @@ msgid "" "The special type 'Template of Contract' allows you to define a template with " "default data that you can reuse easily." msgstr "" +"Ukoliko odaberete tip pogled, to znači da nećete dozvoliti kreiranje " +"dnevničkih zapisa koristeći taj konto.\n" +"Tip 'Analitički konto' stoji za obična konta koja jedino želite da koristite " +"u računovodstvu.\n" +"Ako odaberete ugovor ili projekat, nudi Vam se mogućnost da upravljate " +"validnosti i opcijama fakturisanja za ovaj konto.\n" +"Specijalni tip 'Prijedlog ugovora' dozvoljava Vam da definišete prijedlog sa " +"zadatim podatcima koje možete da jednostavno ponovno iskoristite." #. module: analytic #: view:account.analytic.account:0 @@ -80,16 +88,25 @@ msgid "" "the\n" " customer." msgstr "" +"Jednom kada je završni datum ugovora\n" +" prosljeđen ili maksimalan broj " +"jedinica\n" +" servisa (npr.: ugovor o održavanju) " +"je\n" +" dostignut, menadžer računovodstva je " +"\n" +" obavješten emailom da obnovi ugovor\n" +" sa kupcem." #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "" +msgstr "Ugovor ili projekt" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "" +msgstr "Naziv konta / ugovora" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -99,7 +116,7 @@ msgstr "Upravitelj računa" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Pratioci" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +126,7 @@ msgstr "Zatvorena" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending msgid "Contract to Renew" -msgstr "" +msgstr "Ugovor za obnovu" #. module: analytic #: selection:account.analytic.account,state:0 @@ -119,18 +136,18 @@ msgstr "Nova" #. module: analytic #: field:account.analytic.account,user_id:0 msgid "Project Manager" -msgstr "" +msgstr "Rukovodilac projekta" #. module: analytic #: field:account.analytic.account,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: analytic #: code:addons/analytic/analytic.py:271 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line @@ -146,12 +163,12 @@ msgstr "Opis" #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepročitane poruke" #. module: analytic #: constraint:account.analytic.account:0 msgid "Error! You cannot create recursive analytic accounts." -msgstr "" +msgstr "Greška ! Ne možete kreirati rekurzivna analitička konta." #. module: analytic #: field:account.analytic.account,company_id:0 @@ -162,12 +179,12 @@ msgstr "Poduzeće" #. module: analytic #: view:account.analytic.account:0 msgid "Renewal" -msgstr "" +msgstr "Obnova" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Poruke i istorija komunikacije" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened @@ -180,6 +197,8 @@ 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 "" +"Postavlja viši limit vremena na ugovoreni rad, bazirano na vremenskim " +"listovima. (na primjer, broj sati u limitiranom ugovoru održavanja)" #. module: analytic #: code:addons/analytic/analytic.py:160 @@ -192,11 +211,17 @@ msgid "" "consolidation purposes of several companies charts with different " "currencies, for example." msgstr "" +"Ako postavite kompaniju, odabrana valuta mora da bude ista kao i njegova " +"valuta. \n" +"Možete da uklonite pripadajuću kompaniju, i tako promjenite valutu, samo na " +"analitičkim kontima tipa 'pogled'. Ovo stvarno može biti korisno za potrebe " +"konsolidacije nekoliko kontnih planova kompanija sa različitim valutama, na " +"primjer." #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je pratilac" #. module: analytic #: field:account.analytic.line,user_id:0 @@ -216,12 +241,12 @@ msgstr "Datum" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed msgid "Contract Finished" -msgstr "" +msgstr "Ugovor završen" #. module: analytic #: view:account.analytic.account:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Pravila i Uslovi" #. module: analytic #: help:account.analytic.line,amount:0 @@ -229,21 +254,23 @@ 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(bam)." #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "" +msgstr "Kupac" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 msgid "Account Hierarchy" -msgstr "" +msgstr "Hijerarhija konta" #. module: analytic #: field:account.analytic.account,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Poruke" #. module: analytic #: field:account.analytic.account,parent_id:0 @@ -253,23 +280,23 @@ msgstr "Nadređeni analitički konto" #. module: analytic #: view:account.analytic.account:0 msgid "Contract Information" -msgstr "" +msgstr "Informacije o ugovoru" #. module: analytic #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "" +msgstr "Predložak ugovora" #. module: analytic #: field:account.analytic.account,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Rezime" #. module: analytic #: field:account.analytic.account,quantity_max:0 msgid "Prepaid Service Units" -msgstr "" +msgstr "Jedinica unaprijed plaćene usluge" #. module: analytic #: field:account.analytic.account,credit:0 @@ -279,7 +306,7 @@ msgstr "Potraživanje" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened msgid "Contract Opened" -msgstr "" +msgstr "Ugovor je otvoren" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_closed @@ -294,7 +321,7 @@ msgstr "Otkazano" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Analytic View" -msgstr "" +msgstr "Analitički pogled" #. module: analytic #: field:account.analytic.account,balance:0 @@ -304,12 +331,12 @@ msgstr "Saldo" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ako je označeno, nove poruke će zahtjevati vašu pažnju." #. module: analytic #: selection:account.analytic.account,state:0 msgid "To Renew" -msgstr "" +msgstr "Za obnovu" #. module: analytic #: field:account.analytic.account,quantity:0 @@ -325,18 +352,18 @@ msgstr "Završni datum" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Referenca" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Greška!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting msgid "Analytic Accounting" -msgstr "" +msgstr "Analitičko računovodstvo" #. module: analytic #: field:account.analytic.line,amount:0 @@ -359,7 +386,7 @@ msgstr "Analitički konto" #. module: analytic #: field:account.analytic.account,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Valuta" #. module: analytic #: help:account.analytic.account,message_summary:0 @@ -367,21 +394,23 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sadrži sažetak konverzacije (broj poruka,..). Ovaj sažetak je u html formatu " +"da bi mogao biti ubačen u kanban pogled." #. module: analytic #: field:account.analytic.account,type:0 msgid "Type of Account" -msgstr "" +msgstr "Tip konta" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Početni Datum" #. module: analytic #: constraint:account.analytic.line:0 msgid "You cannot create analytic line on view account." -msgstr "" +msgstr "Ne možete da kreirate stavke analitike na kontima tipa pogled" #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/ca.po b/addons/analytic/i18n/ca.po index dc9659b5a0f..f0ac62435fe 100644 --- a/addons/analytic/i18n/ca.po +++ b/addons/analytic/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/cs.po b/addons/analytic/i18n/cs.po index 346de248cab..98d94a2aeae 100644 --- a/addons/analytic/i18n/cs.po +++ b/addons/analytic/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Language: czech\n" #. module: analytic diff --git a/addons/analytic/i18n/da.po b/addons/analytic/i18n/da.po index 89fdcad31d2..8d952af6ae3 100644 --- a/addons/analytic/i18n/da.po +++ b/addons/analytic/i18n/da.po @@ -14,45 +14,45 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 msgid "Child Accounts" -msgstr "" +msgstr "Under-konti" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "" +msgstr "I gang" #. module: analytic #: code:addons/analytic/analytic.py:229 #, python-format msgid "Contract: " -msgstr "" +msgstr "Kontrakt " #. module: analytic #: selection:account.analytic.account,state:0 msgid "Template" -msgstr "" +msgstr "Skabelon" #. module: analytic #: view:account.analytic.account:0 #: field:account.analytic.account,date:0 msgid "End Date" -msgstr "" +msgstr "Slut dato" #. module: analytic #: help:account.analytic.line,unit_amount:0 msgid "Specifies the amount of quantity to count." -msgstr "" +msgstr "Oplyser sammentællingsantallet." #. module: analytic #: field:account.analytic.account,debit:0 msgid "Debit" -msgstr "" +msgstr "Debet" #. module: analytic #: help:account.analytic.account,type:0 @@ -84,47 +84,47 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "" +msgstr "Kontrakt eller projekt" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "" +msgstr "Konto/kontakt navn" #. module: analytic #: field:account.analytic.account,manager_id:0 msgid "Account Manager" -msgstr "" +msgstr "Projektleder" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Followers" #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" -msgstr "" +msgstr "Lukket" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending msgid "Contract to Renew" -msgstr "" +msgstr "Kontrakt der skal fornys" #. module: analytic #: selection:account.analytic.account,state:0 msgid "New" -msgstr "" +msgstr "Ny" #. module: analytic #: field:account.analytic.account,user_id:0 msgid "Project Manager" -msgstr "" +msgstr "Projektleder" #. module: analytic #: field:account.analytic.account,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: analytic #: code:addons/analytic/analytic.py:271 @@ -135,39 +135,39 @@ msgstr "" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Analytisk linie" #. module: analytic #: field:account.analytic.account,description:0 #: field:account.analytic.line,name:0 msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Ulæste beskeder" #. module: analytic #: constraint:account.analytic.account:0 msgid "Error! You cannot create recursive analytic accounts." -msgstr "" +msgstr "Fejl! Du kan ikke oprette rekursive analytiske konti." #. module: analytic #: field:account.analytic.account,company_id:0 #: field:account.analytic.line,company_id:0 msgid "Company" -msgstr "" +msgstr "Firma" #. module: analytic #: view:account.analytic.account:0 msgid "Renewal" -msgstr "" +msgstr "Fornyelse" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Besked- og kommunikations historik" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened @@ -180,6 +180,8 @@ 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 "" +"Definerer max. timer for arbejde på kontrakten, baseret på timeskemaet. " +"(f.eks. antal timer på en begrænset support kontrakt)." #. module: analytic #: code:addons/analytic/analytic.py:160 @@ -196,12 +198,12 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Er en \"follower\"" #. module: analytic #: field:account.analytic.line,user_id:0 msgid "User" -msgstr "" +msgstr "Bruger" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_pending @@ -211,17 +213,17 @@ msgstr "" #. module: analytic #: field:account.analytic.line,date:0 msgid "Date" -msgstr "" +msgstr "Dato" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed msgid "Contract Finished" -msgstr "" +msgstr "Kontrakt afsluttet" #. module: analytic #: view:account.analytic.account:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Vilkår og betingelser" #. module: analytic #: help:account.analytic.line,amount:0 @@ -233,53 +235,53 @@ msgstr "" #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "" +msgstr "Kunde" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 msgid "Account Hierarchy" -msgstr "" +msgstr "Kontohierarki" #. module: analytic #: field:account.analytic.account,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Beskeder" #. module: analytic #: field:account.analytic.account,parent_id:0 msgid "Parent Analytic Account" -msgstr "" +msgstr "Hoved/moder analyse konto" #. module: analytic #: view:account.analytic.account:0 msgid "Contract Information" -msgstr "" +msgstr "Kontrakt information" #. module: analytic #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "" +msgstr "Kontrakt skabelon" #. module: analytic #: field:account.analytic.account,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Sammendrag" #. module: analytic #: field:account.analytic.account,quantity_max:0 msgid "Prepaid Service Units" -msgstr "" +msgstr "Forudbetalte services" #. module: analytic #: field:account.analytic.account,credit:0 msgid "Credit" -msgstr "" +msgstr "Kredit" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened msgid "Contract Opened" -msgstr "" +msgstr "Kontrakt åbnet" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_closed @@ -289,33 +291,33 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 msgid "Cancelled" -msgstr "" +msgstr "Annulleret" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Analytic View" -msgstr "" +msgstr "Analytisk View" #. module: analytic #: field:account.analytic.account,balance:0 msgid "Balance" -msgstr "" +msgstr "Balance" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Hvis afmærket, kræver nye beskeder din attention" #. module: analytic #: selection:account.analytic.account,state:0 msgid "To Renew" -msgstr "" +msgstr "Til fornyelse" #. module: analytic #: field:account.analytic.account,quantity:0 #: field:account.analytic.line,unit_amount:0 msgid "Quantity" -msgstr "" +msgstr "Antal" #. module: analytic #: field:account.analytic.account,date:0 @@ -325,23 +327,23 @@ msgstr "" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Reference" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Fejl!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting msgid "Analytic Accounting" -msgstr "" +msgstr "Analytisk regnskab" #. module: analytic #: field:account.analytic.line,amount:0 msgid "Amount" -msgstr "" +msgstr "Mængde/beløb" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -354,19 +356,19 @@ msgstr "" #: field:account.analytic.line,account_id:0 #: model:ir.model,name:analytic.model_account_analytic_account msgid "Analytic Account" -msgstr "" +msgstr "Analyse konto" #. module: analytic #: field:account.analytic.account,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Valuta" #. module: analytic #: help:account.analytic.account,message_summary:0 msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." -msgstr "" +msgstr "Indeholder chat sammendraget" #. module: analytic #: field:account.analytic.account,type:0 @@ -376,14 +378,14 @@ msgstr "" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Start dato" #. module: analytic #: constraint:account.analytic.line:0 msgid "You cannot create analytic line on view account." -msgstr "" +msgstr "Du kan ikke oprette en analytisk linie på en overskrift konto." #. module: analytic #: field:account.analytic.account,line_ids:0 msgid "Analytic Entries" -msgstr "" +msgstr "Analytiske posteringer" diff --git a/addons/analytic/i18n/de.po b/addons/analytic/i18n/de.po index 381844c8aae..e4787fbe029 100644 --- a/addons/analytic/i18n/de.po +++ b/addons/analytic/i18n/de.po @@ -15,13 +15,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 msgid "Child Accounts" -msgstr "untergordnete Kostenstelle" +msgstr "Untergeordnete Kostenstelle" #. module: analytic #: selection:account.analytic.account,state:0 @@ -43,7 +43,7 @@ msgstr "Vorlage" #: view:account.analytic.account:0 #: field:account.analytic.account,date:0 msgid "End Date" -msgstr "Ende Datum" +msgstr "Enddatum" #. module: analytic #: help:account.analytic.line,unit_amount:0 @@ -73,8 +73,8 @@ msgstr "" "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." +"verwalten. In einer 'Vertragsvorlage' hinterlegen Sie Standarddaten, die Sie " +"immer wieder verwenden können." #. module: analytic #: view:account.analytic.account:0 @@ -89,10 +89,10 @@ msgid "" "the\n" " customer." msgstr "" -"Sobald das Ende Datum des Vertrags überschritten wird oder die maximale " -"Anzahl von Service Einheiten (beispielsweise in einem Support-Vertrag) " -"abgeleistet wurde, wird der Projekt Manager per EMail benachrichtigt, um den " -"Vertrag mit dem Kunden zu erneuern." +"Sobald das Enddatum des Vertrags überschritten wird oder die maximale Anzahl " +"von Serviceeinheiten (beispielsweise in einem Support-Vertrag) abgeleistet " +"wurde, wird der Projektmanager per E-Mail benachrichtigt, um den Vertrag mit " +" dem Kunden zu erneuern." #. module: analytic #: selection:account.analytic.account,type:0 @@ -132,7 +132,7 @@ msgstr "Neu" #. module: analytic #: field:account.analytic.account,user_id:0 msgid "Project Manager" -msgstr "Projekt Manager" +msgstr "Projektmanager" #. module: analytic #: field:account.analytic.account,state:0 @@ -148,7 +148,7 @@ msgstr "%s (Kopie)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line msgid "Analytic Line" -msgstr "Kostenstellen Buchung" +msgstr "Kostenstellen-Buchung" #. module: analytic #: field:account.analytic.account,description:0 @@ -180,7 +180,7 @@ msgstr "Erneuerung" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "Nachrichten und Kommunikation" +msgstr "Nachrichten und Kommunikations-Historie" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened @@ -249,8 +249,8 @@ msgid "" "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." +"Anschaffungskosten des Produkts. Die Angabe erfolgt immer in der " +"Standardwährung des Unternehmens." #. module: analytic #: field:account.analytic.account,partner_id:0 @@ -260,7 +260,7 @@ msgstr "Kunde" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 msgid "Account Hierarchy" -msgstr "Kostenstellen Hierachie" +msgstr "Kostenstellen-Hierachie" #. module: analytic #: field:account.analytic.account,message_ids:0 @@ -275,13 +275,13 @@ msgstr "Übergeordnete Kostenstelle" #. module: analytic #: view:account.analytic.account:0 msgid "Contract Information" -msgstr "Vertrag Informationen" +msgstr "Vertragsinformationen" #. module: analytic #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "Vertrag Vorlage" +msgstr "Vertragsvorlage" #. module: analytic #: field:account.analytic.account,message_summary:0 @@ -316,7 +316,7 @@ msgstr "Abgebrochen" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Analytic View" -msgstr "Kostenstelle Ansicht" +msgstr "Kostenstellen-Ansicht" #. module: analytic #: field:account.analytic.account,balance:0 @@ -326,12 +326,12 @@ msgstr "Saldo" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "Benachrichtigung erfordert handeln" +msgstr "Wenn aktiviert, erfordern neue Nachrichten Ihr Handeln." #. module: analytic #: selection:account.analytic.account,state:0 msgid "To Renew" -msgstr "Zu Erneuern" +msgstr "Zu erneuern" #. module: analytic #: field:account.analytic.account,quantity:0 @@ -353,7 +353,7 @@ msgstr "Kostenstellennummer" #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "Fehler !" +msgstr "Fehler!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting @@ -390,7 +390,7 @@ msgid "" "directly in html format in order to be inserted in kanban views." msgstr "" "Beinhaltet die Chatter Zusammenfassung (Anzahl der Nachrichten, ...). Diese " -"Zusammenfassung ist im HTML-Format, um in Kanban Karten Ansichten eingefügt " +"Zusammenfassung ist im HTML-Format, um in Kanban Kartenansichten eingefügt " "zu werden." #. module: analytic @@ -401,7 +401,7 @@ msgstr "Typ der Kostenstelle" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "Start Datum" +msgstr "Startdatum" #. module: analytic #: constraint:account.analytic.line:0 @@ -412,7 +412,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,line_ids:0 msgid "Analytic Entries" -msgstr "Kostenstellen Buchungen" +msgstr "Kostenstellenbuchungen" #~ msgid "Account Name" #~ msgstr "Kontenbezeichnung" diff --git a/addons/analytic/i18n/el.po b/addons/analytic/i18n/el.po index 4245c0a5fd7..cdc058675cb 100644 --- a/addons/analytic/i18n/el.po +++ b/addons/analytic/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/en_GB.po b/addons/analytic/i18n/en_GB.po index 64760785541..06e64a61acd 100644 --- a/addons/analytic/i18n/en_GB.po +++ b/addons/analytic/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es.po b/addons/analytic/i18n/es.po index 9027ef5b8dc..34892586f69 100644 --- a/addons/analytic/i18n/es.po +++ b/addons/analytic/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_CR.po b/addons/analytic/i18n/es_CR.po index 640f67e92fb..5c0513bc206 100644 --- a/addons/analytic/i18n/es_CR.po +++ b/addons/analytic/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: analytic diff --git a/addons/analytic/i18n/es_EC.po b/addons/analytic/i18n/es_EC.po index 19ff36cd4ab..5f537d6d073 100644 --- a/addons/analytic/i18n/es_EC.po +++ b/addons/analytic/i18n/es_EC.po @@ -9,8 +9,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_PY.po b/addons/analytic/i18n/es_PY.po index 5080505d08d..13310794c98 100644 --- a/addons/analytic/i18n/es_PY.po +++ b/addons/analytic/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/et.po b/addons/analytic/i18n/et.po index 1a2a1e2959c..fe3cac67a3b 100644 --- a/addons/analytic/i18n/et.po +++ b/addons/analytic/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fa.po b/addons/analytic/i18n/fa.po index 7212abdc548..1f71efa33fd 100644 --- a/addons/analytic/i18n/fa.po +++ b/addons/analytic/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fi.po b/addons/analytic/i18n/fi.po index 054ebd48c03..e73a9ed37f3 100644 --- a/addons/analytic/i18n/fi.po +++ b/addons/analytic/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fr.po b/addons/analytic/i18n/fr.po index f4b11433877..68409a7f9ec 100644 --- a/addons/analytic/i18n/fr.po +++ b/addons/analytic/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -378,6 +378,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contient le résumé de la discussion (nombre de messages, ...). Ce résumé est " +"au format HTML pour permettre son utilisation dans la vue kanban." #. module: analytic #: field:account.analytic.account,type:0 diff --git a/addons/analytic/i18n/gl.po b/addons/analytic/i18n/gl.po index 74b81bb2ab2..4538c273c1c 100644 --- a/addons/analytic/i18n/gl.po +++ b/addons/analytic/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/hr.po b/addons/analytic/i18n/hr.po index 839ff5cf8d2..f94cb02666e 100644 --- a/addons/analytic/i18n/hr.po +++ b/addons/analytic/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -25,13 +25,13 @@ msgstr "Podređena konta" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "" +msgstr "U tijeku" #. module: analytic #: code:addons/analytic/analytic.py:229 #, python-format msgid "Contract: " -msgstr "" +msgstr "Ugovor: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -42,7 +42,7 @@ msgstr "Predložak" #: view:account.analytic.account:0 #: field:account.analytic.account,date:0 msgid "End Date" -msgstr "" +msgstr "Datum završetka" #. module: analytic #: help:account.analytic.line,unit_amount:0 @@ -80,16 +80,23 @@ msgid "" "the\n" " customer." msgstr "" +"Jednom kada ugovor završi\n" +" ili maksimalan broj jedinica usluga\n" +" (npr. ugovor o održavanju) je " +"dosegnut,\n" +" voditelj projekta dobiva obavijest\n" +" putem e-maila da obnovi ugovor sa " +"kupcem." #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "" +msgstr "Ugovor ili projekt" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "" +msgstr "Naziv ugovora" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -99,7 +106,7 @@ msgstr "Voditelj računovodstva" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Pratitelji" #. module: analytic #: selection:account.analytic.account,state:0 @@ -109,7 +116,7 @@ msgstr "Zatvoren" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending msgid "Contract to Renew" -msgstr "" +msgstr "Ugovor za obnovu" #. module: analytic #: selection:account.analytic.account,state:0 @@ -119,18 +126,18 @@ msgstr "Novi" #. module: analytic #: field:account.analytic.account,user_id:0 msgid "Project Manager" -msgstr "" +msgstr "Voditelj projekta" #. module: analytic #: field:account.analytic.account,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: analytic #: code:addons/analytic/analytic.py:271 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line @@ -146,12 +153,12 @@ msgstr "Opis" #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepročitane poruke" #. module: analytic #: constraint:account.analytic.account:0 msgid "Error! You cannot create recursive analytic accounts." -msgstr "" +msgstr "Greška ! Ne možete kreirati rekurzivna analitička konta." #. module: analytic #: field:account.analytic.account,company_id:0 @@ -162,12 +169,12 @@ msgstr "Organizacija" #. module: analytic #: view:account.analytic.account:0 msgid "Renewal" -msgstr "" +msgstr "Obnova" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Poruke i povijest komunikacije" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened @@ -196,7 +203,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je pratitelj" #. module: analytic #: field:account.analytic.line,user_id:0 @@ -216,12 +223,12 @@ msgstr "Datum" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed msgid "Contract Finished" -msgstr "" +msgstr "Ugovor završen" #. module: analytic #: view:account.analytic.account:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Opći uvjeti" #. module: analytic #: help:account.analytic.line,amount:0 @@ -235,7 +242,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "" +msgstr "Partner" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 @@ -245,7 +252,7 @@ msgstr "Hijerarhija konta" #. module: analytic #: field:account.analytic.account,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Poruke" #. module: analytic #: field:account.analytic.account,parent_id:0 @@ -255,23 +262,23 @@ msgstr "Nadređeni analitički konto" #. module: analytic #: view:account.analytic.account:0 msgid "Contract Information" -msgstr "" +msgstr "Informacije o ugovoru" #. module: analytic #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "" +msgstr "Predložak ugovora" #. module: analytic #: field:account.analytic.account,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Sažetak" #. module: analytic #: field:account.analytic.account,quantity_max:0 msgid "Prepaid Service Units" -msgstr "" +msgstr "Jedinica unaprijed plaćene usluge" #. module: analytic #: field:account.analytic.account,credit:0 @@ -281,7 +288,7 @@ msgstr "Potražuje" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened msgid "Contract Opened" -msgstr "" +msgstr "Ugovor je otvoren" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_closed @@ -296,7 +303,7 @@ msgstr "Otkazano" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Analytic View" -msgstr "" +msgstr "Analitički pogled" #. module: analytic #: field:account.analytic.account,balance:0 @@ -306,12 +313,12 @@ msgstr "Saldo" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ako je odabrano, nove poruke zahtijevaju Vašu pažnju." #. module: analytic #: selection:account.analytic.account,state:0 msgid "To Renew" -msgstr "" +msgstr "Za obnovu" #. module: analytic #: field:account.analytic.account,quantity:0 @@ -327,13 +334,13 @@ msgstr "Završni datum" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Veza" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Greška!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting @@ -369,16 +376,18 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sadrži sažetak konverzacije (broj poruka,..). Ovaj sažetak je u html formatu " +"da bi mogao biti ubačen u kanban pogled." #. module: analytic #: field:account.analytic.account,type:0 msgid "Type of Account" -msgstr "" +msgstr "Vrsta konta" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Datum početka" #. module: analytic #: constraint:account.analytic.line:0 diff --git a/addons/analytic/i18n/hu.po b/addons/analytic/i18n/hu.po index d4a41108207..243fc66cbda 100644 --- a/addons/analytic/i18n/hu.po +++ b/addons/analytic/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/it.po b/addons/analytic/i18n/it.po index 028423ddcb8..c67da43d480 100644 --- a/addons/analytic/i18n/it.po +++ b/addons/analytic/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \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 \n" +"Last-Translator: Davide Corio @ LS \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: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ja.po b/addons/analytic/i18n/ja.po index 82987557d34..64c624ec665 100644 --- a/addons/analytic/i18n/ja.po +++ b/addons/analytic/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -25,7 +25,7 @@ msgstr "子アカウント" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "" +msgstr "進行中" #. module: analytic #: code:addons/analytic/analytic.py:229 @@ -42,7 +42,7 @@ msgstr "テンプレート" #: view:account.analytic.account:0 #: field:account.analytic.account,date:0 msgid "End Date" -msgstr "" +msgstr "終了日" #. module: analytic #: help:account.analytic.line,unit_amount:0 @@ -84,17 +84,17 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "" +msgstr "契約またはプロジェクト" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "" +msgstr "勘定/契約名" #. module: analytic #: field:account.analytic.account,manager_id:0 msgid "Account Manager" -msgstr "会計マネジャ" +msgstr "アカウント責任者" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 @@ -104,12 +104,12 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" -msgstr "閉じた" +msgstr "終了済" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending msgid "Contract to Renew" -msgstr "" +msgstr "契約要更新" #. module: analytic #: selection:account.analytic.account,state:0 @@ -162,7 +162,7 @@ msgstr "会社" #. module: analytic #: view:account.analytic.account:0 msgid "Renewal" -msgstr "" +msgstr "更新" #. module: analytic #: help:account.analytic.account,message_ids:0 @@ -219,12 +219,12 @@ msgstr "日付" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed msgid "Contract Finished" -msgstr "" +msgstr "契約終了" #. module: analytic #: view:account.analytic.account:0 msgid "Terms and Conditions" -msgstr "" +msgstr "諸条件" #. module: analytic #: help:account.analytic.line,amount:0 @@ -236,7 +236,7 @@ msgstr "数量と製品の原価価格を乗算して計算されます。いつ #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "" +msgstr "顧客" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 @@ -251,18 +251,18 @@ msgstr "" #. module: analytic #: field:account.analytic.account,parent_id:0 msgid "Parent Analytic Account" -msgstr "パートナ分析アカウント" +msgstr "親分析勘定" #. module: analytic #: view:account.analytic.account:0 msgid "Contract Information" -msgstr "" +msgstr "契約情報" #. module: analytic #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "" +msgstr "契約雛形" #. module: analytic #: field:account.analytic.account,message_summary:0 @@ -272,7 +272,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,quantity_max:0 msgid "Prepaid Service Units" -msgstr "" +msgstr "前払サービス単位数" #. module: analytic #: field:account.analytic.account,credit:0 @@ -282,7 +282,7 @@ msgstr "貸方" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened msgid "Contract Opened" -msgstr "" +msgstr "契約開始" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_closed @@ -297,7 +297,7 @@ msgstr "キャンセル済" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Analytic View" -msgstr "" +msgstr "分析ビュー" #. module: analytic #: field:account.analytic.account,balance:0 @@ -312,7 +312,7 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 msgid "To Renew" -msgstr "" +msgstr "要更新" #. module: analytic #: field:account.analytic.account,quantity:0 @@ -328,7 +328,7 @@ msgstr "終了日" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "参照" #. module: analytic #: code:addons/analytic/analytic.py:160 @@ -357,7 +357,7 @@ msgstr "フルアカウント名" #: field:account.analytic.line,account_id:0 #: model:ir.model,name:analytic.model_account_analytic_account msgid "Analytic Account" -msgstr "分析アカウント" +msgstr "分析勘定" #. module: analytic #: field:account.analytic.account,currency_id:0 @@ -374,12 +374,12 @@ msgstr "" #. module: analytic #: field:account.analytic.account,type:0 msgid "Type of Account" -msgstr "" +msgstr "勘定タイプ" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "開始日" #. module: analytic #: constraint:account.analytic.line:0 diff --git a/addons/analytic/i18n/lt.po b/addons/analytic/i18n/lt.po index 582d2ced9bc..0ad924933b7 100644 --- a/addons/analytic/i18n/lt.po +++ b/addons/analytic/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/lv.po b/addons/analytic/i18n/lv.po index ebc61c52ca6..ce94c86e1c0 100644 --- a/addons/analytic/i18n/lv.po +++ b/addons/analytic/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/mk.po b/addons/analytic/i18n/mk.po index fade23267df..b3d7b38d55f 100644 --- a/addons/analytic/i18n/mk.po +++ b/addons/analytic/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/mn.po b/addons/analytic/i18n/mn.po index 9988836dd17..6eb9433b41c 100644 --- a/addons/analytic/i18n/mn.po +++ b/addons/analytic/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nb.po b/addons/analytic/i18n/nb.po index a39aee46592..327e8f6a04e 100644 --- a/addons/analytic/i18n/nb.po +++ b/addons/analytic/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nl.po b/addons/analytic/i18n/nl.po index f5928cdb634..664d51522e1 100644 --- a/addons/analytic/i18n/nl.po +++ b/addons/analytic/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nl_BE.po b/addons/analytic/i18n/nl_BE.po index 5e76689f314..16ac3294c68 100644 --- a/addons/analytic/i18n/nl_BE.po +++ b/addons/analytic/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pl.po b/addons/analytic/i18n/pl.po index 6c75e229e73..def7046d4fd 100644 --- a/addons/analytic/i18n/pl.po +++ b/addons/analytic/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -124,7 +124,7 @@ msgstr "Zamknięte" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending msgid "Contract to Renew" -msgstr "" +msgstr "Umowa do odnowienia" #. module: analytic #: selection:account.analytic.account,state:0 @@ -234,7 +234,7 @@ msgstr "Data" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed msgid "Contract Finished" -msgstr "" +msgstr "Umowa zakończona" #. module: analytic #: view:account.analytic.account:0 @@ -299,7 +299,7 @@ msgstr "Ma" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened msgid "Contract Opened" -msgstr "" +msgstr "Umowa otwarta" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_closed diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po index 08cc99041d4..cc399abddf4 100644 --- a/addons/analytic/i18n/pt.po +++ b/addons/analytic/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pt_BR.po b/addons/analytic/i18n/pt_BR.po index 927dcf154d9..9f62aa1f39e 100644 --- a/addons/analytic/i18n/pt_BR.po +++ b/addons/analytic/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "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" +"\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-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ro.po b/addons/analytic/i18n/ro.po index 68804ad2586..339ae36f98a 100644 --- a/addons/analytic/i18n/ro.po +++ b/addons/analytic/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ru.po b/addons/analytic/i18n/ru.po index cc1c65b7031..b0bc1337284 100644 --- a/addons/analytic/i18n/ru.po +++ b/addons/analytic/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po index 5a794cbf1a1..6dd1015187b 100644 --- a/addons/analytic/i18n/sl.po +++ b/addons/analytic/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sq.po b/addons/analytic/i18n/sq.po index 501d2222113..4b2d08c2760 100644 --- a/addons/analytic/i18n/sq.po +++ b/addons/analytic/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:26+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sr.po b/addons/analytic/i18n/sr.po index 0b401507d03..15b71193386 100644 --- a/addons/analytic/i18n/sr.po +++ b/addons/analytic/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sr@latin.po b/addons/analytic/i18n/sr@latin.po index a3bb1759a3a..189e69fa9f3 100644 --- a/addons/analytic/i18n/sr@latin.po +++ b/addons/analytic/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sv.po b/addons/analytic/i18n/sv.po index 6382b34a742..a411457c5d7 100644 --- a/addons/analytic/i18n/sv.po +++ b/addons/analytic/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/tr.po b/addons/analytic/i18n/tr.po index 05ffae4e4da..0526dcb5ee9 100644 --- a/addons/analytic/i18n/tr.po +++ b/addons/analytic/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -300,7 +300,7 @@ msgstr "Önödemeli Hizmet Birimleri" #. module: analytic #: field:account.analytic.account,credit:0 msgid "Credit" -msgstr "Kredi" +msgstr "Alacak" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened @@ -351,7 +351,7 @@ msgstr "Bitiş Tarihi" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "İlgi" +msgstr "Referans" #. module: analytic #: code:addons/analytic/analytic.py:160 diff --git a/addons/analytic/i18n/vi.po b/addons/analytic/i18n/vi.po index 6678048b86a..38b764e3651 100644 --- a/addons/analytic/i18n/vi.po +++ b/addons/analytic/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/zh_CN.po b/addons/analytic/i18n/zh_CN.po index 42d5b5b2cd9..34ae1896065 100644 --- a/addons/analytic/i18n/zh_CN.po +++ b/addons/analytic/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/zh_TW.po b/addons/analytic/i18n/zh_TW.po index bc6fc4b4a85..cc4c3993ac3 100644 --- a/addons/analytic/i18n/zh_TW.po +++ b/addons/analytic/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:14+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:27+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ar.po b/addons/analytic_contract_hr_expense/i18n/ar.po index 0e87a8867cd..5c8177fdf12 100644 --- a/addons/analytic_contract_hr_expense/i18n/ar.po +++ b/addons/analytic_contract_hr_expense/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/cs.po b/addons/analytic_contract_hr_expense/i18n/cs.po index 06ce4bf042c..08641d6cb43 100644 --- a/addons/analytic_contract_hr_expense/i18n/cs.po +++ b/addons/analytic_contract_hr_expense/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/da.po b/addons/analytic_contract_hr_expense/i18n/da.po index 6d9259b67c1..3365f527b1b 100644 --- a/addons/analytic_contract_hr_expense/i18n/da.po +++ b/addons/analytic_contract_hr_expense/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-10 05:54+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/de.po b/addons/analytic_contract_hr_expense/i18n/de.po index 9656c2deb56..671f925dc44 100644 --- a/addons/analytic_contract_hr_expense/i18n/de.po +++ b/addons/analytic_contract_hr_expense/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/en_GB.po b/addons/analytic_contract_hr_expense/i18n/en_GB.po index 35133b06efc..df067a9e24e 100644 --- a/addons/analytic_contract_hr_expense/i18n/en_GB.po +++ b/addons/analytic_contract_hr_expense/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/es.po b/addons/analytic_contract_hr_expense/i18n/es.po index 2476936698f..320dc0f307d 100644 --- a/addons/analytic_contract_hr_expense/i18n/es.po +++ b/addons/analytic_contract_hr_expense/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/fr.po b/addons/analytic_contract_hr_expense/i18n/fr.po index 374df74b7e4..c44c89bf63a 100644 --- a/addons/analytic_contract_hr_expense/i18n/fr.po +++ b/addons/analytic_contract_hr_expense/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -59,12 +59,12 @@ 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" +msgstr "Estimation des dépenses à facturer" #. module: analytic_contract_hr_expense #: field:account.analytic.account,charge_expenses:0 msgid "Charge Expenses" -msgstr "" +msgstr "Imputer les frais" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/hr.po b/addons/analytic_contract_hr_expense/i18n/hr.po index c2d7a0ef2f6..4a2bca9e037 100644 --- a/addons/analytic_contract_hr_expense/i18n/hr.po +++ b/addons/analytic_contract_hr_expense/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/hu.po b/addons/analytic_contract_hr_expense/i18n/hu.po index 8a2cb9dc36b..2983aba5197 100644 --- a/addons/analytic_contract_hr_expense/i18n/hu.po +++ b/addons/analytic_contract_hr_expense/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/it.po b/addons/analytic_contract_hr_expense/i18n/it.po index ca8cb63abb8..80a3d304225 100644 --- a/addons/analytic_contract_hr_expense/i18n/it.po +++ b/addons/analytic_contract_hr_expense/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/mk.po b/addons/analytic_contract_hr_expense/i18n/mk.po index c0f80b4a82c..5f0aa7a5c0e 100644 --- a/addons/analytic_contract_hr_expense/i18n/mk.po +++ b/addons/analytic_contract_hr_expense/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/mn.po b/addons/analytic_contract_hr_expense/i18n/mn.po index 20ac8686d32..8a51c291f6b 100644 --- a/addons/analytic_contract_hr_expense/i18n/mn.po +++ b/addons/analytic_contract_hr_expense/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nb.po b/addons/analytic_contract_hr_expense/i18n/nb.po index 8d3205a5106..bf22d06db0a 100644 --- a/addons/analytic_contract_hr_expense/i18n/nb.po +++ b/addons/analytic_contract_hr_expense/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nl.po b/addons/analytic_contract_hr_expense/i18n/nl.po index a4514f9df12..91d19e514cb 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl.po +++ b/addons/analytic_contract_hr_expense/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nl_BE.po b/addons/analytic_contract_hr_expense/i18n/nl_BE.po index e1643d6de16..d9aff72baa8 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl_BE.po +++ b/addons/analytic_contract_hr_expense/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-04-15 16:33+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \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: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pl.po b/addons/analytic_contract_hr_expense/i18n/pl.po index d372275b4a2..ccacbc9ad7f 100644 --- a/addons/analytic_contract_hr_expense/i18n/pl.po +++ b/addons/analytic_contract_hr_expense/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -47,7 +47,7 @@ msgstr "Wydatki do zafakturowania %s" #: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" -msgstr "" +msgstr "Wydatki %s" #. module: analytic_contract_hr_expense #: field:account.analytic.account,expense_invoiced:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pt.po b/addons/analytic_contract_hr_expense/i18n/pt.po index 4f661524df1..4dea1d38944 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt.po +++ b/addons/analytic_contract_hr_expense/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pt_BR.po b/addons/analytic_contract_hr_expense/i18n/pt_BR.po index 2061f78b5d0..e5d1513bba2 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt_BR.po +++ b/addons/analytic_contract_hr_expense/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ro.po b/addons/analytic_contract_hr_expense/i18n/ro.po index 349b07a5346..f3927df302c 100644 --- a/addons/analytic_contract_hr_expense/i18n/ro.po +++ b/addons/analytic_contract_hr_expense/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/sl.po b/addons/analytic_contract_hr_expense/i18n/sl.po index 507b1addf01..e07643db11f 100644 --- a/addons/analytic_contract_hr_expense/i18n/sl.po +++ b/addons/analytic_contract_hr_expense/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/tr.po b/addons/analytic_contract_hr_expense/i18n/tr.po index c2b0837d4e3..e33782fc004 100644 --- a/addons/analytic_contract_hr_expense/i18n/tr.po +++ b/addons/analytic_contract_hr_expense/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -64,7 +64,7 @@ msgstr "Faturalanacak Giderlerin Tahmini" #. module: analytic_contract_hr_expense #: field:account.analytic.account,charge_expenses:0 msgid "Charge Expenses" -msgstr "Hesaba geçirilen giderler" +msgstr "Tahsil Edilecek Giderler" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/zh_CN.po b/addons/analytic_contract_hr_expense/i18n/zh_CN.po index 6ddef84ac23..8be8c51204e 100644 --- a/addons/analytic_contract_hr_expense/i18n/zh_CN.po +++ b/addons/analytic_contract_hr_expense/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_user_function/i18n/ar.po b/addons/analytic_user_function/i18n/ar.po index b43ff2bfb20..fe75caaaf64 100644 --- a/addons/analytic_user_function/i18n/ar.po +++ b/addons/analytic_user_function/i18n/ar.po @@ -13,13 +13,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "خط تحليلي" #. module: analytic_user_function #: view:account.analytic.account:0 diff --git a/addons/analytic_user_function/i18n/bg.po b/addons/analytic_user_function/i18n/bg.po index 9443827a156..4a78bad8308 100644 --- a/addons/analytic_user_function/i18n/bg.po +++ b/addons/analytic_user_function/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 53c070e61a2..ed62dfd04eb 100644 --- a/addons/analytic_user_function/i18n/bs.po +++ b/addons/analytic_user_function/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 e73f50cc4a9..aebdf814255 100644 --- a/addons/analytic_user_function/i18n/ca.po +++ b/addons/analytic_user_function/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 ad6dc4ec18d..816598d3ac6 100644 --- a/addons/analytic_user_function/i18n/cs.po +++ b/addons/analytic_user_function/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 8b26fba6448..4c0e608d233 100644 --- a/addons/analytic_user_function/i18n/da.po +++ b/addons/analytic_user_function/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 be1413744ec..fdb8ecd8e90 100644 --- a/addons/analytic_user_function/i18n/de.po +++ b/addons/analytic_user_function/i18n/de.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line msgid "Analytic Line" -msgstr "Kostenstellen Buchung" +msgstr "Kostenstellen-Buchung" #. module: analytic_user_function #: view:account.analytic.account:0 @@ -51,14 +51,14 @@ msgstr "Preis pro Stunde für Benutzer" #: field:analytic.user.funct.grid,account_id:0 #: model:ir.model,name:analytic_user_function.model_account_analytic_account msgid "Analytic Account" -msgstr "Analytisches Konto" +msgstr "Kostenstellenkonto" #. module: analytic_user_function #: code:addons/analytic_user_function/analytic_user_function.py:106 #: code:addons/analytic_user_function/analytic_user_function.py:135 #, python-format msgid "Error!" -msgstr "Fehler !" +msgstr "Fehler!" #. module: analytic_user_function #: view:analytic.user.funct.grid:0 @@ -81,7 +81,7 @@ msgid "" msgstr "" "Anlegen einer spezifischen Dienstleistung (z.B. Senior Consultant)\n" " und Preis für einige Benutzer, um diese Daten " -"anstelle der Standard Werte\n" +"anstelle der Standardwerte\n" " für die Abrechnung an Kunden zu benutzen." #. module: analytic_user_function @@ -110,9 +110,9 @@ msgid "" " specific user. This allows to set invoicing\n" " conditions for a group of contracts." msgstr "" -"OpenERP durchsucht rekursiv die übergeordneten Kostenstellen, um spezifische " -"Konditionen für spezifische Benutzer zu überprüfen. Dieses ermöglicht die " -"Hinterlegung der Abrechnungskonditionen für bestimmte Vertragsgruppen." +"OpenERP durchsucht rekursiv die übergeordneten Kostenstellen, um Konditionen " +"für spezifische Benutzer zu überprüfen. Dieses ermöglicht die Hinterlegung " +"der Abrechnungskonditionen für bestimmte Vertragsgruppen." #. module: analytic_user_function #: field:analytic.user.funct.grid,user_id:0 diff --git a/addons/analytic_user_function/i18n/el.po b/addons/analytic_user_function/i18n/el.po index fde219b9288..7d8a7782687 100644 --- a/addons/analytic_user_function/i18n/el.po +++ b/addons/analytic_user_function/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 7a95022fd2d..bc42eccd028 100644 --- a/addons/analytic_user_function/i18n/en_GB.po +++ b/addons/analytic_user_function/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 fb474479d78..98c7590a9a4 100644 --- a/addons/analytic_user_function/i18n/es.po +++ b/addons/analytic_user_function/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 7c1cd5b73a9..a4acc723340 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 6de0374b9b2..2679c9153d2 100644 --- a/addons/analytic_user_function/i18n/es_CR.po +++ b/addons/analytic_user_function/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 87d8ecb0071..82a348d54f8 100644 --- a/addons/analytic_user_function/i18n/es_EC.po +++ b/addons/analytic_user_function/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 bed8b499b1d..8fa7c47c584 100644 --- a/addons/analytic_user_function/i18n/es_PY.po +++ b/addons/analytic_user_function/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 43208b203aa..706f7301df9 100644 --- a/addons/analytic_user_function/i18n/et.po +++ b/addons/analytic_user_function/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 266de5c0330..3616d56382a 100644 --- a/addons/analytic_user_function/i18n/fa.po +++ b/addons/analytic_user_function/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 76080eca23c..203ed40cbb9 100644 --- a/addons/analytic_user_function/i18n/fi.po +++ b/addons/analytic_user_function/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 ed373ca2fc4..84874769830 100644 --- a/addons/analytic_user_function/i18n/fr.po +++ b/addons/analytic_user_function/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line @@ -57,7 +57,7 @@ msgstr "Compte analytique" #: code:addons/analytic_user_function/analytic_user_function.py:135 #, python-format msgid "Error!" -msgstr "" +msgstr "Erreur !" #. module: analytic_user_function #: view:analytic.user.funct.grid:0 diff --git a/addons/analytic_user_function/i18n/gl.po b/addons/analytic_user_function/i18n/gl.po index bb007881241..3b3a58a2260 100644 --- a/addons/analytic_user_function/i18n/gl.po +++ b/addons/analytic_user_function/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 4898f0ece3b..a349fb4952c 100644 --- a/addons/analytic_user_function/i18n/gu.po +++ b/addons/analytic_user_function/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 1c837ef83d3..a0c4da26239 100644 --- a/addons/analytic_user_function/i18n/hr.po +++ b/addons/analytic_user_function/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 69b5e7c8f39..862da54ea38 100644 --- a/addons/analytic_user_function/i18n/hu.po +++ b/addons/analytic_user_function/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 6d857697a3c..a3fe50f9717 100644 --- a/addons/analytic_user_function/i18n/id.po +++ b/addons/analytic_user_function/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 1748af12de3..d02a0e364b3 100644 --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 0853e97282b..a876b5d846d 100644 --- a/addons/analytic_user_function/i18n/ja.po +++ b/addons/analytic_user_function/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 6acfc12b425..041336f0937 100644 --- a/addons/analytic_user_function/i18n/ko.po +++ b/addons/analytic_user_function/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 2cda917303d..6dff2575673 100644 --- a/addons/analytic_user_function/i18n/lt.po +++ b/addons/analytic_user_function/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 485127634d0..f3123c2525c 100644 --- a/addons/analytic_user_function/i18n/mk.po +++ b/addons/analytic_user_function/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 4ff075e5973..17c20224915 100644 --- a/addons/analytic_user_function/i18n/mn.po +++ b/addons/analytic_user_function/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 9802875c590..51370b8f518 100644 --- a/addons/analytic_user_function/i18n/nb.po +++ b/addons/analytic_user_function/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 cd4c3c02a47..54e0a4c880d 100644 --- a/addons/analytic_user_function/i18n/nl.po +++ b/addons/analytic_user_function/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 d5ba1531e7a..d44255964b3 100644 --- a/addons/analytic_user_function/i18n/nl_BE.po +++ b/addons/analytic_user_function/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \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" +"Last-Translator: Els Van Vossel (Foxy) \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: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 c167aa25ed0..224556fbdb3 100644 --- a/addons/analytic_user_function/i18n/oc.po +++ b/addons/analytic_user_function/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 78b5d2cdde5..09068c6dee8 100644 --- a/addons/analytic_user_function/i18n/pl.po +++ b/addons/analytic_user_function/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 7215fe5a41c..f2ccc5e1e29 100644 --- a/addons/analytic_user_function/i18n/pt.po +++ b/addons/analytic_user_function/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 4c03a5c73a7..76abce60645 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "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" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 d0e93e4bc4d..c5654590754 100644 --- a/addons/analytic_user_function/i18n/ro.po +++ b/addons/analytic_user_function/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 1be4334790a..334eea556db 100644 --- a/addons/analytic_user_function/i18n/ru.po +++ b/addons/analytic_user_function/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 d438db9e29b..d5f214b336b 100644 --- a/addons/analytic_user_function/i18n/sk.po +++ b/addons/analytic_user_function/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 99caf0a0fdd..2f32e50d6f4 100644 --- a/addons/analytic_user_function/i18n/sl.po +++ b/addons/analytic_user_function/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 ff06da9b432..1db8fe85c8d 100644 --- a/addons/analytic_user_function/i18n/sq.po +++ b/addons/analytic_user_function/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 5639e27ae93..9055d64c8d1 100644 --- a/addons/analytic_user_function/i18n/sr.po +++ b/addons/analytic_user_function/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 7dab011536f..31df4b2d090 100644 --- a/addons/analytic_user_function/i18n/sr@latin.po +++ b/addons/analytic_user_function/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 38eac94c71c..df15c34d31a 100644 --- a/addons/analytic_user_function/i18n/sv.po +++ b/addons/analytic_user_function/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 444f19b9066..12769596008 100644 --- a/addons/analytic_user_function/i18n/tlh.po +++ b/addons/analytic_user_function/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 6670a3b5c5f..186c0c754b8 100644 --- a/addons/analytic_user_function/i18n/tr.po +++ b/addons/analytic_user_function/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 30a709dd99f..3ad2f3274a3 100644 --- a/addons/analytic_user_function/i18n/uk.po +++ b/addons/analytic_user_function/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 f2087ec08a4..b442fbd368f 100644 --- a/addons/analytic_user_function/i18n/vi.po +++ b/addons/analytic_user_function/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 a051a71ab89..6fad61f7c2c 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:25+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\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 6509d7d0d99..2af90aa939b 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/anonymization/i18n/ar.po b/addons/anonymization/i18n/ar.po index 8d8ded79dac..e18bbb784e3 100644 --- a/addons/anonymization/i18n/ar.po +++ b/addons/anonymization/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/bg.po b/addons/anonymization/i18n/bg.po index ed74919721f..79f66342e07 100644 --- a/addons/anonymization/i18n/bg.po +++ b/addons/anonymization/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ca.po b/addons/anonymization/i18n/ca.po index 7f00132a6f5..8813587d057 100644 --- a/addons/anonymization/i18n/ca.po +++ b/addons/anonymization/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/cs.po b/addons/anonymization/i18n/cs.po index bdaa2e2c89b..70229ee18f5 100644 --- a/addons/anonymization/i18n/cs.po +++ b/addons/anonymization/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/da.po b/addons/anonymization/i18n/da.po index 192a0e64d4c..f0b7d297a37 100644 --- a/addons/anonymization/i18n/da.po +++ b/addons/anonymization/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/de.po b/addons/anonymization/i18n/de.po index 816e70ceb1f..07e2ea30f35 100644 --- a/addons/anonymization/i18n/de.po +++ b/addons/anonymization/i18n/de.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \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" +"Last-Translator: Ferdinand \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-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -35,7 +35,7 @@ msgstr "ir.model.fields.anonymization.migration.fix" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,target_version:0 msgid "Target Version" -msgstr "Ziel Version" +msgstr "Zielversion" #. module: anonymization #: selection:ir.model.fields.anonymization.migration.fix,query_type:0 @@ -50,9 +50,9 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to create, write or delete fields." msgstr "" -"Die Datenbank Anonymisierung ist aktuell in einem Beta Stadium. Einige " -"Felder werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das " -"Problem vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." +"Die Datenbankanonymisierung ist aktuell in einem Beta Stadium. Einige Felder " +"werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das Problem " +"vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 @@ -110,7 +110,7 @@ msgstr "Anonymisierte Felder" #. module: anonymization #: model:ir.ui.menu,name:anonymization.menu_administration_anonymization msgid "Database anonymization" -msgstr "Datenbank Anonymisierung" +msgstr "Datenbank-Anonymisierung" #. module: anonymization #: selection:ir.model.fields.anonymization.history,direction:0 @@ -161,7 +161,7 @@ msgstr "Export" #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Reverse the Database Anonymization" -msgstr "Mache Datenbankanonymiserung rückgängig" +msgstr "Datenbankanonymiserung rückgängig machen" #. module: anonymization #: code:addons/anonymization/anonymization.py:444 @@ -229,9 +229,9 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything." msgstr "" -"Die Datenbank Anonymisierung ist aktuell in einem Beta Stadium. Einige " -"Felder werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das " -"Problem vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." +"Die Datenbankanonymisierung ist aktuell in einem Beta Stadium. Einige Felder " +"werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das Problem " +"vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -251,14 +251,14 @@ msgstr "Existiert nicht" #. module: anonymization #: field:ir.model.fields.anonymization,model_name:0 msgid "Object Name" -msgstr "Objekt Bezeichnung" +msgstr "Objekt-Bezeichnung" #. 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 "Anonymisierungs Verlauf" +msgstr "Anonymisierungsverlauf" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,model_name:0 @@ -278,16 +278,16 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything else." msgstr "" -"Die Datenbank Anonymisierung ist aktuell in einem Beta Stadium. Einige " -"Felder werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das " -"Problem vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." +"Die Datenbankanonymisierung ist aktuell in einem Beta Stadium. Einige Felder " +"werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das Problem " +"vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." #. module: anonymization #: code:addons/anonymization/anonymization.py:389 #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "Fehler !" +msgstr "Fehler!" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -347,7 +347,7 @@ msgstr "Nachricht" #, python-format msgid "You cannot have two fields with the same name on the same object!" msgstr "" -"Sie können nicht mehrere Felder mit dem selben Namen für das selbe Objekt " +"Sie können nicht mehrere Felder mit demselben Namen für dasselbe Objekt " "definieren" #~ msgid "Database anonymization module" diff --git a/addons/anonymization/i18n/en_GB.po b/addons/anonymization/i18n/en_GB.po index 52e717ec5cb..bdf5ef7efc8 100644 --- a/addons/anonymization/i18n/en_GB.po +++ b/addons/anonymization/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es.po b/addons/anonymization/i18n/es.po index 14ef7a15b78..fe2605e068e 100644 --- a/addons/anonymization/i18n/es.po +++ b/addons/anonymization/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_CR.po b/addons/anonymization/i18n/es_CR.po index 1b0cb3c05ad..f001fbe726f 100644 --- a/addons/anonymization/i18n/es_CR.po +++ b/addons/anonymization/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: anonymization diff --git a/addons/anonymization/i18n/es_EC.po b/addons/anonymization/i18n/es_EC.po index fa3215a385c..0199e0656ca 100644 --- a/addons/anonymization/i18n/es_EC.po +++ b/addons/anonymization/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_PY.po b/addons/anonymization/i18n/es_PY.po index 444992615ff..fd8f5dbec2b 100644 --- a/addons/anonymization/i18n/es_PY.po +++ b/addons/anonymization/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/et.po b/addons/anonymization/i18n/et.po index 2090c53a1b1..b31ae792e56 100644 --- a/addons/anonymization/i18n/et.po +++ b/addons/anonymization/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fa.po b/addons/anonymization/i18n/fa.po index 4b737766efb..6b04051359f 100644 --- a/addons/anonymization/i18n/fa.po +++ b/addons/anonymization/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fi.po b/addons/anonymization/i18n/fi.po index 5f7597e025b..b266a43cb34 100644 --- a/addons/anonymization/i18n/fi.po +++ b/addons/anonymization/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fr.po b/addons/anonymization/i18n/fr.po index 6636f91309e..c0bc82bb4c7 100644 --- a/addons/anonymization/i18n/fr.po +++ b/addons/anonymization/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -34,7 +34,7 @@ msgstr "ir.model.fields.anonymization.migration.fix" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,target_version:0 msgid "Target Version" -msgstr "" +msgstr "Version visée" #. module: anonymization #: selection:ir.model.fields.anonymization.migration.fix,query_type:0 @@ -49,6 +49,10 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to create, write or delete fields." msgstr "" +"L'anonymisation de la base de données est présentement dans un état " +"instable. Certains champs sont anonymes, alors que d'autres ne le sont pas. " +"Vous devriez essayez de résoudre le problème avant de créer, écrire ou " +"supprimer des champs." #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 @@ -83,6 +87,8 @@ msgid "" "Before executing the anonymization process, you should make a backup of your " "database." msgstr "" +"Avant d'exécuter le processus d'anonymisation, vous devriez faire une copie " +"de sauvegarde de la base de données." #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 @@ -140,6 +146,8 @@ msgid "" "This is the file created by the anonymization process. It should have the " "'.pickle' extention." msgstr "" +"Ceci est le fichier créé par le processus d'anonymisation. Il devrait avoir " +"l'extension \".pickle\"." #. module: anonymization #: field:ir.model.fields.anonymization.history,date:0 @@ -198,6 +206,8 @@ msgid "" "It is not possible to reverse the anonymization process without supplying " "the anonymization export file." msgstr "" +"Il n'est pas possible de renverser le processus d'anonymisation sans fournir " +"le fichier d'export d'anonymisation." #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 @@ -218,6 +228,9 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything." msgstr "" +"L'anonymisation de la base de données est présentement dans un état " +"instable. Certains champs sont anonymes, alors que d'autres ne le sont pas. " +"Vous devriez essayez de résoudre le problème avant de faire quoi que ce soit." #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 diff --git a/addons/anonymization/i18n/gl.po b/addons/anonymization/i18n/gl.po index 21ad78b074c..4067e488777 100644 --- a/addons/anonymization/i18n/gl.po +++ b/addons/anonymization/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hr.po b/addons/anonymization/i18n/hr.po index b615ec364c4..8e535ee3b7d 100644 --- a/addons/anonymization/i18n/hr.po +++ b/addons/anonymization/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hu.po b/addons/anonymization/i18n/hu.po index 8a017007656..fc7426a8b74 100644 --- a/addons/anonymization/i18n/hu.po +++ b/addons/anonymization/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/it.po b/addons/anonymization/i18n/it.po index d7a8122a5a4..f8e5c576fb0 100644 --- a/addons/anonymization/i18n/it.po +++ b/addons/anonymization/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ja.po b/addons/anonymization/i18n/ja.po index 824510d7f36..0c81cccf28e 100644 --- a/addons/anonymization/i18n/ja.po +++ b/addons/anonymization/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/lv.po b/addons/anonymization/i18n/lv.po index bf52a95945c..e09bae6162d 100644 --- a/addons/anonymization/i18n/lv.po +++ b/addons/anonymization/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/mk.po b/addons/anonymization/i18n/mk.po index 416bd2297c2..04f1fcafcbb 100644 --- a/addons/anonymization/i18n/mk.po +++ b/addons/anonymization/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/mn.po b/addons/anonymization/i18n/mn.po index 8077ae1f2da..6dbe2eb350a 100644 --- a/addons/anonymization/i18n/mn.po +++ b/addons/anonymization/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -89,7 +89,7 @@ msgstr "" #: field:ir.model.fields.anonymization.history,state:0 #: field:ir.model.fields.anonymize.wizard,state:0 msgid "Status" -msgstr "" +msgstr "Төлөв" #. module: anonymization #: field:ir.model.fields.anonymization.history,direction:0 @@ -122,7 +122,7 @@ msgstr "" #. module: anonymization #: field:ir.model.fields.anonymization,state:0 msgid "unknown" -msgstr "" +msgstr "үл мэдэгдэх" #. module: anonymization #: code:addons/anonymization/anonymization.py:448 @@ -150,7 +150,7 @@ msgstr "Огноо" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_export:0 msgid "Export" -msgstr "" +msgstr "Экспорт" #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 @@ -203,7 +203,7 @@ msgstr "" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 msgid "Summary" -msgstr "" +msgstr "Хураангуй" #. module: anonymization #: view:ir.model.fields.anonymization:0 @@ -250,7 +250,7 @@ msgstr "Нэр мэдэгдэхгүй болгосон түүх" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,model_name:0 msgid "Model" -msgstr "" +msgstr "Модел" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_history @@ -287,7 +287,7 @@ msgstr "Файлын нэр" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Дараалал" #. module: anonymization #: selection:ir.model.fields.anonymization.history,direction:0 diff --git a/addons/anonymization/i18n/nb.po b/addons/anonymization/i18n/nb.po index 93c739fdbf1..981bb9989d3 100644 --- a/addons/anonymization/i18n/nb.po +++ b/addons/anonymization/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nl.po b/addons/anonymization/i18n/nl.po index e293ac0f270..dae5df4ef6a 100644 --- a/addons/anonymization/i18n/nl.po +++ b/addons/anonymization/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pl.po b/addons/anonymization/i18n/pl.po index 5103fc47098..4d2ae876ca2 100644 --- a/addons/anonymization/i18n/pl.po +++ b/addons/anonymization/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -65,7 +65,7 @@ msgstr "Pole" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 msgid "New" -msgstr "" +msgstr "Nowe" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 @@ -84,6 +84,8 @@ msgid "" "Before executing the anonymization process, you should make a backup of your " "database." msgstr "" +"Przed przeprowadzeniem procesu anonimizacji, powinieneś wykonać kopię " +"zapasową bazy danych." #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 @@ -106,18 +108,18 @@ msgstr "Pola anonimowe" #. module: anonymization #: model:ir.ui.menu,name:anonymization.menu_administration_anonymization msgid "Database anonymization" -msgstr "" +msgstr "Anonimowość bazy danych" #. module: anonymization #: selection:ir.model.fields.anonymization.history,direction:0 msgid "clear -> anonymized" -msgstr "" +msgstr "oczyszczony -> anonimowy" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 #: selection:ir.model.fields.anonymize.wizard,state:0 msgid "Anonymized" -msgstr "" +msgstr "Anonimowy" #. module: anonymization #: field:ir.model.fields.anonymization,state:0 @@ -168,17 +170,17 @@ msgstr "" #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 msgid "Database Anonymization" -msgstr "" +msgstr "Anonimizacja bazy danych" #. module: anonymization #: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_wizard msgid "Anonymize database" -msgstr "" +msgstr "Anominizuj bazę danych" #. 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 @@ -208,7 +210,7 @@ msgstr "Podsumowanie" #. module: anonymization #: view:ir.model.fields.anonymization:0 msgid "Anonymized Field" -msgstr "" +msgstr "Pole anonimowe" #. module: anonymization #: code:addons/anonymization/anonymization.py:391 @@ -245,12 +247,12 @@ msgstr "Nazwa obiektu" #: view:ir.model.fields.anonymization.history:0 #: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_history msgid "Anonymization History" -msgstr "" +msgstr "Historia anominizacji" #. module: anonymization #: field:ir.model.fields.anonymization.migration.fix,model_name:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_history @@ -271,13 +273,13 @@ msgstr "" #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "" +msgstr "Błąd !" #. 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 "" +msgstr "Anominizuj bazę danych" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,name:0 @@ -292,7 +294,7 @@ msgstr "Numeracja" #. module: anonymization #: selection:ir.model.fields.anonymization.history,direction:0 msgid "anonymized -> clear" -msgstr "" +msgstr "anominizacja -> czyszczenie" #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 diff --git a/addons/anonymization/i18n/pt.po b/addons/anonymization/i18n/pt.po index bf240290358..c59a8f2b0a8 100644 --- a/addons/anonymization/i18n/pt.po +++ b/addons/anonymization/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pt_BR.po b/addons/anonymization/i18n/pt_BR.po index cf676e5719c..6a3466804b2 100644 --- a/addons/anonymization/i18n/pt_BR.po +++ b/addons/anonymization/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "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" +"\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-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ro.po b/addons/anonymization/i18n/ro.po index 8269097b1c2..365f7134439 100644 --- a/addons/anonymization/i18n/ro.po +++ b/addons/anonymization/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ru.po b/addons/anonymization/i18n/ru.po index e0f8f7661e0..1d48ad984e4 100644 --- a/addons/anonymization/i18n/ru.po +++ b/addons/anonymization/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sl.po b/addons/anonymization/i18n/sl.po index bfbe098adfa..c526a26dadb 100644 --- a/addons/anonymization/i18n/sl.po +++ b/addons/anonymization/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sq.po b/addons/anonymization/i18n/sq.po index c98512514a7..66f112f193e 100644 --- a/addons/anonymization/i18n/sq.po +++ b/addons/anonymization/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sr@latin.po b/addons/anonymization/i18n/sr@latin.po index 88cb49286c5..1bc1fef854f 100644 --- a/addons/anonymization/i18n/sr@latin.po +++ b/addons/anonymization/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sv.po b/addons/anonymization/i18n/sv.po index 9cf76b69963..4cd25f896ea 100644 --- a/addons/anonymization/i18n/sv.po +++ b/addons/anonymization/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/tr.po b/addons/anonymization/i18n/tr.po index 2a243dd6fa6..5c9d1153f88 100644 --- a/addons/anonymization/i18n/tr.po +++ b/addons/anonymization/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_CN.po b/addons/anonymization/i18n/zh_CN.po index a89e7de8b36..abbedc08a01 100644 --- a/addons/anonymization/i18n/zh_CN.po +++ b/addons/anonymization/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_TW.po b/addons/anonymization/i18n/zh_TW.po index eb9349b5df9..9f31bdf4107 100644 --- a/addons/anonymization/i18n/zh_TW.po +++ b/addons/anonymization/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/association/i18n/ar.po b/addons/association/i18n/ar.po index 5e9b72b3d13..baabb1aba4f 100644 --- a/addons/association/i18n/ar.po +++ b/addons/association/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bg.po b/addons/association/i18n/bg.po index d5303404864..ca4951201f6 100644 --- a/addons/association/i18n/bg.po +++ b/addons/association/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bs.po b/addons/association/i18n/bs.po index 8e311934064..8408b70aa88 100644 --- a/addons/association/i18n/bs.po +++ b/addons/association/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ca.po b/addons/association/i18n/ca.po index 1a3e2ce987c..b782228d530 100644 --- a/addons/association/i18n/ca.po +++ b/addons/association/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/cs.po b/addons/association/i18n/cs.po index c03f819a541..a2846a652a4 100644 --- a/addons/association/i18n/cs.po +++ b/addons/association/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Language: Czech\n" #. module: association diff --git a/addons/association/i18n/da.po b/addons/association/i18n/da.po index 31ffe667fae..0c626c064c4 100644 --- a/addons/association/i18n/da.po +++ b/addons/association/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/de.po b/addons/association/i18n/de.po index c2e1acd3563..1c28278f6a0 100644 --- a/addons/association/i18n/de.po +++ b/addons/association/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 @@ -30,7 +30,7 @@ msgstr "Veranstaltungsmanagement" #. module: association #: field:profile.association.config.install_modules_wizard,project_gtd:0 msgid "Getting Things Done" -msgstr "To Do Liste (GTD)" +msgstr "Getting Things Done" #. module: association #: model:ir.module.module,description:association.module_meta_information @@ -76,7 +76,7 @@ msgid "" "Tracks and manages employee expenses, and can automatically re-invoice " "clients if the expenses are project-related." msgstr "" -"Erfassung und Management von Mitarbeiter Ausgaben, inklusive der Möglichkeit " +"Erfassung und Management von Mitarbeiterausgaben, inklusive der Möglichkeit " "diese an Kunden weiterzuberechnen." #. module: association @@ -85,8 +85,8 @@ msgid "" "GTD is a methodology to efficiently organise yourself and your tasks. This " "module fully integrates GTD principle with OpenERP's project management." msgstr "" -"GTD ist eine Methode zur effizienten Organisation von Aufgaben. Dieses " -"Module ist voll integriert mit dem openERP Projektmanagement Modul." +"GTD ist eine Methode zur effizienten Organisation von Aufgaben. Dieses Modul " +"ist voll integriert mit dem OpenERP Projektmanagement Modul." #. module: association #: view:profile.association.config.install_modules_wizard:0 diff --git a/addons/association/i18n/el.po b/addons/association/i18n/el.po index 67ecf866c10..28a8f2c76f8 100644 --- a/addons/association/i18n/el.po +++ b/addons/association/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/en_GB.po b/addons/association/i18n/en_GB.po index 4d23580e582..d6ccc230597 100644 --- a/addons/association/i18n/en_GB.po +++ b/addons/association/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es.po b/addons/association/i18n/es.po index 0f93cff7fe9..392f946cf53 100644 --- a/addons/association/i18n/es.po +++ b/addons/association/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_CR.po b/addons/association/i18n/es_CR.po index 010526cbd4f..4b92b55e91f 100644 --- a/addons/association/i18n/es_CR.po +++ b/addons/association/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: association diff --git a/addons/association/i18n/es_EC.po b/addons/association/i18n/es_EC.po index 5188b5f3ee9..b31ac8ba6c0 100644 --- a/addons/association/i18n/es_EC.po +++ b/addons/association/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_PY.po b/addons/association/i18n/es_PY.po index 8e27ca194f7..c53f2d0ef73 100644 --- a/addons/association/i18n/es_PY.po +++ b/addons/association/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/et.po b/addons/association/i18n/et.po index 17cbf1e9f0e..e520c33761a 100644 --- a/addons/association/i18n/et.po +++ b/addons/association/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fa.po b/addons/association/i18n/fa.po index 17891643291..1c74565eb13 100644 --- a/addons/association/i18n/fa.po +++ b/addons/association/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fi.po b/addons/association/i18n/fi.po index 7eef338821e..af52cff59cb 100644 --- a/addons/association/i18n/fi.po +++ b/addons/association/i18n/fi.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 msgid "Wiki" -msgstr "" +msgstr "Wiki" #. module: association #: view:profile.association.config.install_modules_wizard:0 @@ -30,12 +30,14 @@ msgstr "Tapahtumienhallinta" #. module: association #: field:profile.association.config.install_modules_wizard,project_gtd:0 msgid "Getting Things Done" -msgstr "Saada asiat tehtyä" +msgstr "Getting Things Done" #. module: association #: model:ir.module.module,description:association.module_meta_information msgid "This module is to create Profile for Associates" -msgstr "Tämä moduuli mahdollistaa yhdistysjäsenprofiilien luonnin" +msgstr "" +"Tämä moduuli luo asennusprofiilin jäsenistön hallintaan seuroille, " +"yhdistyksille ja järjestöille" #. module: association #: field:profile.association.config.install_modules_wizard,progress:0 @@ -48,8 +50,7 @@ msgid "" "Here are specific applications related to the Association Profile you " "selected." msgstr "" -"Tässä on määritellyt ohjelmat jotka liittyvät valitsemaasi " -"yhdistysprofiiliin." +"Tässä ovat ohjelmat, jotka liittyvät valitsemasi profiilin jäsenhallintoon." #. module: association #: view:profile.association.config.install_modules_wizard:0 @@ -88,7 +89,7 @@ msgstr "" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Resources Management" -msgstr "Resurssien hallinta" +msgstr "Resurssihallinta" #. module: association #: model:ir.module.module,shortdesc:association.module_meta_information @@ -98,13 +99,13 @@ msgstr "Yhdistysprofiili" #. module: association #: field:profile.association.config.install_modules_wizard,hr_expense:0 msgid "Expenses Tracking" -msgstr "Kulujen seuranta" +msgstr "Kuluseuranta" #. module: association #: model:ir.actions.act_window,name:association.action_config_install_module #: view:profile.association.config.install_modules_wizard:0 msgid "Association Application Configuration" -msgstr "Jäsenhakemuksen konfiguraatio" +msgstr "Yhdistysten ohjelmiston määrittäminen." #. module: association #: help:profile.association.config.install_modules_wizard,wiki:0 @@ -113,7 +114,7 @@ msgid "" "business knowledge and share it with and between your employees." msgstr "" "Mahdollistaa Wiki-sivujen luonnin ja sivujen kokoamisen ryhmiksi, mikä " -"tehostaa työntekijöiden välistä liiketoiminnan tietämyksen hallintaa." +"tehostaa työntekijöiden välistä liiketoimintatietämyksen hallintaa." #. module: association #: help:profile.association.config.install_modules_wizard,project:0 @@ -138,7 +139,7 @@ msgstr "Tapahtumat" #: view:profile.association.config.install_modules_wizard:0 #: field:profile.association.config.install_modules_wizard,project:0 msgid "Project Management" -msgstr "Projektinhallinta" +msgstr "Projektihallinta" #. module: association #: view:profile.association.config.install_modules_wizard:0 diff --git a/addons/association/i18n/fr.po b/addons/association/i18n/fr.po index a18931fd0e6..a526ed6774d 100644 --- a/addons/association/i18n/fr.po +++ b/addons/association/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gl.po b/addons/association/i18n/gl.po index 42885f3d136..399f4e5507d 100644 --- a/addons/association/i18n/gl.po +++ b/addons/association/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gu.po b/addons/association/i18n/gu.po index 2a13b4a1fd6..9910a624ecd 100644 --- a/addons/association/i18n/gu.po +++ b/addons/association/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hr.po b/addons/association/i18n/hr.po index b71ab92168b..9c462ec6400 100644 --- a/addons/association/i18n/hr.po +++ b/addons/association/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hu.po b/addons/association/i18n/hu.po index 7d9a7bd865f..073737dc891 100644 --- a/addons/association/i18n/hu.po +++ b/addons/association/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/id.po b/addons/association/i18n/id.po index 1fc507e6633..92088f071cd 100644 --- a/addons/association/i18n/id.po +++ b/addons/association/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/it.po b/addons/association/i18n/it.po index c5cf9d921cd..4c9afefb08a 100644 --- a/addons/association/i18n/it.po +++ b/addons/association/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2012-12-15 15:09+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ja.po b/addons/association/i18n/ja.po index 3487a696246..a5328773435 100644 --- a/addons/association/i18n/ja.po +++ b/addons/association/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ko.po b/addons/association/i18n/ko.po index 4e8acbd6ae5..1151460646a 100644 --- a/addons/association/i18n/ko.po +++ b/addons/association/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lo.po b/addons/association/i18n/lo.po index 9693ed8197b..5aaa554028c 100644 --- a/addons/association/i18n/lo.po +++ b/addons/association/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lt.po b/addons/association/i18n/lt.po index e7497631ddf..42b3d507881 100644 --- a/addons/association/i18n/lt.po +++ b/addons/association/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lv.po b/addons/association/i18n/lv.po index f9fd24caa0c..dc9c2ac6c92 100644 --- a/addons/association/i18n/lv.po +++ b/addons/association/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/mk.po b/addons/association/i18n/mk.po index e327e3d9bce..5ba2083785e 100644 --- a/addons/association/i18n/mk.po +++ b/addons/association/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/mn.po b/addons/association/i18n/mn.po index bd90c60c902..9358ed7eb99 100644 --- a/addons/association/i18n/mn.po +++ b/addons/association/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nb.po b/addons/association/i18n/nb.po index 3d28d53542c..9a6db0ef3c2 100644 --- a/addons/association/i18n/nb.po +++ b/addons/association/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nl.po b/addons/association/i18n/nl.po index ac2df0b98af..f7b2dad0dfe 100644 --- a/addons/association/i18n/nl.po +++ b/addons/association/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pl.po b/addons/association/i18n/pl.po index 433e619eec4..d8f92e4b282 100644 --- a/addons/association/i18n/pl.po +++ b/addons/association/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 @@ -24,22 +24,23 @@ msgstr "Wiki" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Event Management" -msgstr "" +msgstr "Zarządzanie wydarzeniami" #. module: association #: field:profile.association.config.install_modules_wizard,project_gtd:0 msgid "Getting Things Done" -msgstr "" +msgstr "GTD - planowanie osobiste" #. module: association #: model:ir.module.module,description:association.module_meta_information msgid "This module is to create Profile for Associates" msgstr "" +"Ten moduł jest przeznaczony do utworzenia Profilu dla stowarzyszonych" #. module: association #: field:profile.association.config.install_modules_wizard,progress:0 msgid "Configuration Progress" -msgstr "" +msgstr "Postęp konfiguracji" #. module: association #: view:profile.association.config.install_modules_wizard:0 @@ -47,6 +48,8 @@ msgid "" "Here are specific applications related to the Association Profile you " "selected." msgstr "" +"Tu są specyficzne aplikacje odnoszące się do Profilu stowarzyszonych który " +"wybrałeś." #. module: association #: view:profile.association.config.install_modules_wizard:0 @@ -56,7 +59,7 @@ msgstr "tytuł" #. module: association #: help:profile.association.config.install_modules_wizard,event_project:0 msgid "Helps you to manage and organize your events." -msgstr "" +msgstr "Pomaga tobie zarządzać i organizować wydarzenia." #. module: association #: field:profile.association.config.install_modules_wizard,config_logo:0 @@ -69,6 +72,8 @@ msgid "" "Tracks and manages employee expenses, and can automatically re-invoice " "clients if the expenses are project-related." msgstr "" +"Śledzi i zarządza wydatki pracowników, oraz może automatycznie refakturować " +"klientów jeśli wydatki są powiązane z projektem." #. module: association #: help:profile.association.config.install_modules_wizard,project_gtd:0 @@ -76,27 +81,29 @@ msgid "" "GTD is a methodology to efficiently organise yourself and your tasks. This " "module fully integrates GTD principle with OpenERP's project management." msgstr "" +"GTD jest metodologią do efektywnej organizacji twojej pracy. Ten moduł " +"integruje zasady GTD z funkcjonalnością projektów w OpenERP." #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Resources Management" -msgstr "" +msgstr "Zarządzanie zasobami" #. module: association #: model:ir.module.module,shortdesc:association.module_meta_information msgid "Association profile" -msgstr "" +msgstr "Profil stowarzyszonych" #. module: association #: field:profile.association.config.install_modules_wizard,hr_expense:0 msgid "Expenses Tracking" -msgstr "" +msgstr "Śledzenie wydatków" #. module: association #: model:ir.actions.act_window,name:association.action_config_install_module #: view:profile.association.config.install_modules_wizard:0 msgid "Association Application Configuration" -msgstr "" +msgstr "Konfiguracja aplikacji stowarzyszonych" #. module: association #: help:profile.association.config.install_modules_wizard,wiki:0 @@ -104,6 +111,8 @@ msgid "" "Lets you create wiki pages and page groups in order to keep track of " "business knowledge and share it with and between your employees." msgstr "" +"Pozwala tobie utworzyć strony wiki oraz strony grup w celu śledzenia wiedzy " +"biznesowej i dzielenia się nią pomiędzy twoimi pracownikami." #. module: association #: help:profile.association.config.install_modules_wizard,project:0 @@ -111,6 +120,8 @@ msgid "" "Helps you manage your projects and tasks by tracking them, generating " "plannings, etc..." msgstr "" +"Pomaga prowadzić twoje projekty i zadania przez ich śledzenie, generowanie " +"planowania, itd..." #. module: association #: model:ir.model,name:association.model_profile_association_config_install_modules_wizard @@ -120,15 +131,15 @@ msgstr "" #. module: association #: field:profile.association.config.install_modules_wizard,event_project:0 msgid "Events" -msgstr "" +msgstr "Wydarzenia" #. module: association #: view:profile.association.config.install_modules_wizard:0 #: field:profile.association.config.install_modules_wizard,project:0 msgid "Project Management" -msgstr "" +msgstr "Zarządzanie projektem" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Configure" -msgstr "" +msgstr "Konfiguruj" diff --git a/addons/association/i18n/pt.po b/addons/association/i18n/pt.po index 92ac2b97eb5..df00c07b2b5 100644 --- a/addons/association/i18n/pt.po +++ b/addons/association/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pt_BR.po b/addons/association/i18n/pt_BR.po index 9711295883c..e24a3a9240e 100644 --- a/addons/association/i18n/pt_BR.po +++ b/addons/association/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ro.po b/addons/association/i18n/ro.po index 863dc8f7740..b7e4a1a837c 100644 --- a/addons/association/i18n/ro.po +++ b/addons/association/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ru.po b/addons/association/i18n/ru.po index 69233e09d32..875e24d5ed3 100644 --- a/addons/association/i18n/ru.po +++ b/addons/association/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sl.po b/addons/association/i18n/sl.po index f4d21c6a2cf..70df3fce4fe 100644 --- a/addons/association/i18n/sl.po +++ b/addons/association/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sq.po b/addons/association/i18n/sq.po index c6655fe7369..31d4aa6b325 100644 --- a/addons/association/i18n/sq.po +++ b/addons/association/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr.po b/addons/association/i18n/sr.po index 05587f22377..0c642296a40 100644 --- a/addons/association/i18n/sr.po +++ b/addons/association/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr@latin.po b/addons/association/i18n/sr@latin.po index c944fa434c5..dce9efc939f 100644 --- a/addons/association/i18n/sr@latin.po +++ b/addons/association/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sv.po b/addons/association/i18n/sv.po index 35cef82d04a..731054748a8 100644 --- a/addons/association/i18n/sv.po +++ b/addons/association/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tlh.po b/addons/association/i18n/tlh.po index e7497631ddf..42b3d507881 100644 --- a/addons/association/i18n/tlh.po +++ b/addons/association/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tr.po b/addons/association/i18n/tr.po index 633f05d5bdb..0208a7dcb5d 100644 --- a/addons/association/i18n/tr.po +++ b/addons/association/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/uk.po b/addons/association/i18n/uk.po index ac5c8e246c0..7861398131b 100644 --- a/addons/association/i18n/uk.po +++ b/addons/association/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/vi.po b/addons/association/i18n/vi.po index 8dda47d9b63..cfcd2d141d7 100644 --- a/addons/association/i18n/vi.po +++ b/addons/association/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_CN.po b/addons/association/i18n/zh_CN.po index 344102627e0..9358a80c71a 100644 --- a/addons/association/i18n/zh_CN.po +++ b/addons/association/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_TW.po b/addons/association/i18n/zh_TW.po index 33566eec949..952c0ce5596 100644 --- a/addons/association/i18n/zh_TW.po +++ b/addons/association/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/audittrail/i18n/ar.po b/addons/audittrail/i18n/ar.po index 62b8c9e9141..4d5ce4155f5 100644 --- a/addons/audittrail/i18n/ar.po +++ b/addons/audittrail/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 @@ -44,7 +44,7 @@ msgstr "تم الإشتراك" #: code:addons/audittrail/audittrail.py:408 #, python-format msgid "'%s' Model does not exist..." -msgstr "" +msgstr "'%s' لا وجود للنموذج ..." #. module: audittrail #: view:audittrail.rule:0 @@ -300,7 +300,7 @@ msgstr "محذوفات التسجيل" #: view:audittrail.log:0 #: view:audittrail.rule:0 msgid "Model" -msgstr "" +msgstr "نموذج" #. module: audittrail #: field:audittrail.log.line,field_description:0 @@ -341,7 +341,7 @@ msgstr "قيمة جديدة" #: code:addons/audittrail/audittrail.py:223 #, python-format msgid "'%s' field does not exist in '%s' model" -msgstr "" +msgstr "'%s' حقل غيرد موجود في '%s' نموذج" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bg.po b/addons/audittrail/i18n/bg.po index c591c91f0f4..f88fa7f6ab8 100644 --- a/addons/audittrail/i18n/bg.po +++ b/addons/audittrail/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bs.po b/addons/audittrail/i18n/bs.po index 001ac4a2988..e082f132ce1 100644 --- a/addons/audittrail/i18n/bs.po +++ b/addons/audittrail/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ca.po b/addons/audittrail/i18n/ca.po index 3dbc431fd93..bc3503f98c3 100644 --- a/addons/audittrail/i18n/ca.po +++ b/addons/audittrail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/cs.po b/addons/audittrail/i18n/cs.po index f10361638d0..790e68f3cf9 100644 --- a/addons/audittrail/i18n/cs.po +++ b/addons/audittrail/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Language: Czech\n" #. module: audittrail diff --git a/addons/audittrail/i18n/da.po b/addons/audittrail/i18n/da.po index c1147a97c80..9bd89c44be4 100644 --- a/addons/audittrail/i18n/da.po +++ b/addons/audittrail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/de.po b/addons/audittrail/i18n/de.po index f70a2a6e0c9..1effab02448 100644 --- a/addons/audittrail/i18n/de.po +++ b/addons/audittrail/i18n/de.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\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" +"Last-Translator: Ferdinand \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/el.po b/addons/audittrail/i18n/el.po index 7c1299ca925..9bec5ac13d9 100644 --- a/addons/audittrail/i18n/el.po +++ b/addons/audittrail/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es.po b/addons/audittrail/i18n/es.po index a8d10aaace0..dc08381d075 100644 --- a/addons/audittrail/i18n/es.po +++ b/addons/audittrail/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index d98d6f8a871..877a0d22964 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_CR.po b/addons/audittrail/i18n/es_CR.po index df1b62efeb5..a818be4834e 100644 --- a/addons/audittrail/i18n/es_CR.po +++ b/addons/audittrail/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: audittrail diff --git a/addons/audittrail/i18n/es_EC.po b/addons/audittrail/i18n/es_EC.po index c3321c89f1a..ea5ae262da4 100644 --- a/addons/audittrail/i18n/es_EC.po +++ b/addons/audittrail/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_PY.po b/addons/audittrail/i18n/es_PY.po index e7cf1e92c1e..2ba23c26aaa 100644 --- a/addons/audittrail/i18n/es_PY.po +++ b/addons/audittrail/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/et.po b/addons/audittrail/i18n/et.po index 44fa0ac45c5..36d31e53079 100644 --- a/addons/audittrail/i18n/et.po +++ b/addons/audittrail/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa.po b/addons/audittrail/i18n/fa.po index ea1356225e3..080fd1ed00d 100644 --- a/addons/audittrail/i18n/fa.po +++ b/addons/audittrail/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa_AF.po b/addons/audittrail/i18n/fa_AF.po index 61ce7bab0c9..088d2b3f1ee 100644 --- a/addons/audittrail/i18n/fa_AF.po +++ b/addons/audittrail/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fi.po b/addons/audittrail/i18n/fi.po index a3ca7aab971..0c9b613c42e 100644 --- a/addons/audittrail/i18n/fi.po +++ b/addons/audittrail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fr.po b/addons/audittrail/i18n/fr.po index 652bfbfca19..e00863d5bd8 100644 --- a/addons/audittrail/i18n/fr.po +++ b/addons/audittrail/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\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" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 @@ -36,7 +36,7 @@ msgstr "Journal" #: view:audittrail.rule:0 #: selection:audittrail.rule,state:0 msgid "Subscribed" -msgstr "S'abonner" +msgstr "Abonné" #. module: audittrail #: code:addons/audittrail/audittrail.py:260 diff --git a/addons/audittrail/i18n/gl.po b/addons/audittrail/i18n/gl.po index 43818518e24..ac51c6e7163 100644 --- a/addons/audittrail/i18n/gl.po +++ b/addons/audittrail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gu.po b/addons/audittrail/i18n/gu.po index ca79cd5aa0f..7cf2945c0e7 100644 --- a/addons/audittrail/i18n/gu.po +++ b/addons/audittrail/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hr.po b/addons/audittrail/i18n/hr.po index 27b0a67b077..5cee04a10ca 100644 --- a/addons/audittrail/i18n/hr.po +++ b/addons/audittrail/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hu.po b/addons/audittrail/i18n/hu.po index 2a18fb6ec4c..6a63f83f849 100644 --- a/addons/audittrail/i18n/hu.po +++ b/addons/audittrail/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/id.po b/addons/audittrail/i18n/id.po index 185fb1927fd..8cd3163917d 100644 --- a/addons/audittrail/i18n/id.po +++ b/addons/audittrail/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/it.po b/addons/audittrail/i18n/it.po index 7d45cda396d..64df8cc2f2c 100644 --- a/addons/audittrail/i18n/it.po +++ b/addons/audittrail/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ja.po b/addons/audittrail/i18n/ja.po index 436fb0b0f66..af63cb923c7 100644 --- a/addons/audittrail/i18n/ja.po +++ b/addons/audittrail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ko.po b/addons/audittrail/i18n/ko.po index a0634eff906..68fc339678c 100644 --- a/addons/audittrail/i18n/ko.po +++ b/addons/audittrail/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po index 15ddb9e7fb2..e0ec95a413c 100644 --- a/addons/audittrail/i18n/lt.po +++ b/addons/audittrail/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lv.po b/addons/audittrail/i18n/lv.po index 96edc3f28c1..04c55e57b2a 100644 --- a/addons/audittrail/i18n/lv.po +++ b/addons/audittrail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mk.po b/addons/audittrail/i18n/mk.po index 0cb845bfae4..7b41a219f36 100644 --- a/addons/audittrail/i18n/mk.po +++ b/addons/audittrail/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mn.po b/addons/audittrail/i18n/mn.po index d80f6955571..c7d5d5f7387 100644 --- a/addons/audittrail/i18n/mn.po +++ b/addons/audittrail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nb.po b/addons/audittrail/i18n/nb.po index 87c23d5aaf0..50dcdf91d15 100644 --- a/addons/audittrail/i18n/nb.po +++ b/addons/audittrail/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po index 39d33365e9b..4a600ab283e 100644 --- a/addons/audittrail/i18n/nl.po +++ b/addons/audittrail/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index 68b5013cc6b..ca42afed75a 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/oc.po b/addons/audittrail/i18n/oc.po index bac63fe9a00..3b6d523c28d 100644 --- a/addons/audittrail/i18n/oc.po +++ b/addons/audittrail/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pl.po b/addons/audittrail/i18n/pl.po index d5551694468..20d7cb3057d 100644 --- a/addons/audittrail/i18n/pl.po +++ b/addons/audittrail/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po index 36ff06e009d..f1da6040cc6 100644 --- a/addons/audittrail/i18n/pt.po +++ b/addons/audittrail/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index 5bf44918453..94343a6b9b4 100644 --- a/addons/audittrail/i18n/pt_BR.po +++ b/addons/audittrail/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "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" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po index b6da059c8b9..01f76f8a93a 100644 --- a/addons/audittrail/i18n/ro.po +++ b/addons/audittrail/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ru.po b/addons/audittrail/i18n/ru.po index ba8a9cdca6b..14fe3e43807 100644 --- a/addons/audittrail/i18n/ru.po +++ b/addons/audittrail/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sl.po b/addons/audittrail/i18n/sl.po index 93ff4619339..3d5845008e8 100644 --- a/addons/audittrail/i18n/sl.po +++ b/addons/audittrail/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 @@ -25,7 +25,7 @@ msgstr "Besedilo stare vrednosti: " #: code:addons/audittrail/audittrail.py:76 #, python-format msgid "WARNING: audittrail is not part of the pool" -msgstr "" +msgstr "OPOZORILO:revizijska sled ni del pool-a" #. module: audittrail #: field:audittrail.log.line,log_id:0 @@ -49,13 +49,13 @@ msgstr "'%s' Model ne obstaja ..." #. module: audittrail #: view:audittrail.rule:0 msgid "Subscribed Rule" -msgstr "" +msgstr "Naročeno pravilo" #. module: audittrail #: view:audittrail.rule:0 #: model:ir.model,name:audittrail.model_audittrail_rule msgid "Audittrail Rule" -msgstr "" +msgstr "Pravilo revizijske sledi" #. module: audittrail #: view:audittrail.rule:0 @@ -103,6 +103,8 @@ msgid "" "Select this if you want to keep track of read/open on any record of the " "object of this rule" msgstr "" +"Označite, če želite slediti čitanju/odpiranju kateregakoli zapisa objekta " +"tega pravila" #. module: audittrail #: field:audittrail.log,method:0 @@ -127,7 +129,7 @@ msgstr "Oznakavira" #. module: audittrail #: help:audittrail.rule,user_id:0 msgid "if User is not added then it will applicable for all users" -msgstr "" +msgstr "Če uporabnik ni dodan, bo uporabno za vse uporabnike" #. module: audittrail #: help:audittrail.rule,log_workflow:0 @@ -135,6 +137,8 @@ msgid "" "Select this if you want to keep track of workflow on any record of the " "object of this rule" msgstr "" +"Izberite, če želite slediti delovnemu toku kateregakoli zapisa objekta tega " +"pravila" #. module: audittrail #: field:audittrail.rule,user_id:0 @@ -171,13 +175,13 @@ msgstr "Besedilo nove vrednosti: " #. module: audittrail #: view:audittrail.rule:0 msgid "Search Audittrail Rule" -msgstr "" +msgstr "Iskanje revizijskega pravila" #. 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 "" +msgstr "Pravila revizijske sledi" #. module: audittrail #: view:audittrail.log:0 @@ -201,6 +205,8 @@ msgid "" "Select this if you want to keep track of modification on any record of the " "object of this rule" msgstr "" +"Izberite, če želite slediti spremembam kateregakoli zapisa objekta tega " +"pravila" #. module: audittrail #: view:audittrail.rule:0 @@ -210,7 +216,7 @@ msgstr "Pravilo revizijske sledi" #. module: audittrail #: help:audittrail.rule,object_id:0 msgid "Select object for which you want to generate log." -msgstr "" +msgstr "Izberite objekt za katerega želite izdelati dnevnik" #. module: audittrail #: model:ir.ui.menu,name:audittrail.menu_audit @@ -220,18 +226,18 @@ msgstr "Revizija" #. module: audittrail #: field:audittrail.rule,log_workflow:0 msgid "Log Workflow" -msgstr "" +msgstr "Beleženje delovnega toka" #. module: audittrail #: field:audittrail.rule,log_read:0 msgid "Log Reads" -msgstr "" +msgstr "Beleženje čitanja" #. module: audittrail #: code:addons/audittrail/audittrail.py:77 #, python-format msgid "Change audittrail depends -- Setting rule as DRAFT" -msgstr "" +msgstr "Spremeni revizijsko sled -- Nastavi pravilo kot OSNUTEK" #. module: audittrail #: field:audittrail.log,line_ids:0 @@ -246,7 +252,7 @@ msgstr "Polja" #. module: audittrail #: field:audittrail.rule,log_create:0 msgid "Log Creates" -msgstr "" +msgstr "Beleženje kreiranja" #. module: audittrail #: help:audittrail.rule,log_unlink:0 @@ -254,6 +260,7 @@ msgid "" "Select this if you want to keep track of deletion on any record of the " "object of this rule" msgstr "" +"Izberite, če želite slediti brisanju kateregakoli zapisa objekta tega pravila" #. module: audittrail #: view:audittrail.log:0 @@ -264,12 +271,12 @@ msgstr "Uporabnik" #. module: audittrail #: field:audittrail.rule,action_id:0 msgid "Action ID" -msgstr "" +msgstr "Oznaka dejanja" #. module: audittrail #: view:audittrail.rule:0 msgid "Users (if User is not added then it will applicable for all users)" -msgstr "" +msgstr "Uporabnik (če ni dodan, bo veljalo za vse uporabnike)" #. module: audittrail #: view:audittrail.rule:0 @@ -282,11 +289,13 @@ msgid "" "There is already a rule defined on this object\n" " You cannot define another: please edit the existing one." msgstr "" +"Za ta objekt je že določeno pravilo\n" +"Ne morete določiti drugega: prosim, uredite obstoječega." #. module: audittrail #: field:audittrail.rule,log_unlink:0 msgid "Log Deletes" -msgstr "" +msgstr "Beleži brisanja" #. module: audittrail #: view:audittrail.log:0 @@ -302,12 +311,12 @@ msgstr "Opis polja" #. module: audittrail #: view:audittrail.log:0 msgid "Search Audittrail Log" -msgstr "" +msgstr "Iskanje revizijske sledi" #. module: audittrail #: field:audittrail.rule,log_write:0 msgid "Log Writes" -msgstr "" +msgstr "Beleži pisanja" #. module: audittrail #: view:audittrail.view.log:0 @@ -333,7 +342,7 @@ msgstr "Nova vrednost" #: code:addons/audittrail/audittrail.py:223 #, python-format msgid "'%s' field does not exist in '%s' model" -msgstr "" +msgstr "'%s' polje ne obstaja v '%s' modelu" #. module: audittrail #: view:audittrail.log:0 @@ -349,13 +358,13 @@ msgstr "Osnutek pravila" #: view:audittrail.log:0 #: model:ir.model,name:audittrail.model_audittrail_log msgid "Audittrail Log" -msgstr "" +msgstr "Revizijska sled" #. 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 "" +msgstr "Izberite, če želite slediti aktivnostim objekta tega pravila" #. module: audittrail #: view:audittrail.log:0 @@ -375,12 +384,12 @@ msgstr "Prekliči" #. module: audittrail #: model:ir.model,name:audittrail.model_audittrail_view_log msgid "View Log" -msgstr "" +msgstr "Pokaži dnevnik" #. module: audittrail #: model:ir.model,name:audittrail.model_audittrail_log_line msgid "Log Line" -msgstr "" +msgstr "Vrstica" #. module: audittrail #: view:audittrail.view.log:0 @@ -390,7 +399,7 @@ msgstr "ali" #. module: audittrail #: field:audittrail.rule,log_action:0 msgid "Log Action" -msgstr "" +msgstr "Dejanje" #. module: audittrail #: help:audittrail.rule,log_create:0 @@ -398,6 +407,8 @@ msgid "" "Select this if you want to keep track of creation on any record of the " "object of this rule" msgstr "" +"Izberite, če želite slediti kreiranju kateregakoli zapisa objekta tega " +"pravila" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/audittrail/i18n/sq.po b/addons/audittrail/i18n/sq.po index 844e6d1934d..ee42f599baa 100644 --- a/addons/audittrail/i18n/sq.po +++ b/addons/audittrail/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:57+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sr@latin.po b/addons/audittrail/i18n/sr@latin.po index bc0a801c634..ca7292128b7 100644 --- a/addons/audittrail/i18n/sr@latin.po +++ b/addons/audittrail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sv.po b/addons/audittrail/i18n/sv.po index 5fe6479b003..5538c6cbaa1 100644 --- a/addons/audittrail/i18n/sv.po +++ b/addons/audittrail/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tlh.po b/addons/audittrail/i18n/tlh.po index 7ef88029a8e..be0e348c100 100644 --- a/addons/audittrail/i18n/tlh.po +++ b/addons/audittrail/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po index 1e42febd0d4..a9a33329f63 100644 --- a/addons/audittrail/i18n/tr.po +++ b/addons/audittrail/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/uk.po b/addons/audittrail/i18n/uk.po index 7ca5621d6be..9d684385482 100644 --- a/addons/audittrail/i18n/uk.po +++ b/addons/audittrail/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/vi.po b/addons/audittrail/i18n/vi.po index 5a4595c9425..f5cfd2b557e 100644 --- a/addons/audittrail/i18n/vi.po +++ b/addons/audittrail/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index 924e536955d..c872b9517aa 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index 455c0be07d1..34147045bbe 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:58+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:17+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/auth_crypt/i18n/ar.po b/addons/auth_crypt/i18n/ar.po index 4e44b5b25dc..1b717914553 100644 --- a/addons/auth_crypt/i18n/ar.po +++ b/addons/auth_crypt/i18n/ar.po @@ -14,15 +14,15 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 msgid "Encrypted Password" -msgstr "" +msgstr "كلمة المرور المشفرة" #. module: auth_crypt #: model:ir.model,name:auth_crypt.model_res_users msgid "Users" -msgstr "" +msgstr "المستخدمين" diff --git a/addons/auth_crypt/i18n/cs.po b/addons/auth_crypt/i18n/cs.po index df6547f6529..5227025a42e 100644 --- a/addons/auth_crypt/i18n/cs.po +++ b/addons/auth_crypt/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/da.po b/addons/auth_crypt/i18n/da.po index d1e0d789d87..31a1cbd04d5 100644 --- a/addons/auth_crypt/i18n/da.po +++ b/addons/auth_crypt/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 05:42+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/de.po b/addons/auth_crypt/i18n/de.po index aa166e12ac4..a72c47b287b 100644 --- a/addons/auth_crypt/i18n/de.po +++ b/addons/auth_crypt/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/en_GB.po b/addons/auth_crypt/i18n/en_GB.po index 8a74f09ae23..c213b95626a 100644 --- a/addons/auth_crypt/i18n/en_GB.po +++ b/addons/auth_crypt/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/es.po b/addons/auth_crypt/i18n/es.po index 49c7869c264..e87ace268d3 100644 --- a/addons/auth_crypt/i18n/es.po +++ b/addons/auth_crypt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/et.po b/addons/auth_crypt/i18n/et.po index cbe529a053d..7c2ec0f81c7 100644 --- a/addons/auth_crypt/i18n/et.po +++ b/addons/auth_crypt/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 04:41+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/fr.po b/addons/auth_crypt/i18n/fr.po index 13cd70bfff9..8f0da41a6d5 100644 --- a/addons/auth_crypt/i18n/fr.po +++ b/addons/auth_crypt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/hr.po b/addons/auth_crypt/i18n/hr.po index 42728e25736..49372c7d719 100644 --- a/addons/auth_crypt/i18n/hr.po +++ b/addons/auth_crypt/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/hu.po b/addons/auth_crypt/i18n/hu.po index 71781f9c1ec..c6e5cf8b19e 100644 --- a/addons/auth_crypt/i18n/hu.po +++ b/addons/auth_crypt/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/it.po b/addons/auth_crypt/i18n/it.po index cb8f18ea8f5..3c5401e35d8 100644 --- a/addons/auth_crypt/i18n/it.po +++ b/addons/auth_crypt/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/lt.po b/addons/auth_crypt/i18n/lt.po index 4d4d9d97b28..7b5dfc79285 100644 --- a/addons/auth_crypt/i18n/lt.po +++ b/addons/auth_crypt/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/mk.po b/addons/auth_crypt/i18n/mk.po index 00e4dabc668..1a19181d303 100644 --- a/addons/auth_crypt/i18n/mk.po +++ b/addons/auth_crypt/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/mn.po b/addons/auth_crypt/i18n/mn.po index dd1665f22c0..11207309eaa 100644 --- a/addons/auth_crypt/i18n/mn.po +++ b/addons/auth_crypt/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl.po b/addons/auth_crypt/i18n/nl.po index 370cceb443c..77e18c7e631 100644 --- a/addons/auth_crypt/i18n/nl.po +++ b/addons/auth_crypt/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl_BE.po b/addons/auth_crypt/i18n/nl_BE.po index ffc1cd9a4ec..e7124ee19e4 100644 --- a/addons/auth_crypt/i18n/nl_BE.po +++ b/addons/auth_crypt/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-04-15 16:02+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \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: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pl.po b/addons/auth_crypt/i18n/pl.po index c59f72e9d4e..0b71d6cd8ef 100644 --- a/addons/auth_crypt/i18n/pl.po +++ b/addons/auth_crypt/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-03 05:21+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt.po b/addons/auth_crypt/i18n/pt.po index 7ed3a5af67e..6479a7ddc13 100644 --- a/addons/auth_crypt/i18n/pt.po +++ b/addons/auth_crypt/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt_BR.po b/addons/auth_crypt/i18n/pt_BR.po index 36e4faae693..79527221efa 100644 --- a/addons/auth_crypt/i18n/pt_BR.po +++ b/addons/auth_crypt/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ro.po b/addons/auth_crypt/i18n/ro.po index 5a1a238d939..caa4a7d03d3 100644 --- a/addons/auth_crypt/i18n/ro.po +++ b/addons/auth_crypt/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ru.po b/addons/auth_crypt/i18n/ru.po index a5e77c32e69..bf2242e3225 100644 --- a/addons/auth_crypt/i18n/ru.po +++ b/addons/auth_crypt/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sl.po b/addons/auth_crypt/i18n/sl.po index a06627ca1c5..ae1b0e3ed70 100644 --- a/addons/auth_crypt/i18n/sl.po +++ b/addons/auth_crypt/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sv.po b/addons/auth_crypt/i18n/sv.po index 2b35ad91039..73b5e8a8702 100644 --- a/addons/auth_crypt/i18n/sv.po +++ b/addons/auth_crypt/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/tr.po b/addons/auth_crypt/i18n/tr.po index 781fea35a46..22ce63df805 100644 --- a/addons/auth_crypt/i18n/tr.po +++ b/addons/auth_crypt/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/zh_CN.po b/addons/auth_crypt/i18n/zh_CN.po index b3cf6f40a02..df52d8ab99b 100644 --- a/addons/auth_crypt/i18n/zh_CN.po +++ b/addons/auth_crypt/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/zh_TW.po b/addons/auth_crypt/i18n/zh_TW.po index 0c086e1d093..6e044b96d39 100644 --- a/addons/auth_crypt/i18n/zh_TW.po +++ b/addons/auth_crypt/i18n/zh_TW.po @@ -1,43 +1,28 @@ # Chinese (Traditional) translation for openobject-addons -# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2011. +# FIRST AUTHOR , 2013. # 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-08-19 10:28+0000\n" -"Last-Translator: Eric Huang \n" +"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"PO-Revision-Date: 2013-12-29 17:06+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:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users +#. 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 "" - -#~ msgid "Base - Password Encryption" -#~ msgstr "基礎 - 密碼加密" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "請指定密碼 !" - -#~ msgid "You can not have two users with the same login !" -#~ msgstr "您不能同時登入二個使用者!" - -#, python-format -#~ msgid "Error" -#~ msgstr "錯誤" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "所選的公司不是使用者被允許的公司。" - -#~ msgid "res.users" -#~ msgstr "res.users" +msgstr "使用者" diff --git a/addons/auth_ldap/i18n/ar.po b/addons/auth_ldap/i18n/ar.po index 42eb035d60a..b66b36020be 100644 --- a/addons/auth_ldap/i18n/ar.po +++ b/addons/auth_ldap/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/bg.po b/addons/auth_ldap/i18n/bg.po index 38e5d4f1aba..d3c441cdbc3 100644 --- a/addons/auth_ldap/i18n/bg.po +++ b/addons/auth_ldap/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 013f459b094..523e74b74a7 100644 --- a/addons/auth_ldap/i18n/ca.po +++ b/addons/auth_ldap/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/cs.po b/addons/auth_ldap/i18n/cs.po index 4a85cadb195..7bb960c760c 100644 --- a/addons/auth_ldap/i18n/cs.po +++ b/addons/auth_ldap/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 4ceba998a88..2daf5265a27 100644 --- a/addons/auth_ldap/i18n/da.po +++ b/addons/auth_ldap/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 2dfade57d9b..d6e22bef408 100644 --- a/addons/auth_ldap/i18n/de.po +++ b/addons/auth_ldap/i18n/de.po @@ -9,18 +9,18 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \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" +"Last-Translator: Ferdinand \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-09-12 06:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "Benutzer Vorlage" +msgstr "Benutzervorlage" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -29,7 +29,7 @@ msgid "" "option requires a server with STARTTLS enabled, otherwise all authentication " "attempts will fail." msgstr "" -"Anforderung einer sicheren TLS/SSL Verschlüsseelung für die Verbindung zum " +"Anforderung einer sicheren TLS/SSL Verschlüsselung für die Verbindung zum " "LDAP Server. STARTTLS muss aktiviert sein, sonst werden " "Authentifizierungsversuche fehlschlagen." @@ -65,7 +65,7 @@ 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 " +"Erstelle automatisch Benutzerkonten für neue Benutzer, die sich mit LDAP " "anmelden" #. module: auth_ldap @@ -76,7 +76,7 @@ msgstr "LDAP base" #. module: auth_ldap #: view:res.company.ldap:0 msgid "User Information" -msgstr "Benutzer Information" +msgstr "Benutzerinformationen" #. module: auth_ldap #: field:res.company.ldap,ldap_password:0 @@ -101,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 "Standard Benutzerkonto, das für neue Benutzer verwendet wird" +msgstr "Standardbenutzerkonto, das für neue Benutzer verwendet wird" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 @@ -116,12 +116,12 @@ msgstr "Sequenz" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Login Information" -msgstr "Login Information" +msgstr "Login-Informationen" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Server Information" -msgstr "Server Information" +msgstr "Server-Informationen" #. module: auth_ldap #: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer @@ -147,7 +147,7 @@ msgid "" "The user account on the LDAP server that is used to query the directory. " "Leave empty to connect anonymously." msgstr "" -"Des benutzerkonto für die Identifizierung auf dem LDAP Server. Leer für " +"Des Benutzerkonto für die Identifizierung auf dem LDAP Server. Leer für " "anonymen Zugang." #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/en_GB.po b/addons/auth_ldap/i18n/en_GB.po index 3a97abd12dd..8d8fdb06f6f 100644 --- a/addons/auth_ldap/i18n/en_GB.po +++ b/addons/auth_ldap/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es.po b/addons/auth_ldap/i18n/es.po index 64712ac648f..c38dcc9b0ee 100644 --- a/addons/auth_ldap/i18n/es.po +++ b/addons/auth_ldap/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 3e230b80c3d..528c3d657b0 100644 --- a/addons/auth_ldap/i18n/es_CR.po +++ b/addons/auth_ldap/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/fi.po b/addons/auth_ldap/i18n/fi.po index 87fe921482e..9728fd39c03 100644 --- a/addons/auth_ldap/i18n/fi.po +++ b/addons/auth_ldap/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 b641b53f5a9..5ed8d13f7ef 100644 --- a/addons/auth_ldap/i18n/fr.po +++ b/addons/auth_ldap/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \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" +"Last-Translator: Christophe CHAUVET \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-09-12 06:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 82a8fb00581..8dffde4b817 100644 --- a/addons/auth_ldap/i18n/gl.po +++ b/addons/auth_ldap/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 44f1d2c29f5..1b4f0a2a924 100644 --- a/addons/auth_ldap/i18n/hr.po +++ b/addons/auth_ldap/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 3f8a82f3cba..97364e4b761 100644 --- a/addons/auth_ldap/i18n/hu.po +++ b/addons/auth_ldap/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 c7f5a1db006..cf908273f81 100644 --- a/addons/auth_ldap/i18n/it.po +++ b/addons/auth_ldap/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 77c50fb9d82..428d1a4a65c 100644 --- a/addons/auth_ldap/i18n/ja.po +++ b/addons/auth_ldap/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/mk.po b/addons/auth_ldap/i18n/mk.po index efee6009bb8..a2d87cfb502 100644 --- a/addons/auth_ldap/i18n/mk.po +++ b/addons/auth_ldap/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 9c687e5fdcf..9a007b9d201 100644 --- a/addons/auth_ldap/i18n/mn.po +++ b/addons/auth_ldap/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 d07916bbbb9..aba3b2881a8 100644 --- a/addons/auth_ldap/i18n/nb.po +++ b/addons/auth_ldap/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 397438f646c..c56537b3e20 100644 --- a/addons/auth_ldap/i18n/nl.po +++ b/addons/auth_ldap/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:31+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 521eb4b7666..0348e21b1d3 100644 --- a/addons/auth_ldap/i18n/pl.po +++ b/addons/auth_ldap/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 @@ -29,6 +29,9 @@ msgid "" "option requires a server with STARTTLS enabled, otherwise all authentication " "attempts will fail." msgstr "" +"Wymaga bezpiecznego szyfrowania TLS/SSL podczas łączenia z serwerem LDAP. Ta " +"opcja wymaga serwera z włączonym STARTTLS, inaczej wszystkie próby " +"uwierzytelnienia zakończą się niepowodzeniem." #. module: auth_ldap #: view:res.company:0 @@ -62,6 +65,8 @@ msgid "" "Automatically create local user accounts for new users authenticating via " "LDAP" msgstr "" +"Automatycznie tworzy konto lokalnego użytkownika dla nowych użytkowników " +"uwierzytelnionych przez LDAP" #. module: auth_ldap #: field:res.company.ldap,ldap_base:0 @@ -135,6 +140,7 @@ msgid "" "The password of the user account on the LDAP server that is used to query " "the directory." msgstr "" +"Hasło konta użytkownika na serwerze LDAP używane do zapytań katalogowych." #. module: auth_ldap #: help:res.company.ldap,ldap_binddn:0 @@ -142,6 +148,8 @@ msgid "" "The user account on the LDAP server that is used to query the directory. " "Leave empty to connect anonymously." msgstr "" +"Konto użytkownika na serwerze LDAP, które jest używane do zapytań " +"katalogowych. Pozostaw puste by połączyć się anonimowo." #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_users diff --git a/addons/auth_ldap/i18n/pt.po b/addons/auth_ldap/i18n/pt.po index 633942b24be..93b2d4a1c9f 100644 --- a/addons/auth_ldap/i18n/pt.po +++ b/addons/auth_ldap/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 3fca4014860..69409fa136b 100644 --- a/addons/auth_ldap/i18n/pt_BR.po +++ b/addons/auth_ldap/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "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" +"\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-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 1fb67fcd23e..812eb4066aa 100644 --- a/addons/auth_ldap/i18n/ro.po +++ b/addons/auth_ldap/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 b122bb8f38b..6c8e581ad9d 100644 --- a/addons/auth_ldap/i18n/ru.po +++ b/addons/auth_ldap/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 index 2539dc96d97..e4cfe51ef50 100644 --- a/addons/auth_ldap/i18n/sl.po +++ b/addons/auth_ldap/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sv.po b/addons/auth_ldap/i18n/sv.po index a682421d75f..251cb3c3c94 100644 --- a/addons/auth_ldap/i18n/sv.po +++ b/addons/auth_ldap/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 ba9d6597ae9..3d13e874162 100644 --- a/addons/auth_ldap/i18n/tr.po +++ b/addons/auth_ldap/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 ec1b1c87714..64dbf67f769 100644 --- a/addons/auth_ldap/i18n/zh_CN.po +++ b/addons/auth_ldap/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:32+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:37+0000\n" +"X-Generator: Launchpad (build 16914)\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 61ae91d5902..14bc3cac908 100644 --- a/addons/auth_oauth/i18n/ar.po +++ b/addons/auth_oauth/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/cs.po b/addons/auth_oauth/i18n/cs.po index 87cdaf0ed10..c2f231629c9 100644 --- a/addons/auth_oauth/i18n/cs.po +++ b/addons/auth_oauth/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/de.po b/addons/auth_oauth/i18n/de.po index c751733eb01..95f7b71ee57 100644 --- a/addons/auth_oauth/i18n/de.po +++ b/addons/auth_oauth/i18n/de.po @@ -9,13 +9,13 @@ msgstr "" "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" +"Last-Translator: Ferdinand \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-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -70,7 +70,7 @@ msgstr "unbekannt" #. module: auth_oauth #: field:res.users,oauth_access_token:0 msgid "OAuth Access Token" -msgstr "OAuth Zugangs Token" +msgstr "OAuth Zugangstoken" #. module: auth_oauth #: field:auth.oauth.provider,client_id:0 @@ -82,12 +82,12 @@ msgstr "Client ID" #. module: auth_oauth #: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers msgid "OAuth Providers" -msgstr "OAuth Providers" +msgstr "OAuth Provider" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_auth_oauth_provider msgid "OAuth2 provider" -msgstr "OAuth2 provider" +msgstr "OAuth2 Provider" #. module: auth_oauth #: field:res.users,oauth_uid:0 @@ -97,7 +97,7 @@ 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" +msgstr "Erlaube Benutzer sich mit Facebook-Konto einzuloggen" #. module: auth_oauth #: sql_constraint:res.users:0 @@ -127,7 +127,7 @@ 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" +msgstr "Erlaube Benutzer sich mit Google Konto einzuloggen" #. module: auth_oauth #: field:auth.oauth.provider,enabled:0 diff --git a/addons/auth_oauth/i18n/en_GB.po b/addons/auth_oauth/i18n/en_GB.po index 7dfe6ae60c8..d22f32958fb 100644 --- a/addons/auth_oauth/i18n/en_GB.po +++ b/addons/auth_oauth/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/es.po b/addons/auth_oauth/i18n/es.po index 6916ff91715..da0af6f59d6 100644 --- a/addons/auth_oauth/i18n/es.po +++ b/addons/auth_oauth/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\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 9b8fdaf9af4..e3ac9993e26 100644 --- a/addons/auth_oauth/i18n/fr.po +++ b/addons/auth_oauth/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\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 76fb8b209d6..017b04a9634 100644 --- a/addons/auth_oauth/i18n/hr.po +++ b/addons/auth_oauth/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hu.po b/addons/auth_oauth/i18n/hu.po index 613f04cfea8..a4699e9a5e9 100644 --- a/addons/auth_oauth/i18n/hu.po +++ b/addons/auth_oauth/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\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 index 67b0aa28a66..2dab47e32ff 100644 --- a/addons/auth_oauth/i18n/it.po +++ b/addons/auth_oauth/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/mk.po b/addons/auth_oauth/i18n/mk.po index db46371ebe6..a1290f0982b 100644 --- a/addons/auth_oauth/i18n/mk.po +++ b/addons/auth_oauth/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/nb.po b/addons/auth_oauth/i18n/nb.po index b466a546bc6..bebc80fbeab 100644 --- a/addons/auth_oauth/i18n/nb.po +++ b/addons/auth_oauth/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\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 5b8c4c9b070..a00cc826f7c 100644 --- a/addons/auth_oauth/i18n/nl.po +++ b/addons/auth_oauth/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\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 4c737e97d90..ad97655185c 100644 --- a/addons/auth_oauth/i18n/pl.po +++ b/addons/auth_oauth/i18n/pl.po @@ -14,28 +14,28 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 msgid "Validation URL" -msgstr "" +msgstr "URL walidacji" #. module: auth_oauth #: field:auth.oauth.provider,auth_endpoint:0 msgid "Authentication URL" -msgstr "" +msgstr "URL uwierzytelniania" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: auth_oauth #: field:auth.oauth.provider,name:0 msgid "Provider name" -msgstr "" +msgstr "Nazwa dostawcy" #. module: auth_oauth #: field:auth.oauth.provider,scope:0 @@ -45,7 +45,7 @@ msgstr "Zakres" #. module: auth_oauth #: field:res.users,oauth_provider_id:0 msgid "OAuth Provider" -msgstr "" +msgstr "Dostawca protokołu OAuth" #. module: auth_oauth #: field:auth.oauth.provider,css_class:0 @@ -70,29 +70,29 @@ msgstr "nieznane" #. module: auth_oauth #: field:res.users,oauth_access_token:0 msgid "OAuth Access Token" -msgstr "" +msgstr "Token dostępu 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 "" +msgstr "Identyfikator klienta" #. module: auth_oauth #: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers msgid "OAuth Providers" -msgstr "" +msgstr "Dostawcy protokołu OAuth" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_auth_oauth_provider msgid "OAuth2 provider" -msgstr "" +msgstr "Dostawca OAuth2" #. module: auth_oauth #: field:res.users,oauth_uid:0 msgid "OAuth User ID" -msgstr "" +msgstr "Identyfikator użytkownika OAuth" #. module: auth_oauth #: field:base.config.settings,auth_oauth_facebook_enabled:0 @@ -103,16 +103,17 @@ msgstr "Pozwala zalogować się użytkownikowi przez Facebook." #: sql_constraint:res.users:0 msgid "OAuth UID must be unique per provider" msgstr "" +"Identyfikator użytkownika OAuth musi być unikalny dla danego dostawcy" #. module: auth_oauth #: help:res.users,oauth_uid:0 msgid "Oauth Provider user_id" -msgstr "" +msgstr "Dostawca Oauth user_id" #. module: auth_oauth #: field:auth.oauth.provider,data_endpoint:0 msgid "Data URL" -msgstr "" +msgstr "Dane URL" #. module: auth_oauth #: view:auth.oauth.provider:0 diff --git a/addons/auth_oauth/i18n/pt.po b/addons/auth_oauth/i18n/pt.po index dfd6730a978..54b090360c6 100644 --- a/addons/auth_oauth/i18n/pt.po +++ b/addons/auth_oauth/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt_BR.po b/addons/auth_oauth/i18n/pt_BR.po index 40f7a526513..003b1f9ba3a 100644 --- a/addons/auth_oauth/i18n/pt_BR.po +++ b/addons/auth_oauth/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\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 index eff198c2bf8..d46647051ab 100644 --- a/addons/auth_oauth/i18n/ro.po +++ b/addons/auth_oauth/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/ru.po b/addons/auth_oauth/i18n/ru.po index d5c1c90b95e..f67835e6218 100644 --- a/addons/auth_oauth/i18n/ru.po +++ b/addons/auth_oauth/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-14 05:23+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/sl.po b/addons/auth_oauth/i18n/sl.po index 2eb548d228c..d76e8dd121e 100644 --- a/addons/auth_oauth/i18n/sl.po +++ b/addons/auth_oauth/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/sv.po b/addons/auth_oauth/i18n/sv.po index fa67182b9d8..d2c279317a1 100644 --- a/addons/auth_oauth/i18n/sv.po +++ b/addons/auth_oauth/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/tr.po b/addons/auth_oauth/i18n/tr.po index 674bd4578d3..a182bc8dfe6 100644 --- a/addons/auth_oauth/i18n/tr.po +++ b/addons/auth_oauth/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/zh_CN.po b/addons/auth_oauth/i18n/zh_CN.po index 470406daa78..f5d9d6f48b1 100644 --- a/addons/auth_oauth/i18n/zh_CN.po +++ b/addons/auth_oauth/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth_signup/i18n/ar.po b/addons/auth_oauth_signup/i18n/ar.po index 339ec180733..9eeabd19d8b 100644 --- a/addons/auth_oauth_signup/i18n/ar.po +++ b/addons/auth_oauth_signup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-27 04:37+0000\n" -"X-Generator: Launchpad (build 16845)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/cs.po b/addons/auth_oauth_signup/i18n/cs.po index bc14fdcc9c9..ecedebe8f1f 100644 --- a/addons/auth_oauth_signup/i18n/cs.po +++ b/addons/auth_oauth_signup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/da.po b/addons/auth_oauth_signup/i18n/da.po index b6a7a5605b6..75b7032c1de 100644 --- a/addons/auth_oauth_signup/i18n/da.po +++ b/addons/auth_oauth_signup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-16 05:42+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/de.po b/addons/auth_oauth_signup/i18n/de.po index c0ef206aa29..57580243777 100644 --- a/addons/auth_oauth_signup/i18n/de.po +++ b/addons/auth_oauth_signup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/en_GB.po b/addons/auth_oauth_signup/i18n/en_GB.po index c385ac2ac3b..699939d57b7 100644 --- a/addons/auth_oauth_signup/i18n/en_GB.po +++ b/addons/auth_oauth_signup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/es.po b/addons/auth_oauth_signup/i18n/es.po index f44c1af0d01..072378eeaa7 100644 --- a/addons/auth_oauth_signup/i18n/es.po +++ b/addons/auth_oauth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/et.po b/addons/auth_oauth_signup/i18n/et.po index 2d159250cff..25c2888fea1 100644 --- a/addons/auth_oauth_signup/i18n/et.po +++ b/addons/auth_oauth_signup/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-10 04:41+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/fr.po b/addons/auth_oauth_signup/i18n/fr.po index efabb50a6a7..02544f189c5 100644 --- a/addons/auth_oauth_signup/i18n/fr.po +++ b/addons/auth_oauth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hr.po b/addons/auth_oauth_signup/i18n/hr.po index 45eb5a7721c..c3cc0238ca0 100644 --- a/addons/auth_oauth_signup/i18n/hr.po +++ b/addons/auth_oauth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hu.po b/addons/auth_oauth_signup/i18n/hu.po index 306987c3b79..eaed110eeeb 100644 --- a/addons/auth_oauth_signup/i18n/hu.po +++ b/addons/auth_oauth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/it.po b/addons/auth_oauth_signup/i18n/it.po index 9f09379a0a2..4c01dc40d00 100644 --- a/addons/auth_oauth_signup/i18n/it.po +++ b/addons/auth_oauth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/lt.po b/addons/auth_oauth_signup/i18n/lt.po index 0f0d27667e6..6cf0153f69f 100644 --- a/addons/auth_oauth_signup/i18n/lt.po +++ b/addons/auth_oauth_signup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/mk.po b/addons/auth_oauth_signup/i18n/mk.po index 8c0142cb754..3afed5fe7b3 100644 --- a/addons/auth_oauth_signup/i18n/mk.po +++ b/addons/auth_oauth_signup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/mn.po b/addons/auth_oauth_signup/i18n/mn.po index 7d8c23eaf16..8c45059310f 100644 --- a/addons/auth_oauth_signup/i18n/mn.po +++ b/addons/auth_oauth_signup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl.po b/addons/auth_oauth_signup/i18n/nl.po index feef8a96bb6..5029138c5d9 100644 --- a/addons/auth_oauth_signup/i18n/nl.po +++ b/addons/auth_oauth_signup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl_BE.po b/addons/auth_oauth_signup/i18n/nl_BE.po index 3fb7b3a15d2..2366d0844f2 100644 --- a/addons/auth_oauth_signup/i18n/nl_BE.po +++ b/addons/auth_oauth_signup/i18n/nl_BE.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-04-15 16:01+0000\n" -"Last-Translator: Els Van Vossel (Agaplan) \n" +"Last-Translator: Els Van Vossel (Foxy) \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: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pl.po b/addons/auth_oauth_signup/i18n/pl.po index 1aa134cea39..c0e6153a430 100644 --- a/addons/auth_oauth_signup/i18n/pl.po +++ b/addons/auth_oauth_signup/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-15 05:47+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt.po b/addons/auth_oauth_signup/i18n/pt.po index 96a976650e4..c0664b109b7 100644 --- a/addons/auth_oauth_signup/i18n/pt.po +++ b/addons/auth_oauth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt_BR.po b/addons/auth_oauth_signup/i18n/pt_BR.po index 0b5905b299a..2d50e76837a 100644 --- a/addons/auth_oauth_signup/i18n/pt_BR.po +++ b/addons/auth_oauth_signup/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ro.po b/addons/auth_oauth_signup/i18n/ro.po index 12611d379e0..5d2593b66b4 100644 --- a/addons/auth_oauth_signup/i18n/ro.po +++ b/addons/auth_oauth_signup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ru.po b/addons/auth_oauth_signup/i18n/ru.po index e094d4af2b4..e60c290f8e3 100644 --- a/addons/auth_oauth_signup/i18n/ru.po +++ b/addons/auth_oauth_signup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sl.po b/addons/auth_oauth_signup/i18n/sl.po index 02cdf9d2b5e..a7acd1ceacc 100644 --- a/addons/auth_oauth_signup/i18n/sl.po +++ b/addons/auth_oauth_signup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sv.po b/addons/auth_oauth_signup/i18n/sv.po index 8888a776c01..93350614b98 100644 --- a/addons/auth_oauth_signup/i18n/sv.po +++ b/addons/auth_oauth_signup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/tr.po b/addons/auth_oauth_signup/i18n/tr.po index 8f3282da978..4b61dc5a190 100644 --- a/addons/auth_oauth_signup/i18n/tr.po +++ b/addons/auth_oauth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/vi.po b/addons/auth_oauth_signup/i18n/vi.po index 25ed41120ce..086df785f57 100644 --- a/addons/auth_oauth_signup/i18n/vi.po +++ b/addons/auth_oauth_signup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/zh_CN.po b/addons/auth_oauth_signup/i18n/zh_CN.po index 834713a3bc9..f3009f88142 100644 --- a/addons/auth_oauth_signup/i18n/zh_CN.po +++ b/addons/auth_oauth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/zh_TW.po b/addons/auth_oauth_signup/i18n/zh_TW.po index fe734809d06..0e3e0b23c3b 100644 --- a/addons/auth_oauth_signup/i18n/zh_TW.po +++ b/addons/auth_oauth_signup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:40+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_openid/i18n/ar.po b/addons/auth_openid/i18n/ar.po index c78dc5aded7..747c0ae31e6 100644 --- a/addons/auth_openid/i18n/ar.po +++ b/addons/auth_openid/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/cs.po b/addons/auth_openid/i18n/cs.po index 03820405b1c..be96e523a83 100644 --- a/addons/auth_openid/i18n/cs.po +++ b/addons/auth_openid/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/de.po b/addons/auth_openid/i18n/de.po index 8b1d4a2a71f..233b3f8dcb2 100644 --- a/addons/auth_openid/i18n/de.po +++ b/addons/auth_openid/i18n/de.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \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" +"Last-Translator: Ferdinand \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-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/en_GB.po b/addons/auth_openid/i18n/en_GB.po index 6085f718422..3ebdd9ee4ee 100644 --- a/addons/auth_openid/i18n/en_GB.po +++ b/addons/auth_openid/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es.po b/addons/auth_openid/i18n/es.po index 26391d40137..8373b220374 100644 --- a/addons/auth_openid/i18n/es.po +++ b/addons/auth_openid/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\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 a9d5e9996f5..9fb5fe9c426 100644 --- a/addons/auth_openid/i18n/es_CR.po +++ b/addons/auth_openid/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fi.po b/addons/auth_openid/i18n/fi.po index 33f5f4e7e1b..5f25b2b12eb 100644 --- a/addons/auth_openid/i18n/fi.po +++ b/addons/auth_openid/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fr.po b/addons/auth_openid/i18n/fr.po index 97c786ce7fa..653287612a5 100644 --- a/addons/auth_openid/i18n/fr.po +++ b/addons/auth_openid/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/gu.po b/addons/auth_openid/i18n/gu.po index 95d76e76fe8..5c33c4fd88a 100644 --- a/addons/auth_openid/i18n/gu.po +++ b/addons/auth_openid/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hr.po b/addons/auth_openid/i18n/hr.po index e7315a1089b..26d3e36db9d 100644 --- a/addons/auth_openid/i18n/hr.po +++ b/addons/auth_openid/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hu.po b/addons/auth_openid/i18n/hu.po index 88bc5dea023..0cb020b4604 100644 --- a/addons/auth_openid/i18n/hu.po +++ b/addons/auth_openid/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/it.po b/addons/auth_openid/i18n/it.po index 3ddb7c17e04..d29515a3e51 100644 --- a/addons/auth_openid/i18n/it.po +++ b/addons/auth_openid/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ja.po b/addons/auth_openid/i18n/ja.po index c89f0a8c5b1..f68af7b3cfe 100644 --- a/addons/auth_openid/i18n/ja.po +++ b/addons/auth_openid/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mk.po b/addons/auth_openid/i18n/mk.po index 5eb91c4d3e1..95180df7ac2 100644 --- a/addons/auth_openid/i18n/mk.po +++ b/addons/auth_openid/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mn.po b/addons/auth_openid/i18n/mn.po index 4b1ff23c705..fc9cb046852 100644 --- a/addons/auth_openid/i18n/mn.po +++ b/addons/auth_openid/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nb.po b/addons/auth_openid/i18n/nb.po index 9773b30031a..ba839a37f4c 100644 --- a/addons/auth_openid/i18n/nb.po +++ b/addons/auth_openid/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nl.po b/addons/auth_openid/i18n/nl.po index 02b63593c81..ad0864e298d 100644 --- a/addons/auth_openid/i18n/nl.po +++ b/addons/auth_openid/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pl.po b/addons/auth_openid/i18n/pl.po index 22e7c13d120..71a02af41db 100644 --- a/addons/auth_openid/i18n/pl.po +++ b/addons/auth_openid/i18n/pl.po @@ -14,15 +14,15 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web #: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 #, python-format msgid "Username" -msgstr "" +msgstr "Nazwa użytkownika" #. module: auth_openid #. openerp-web @@ -30,7 +30,7 @@ msgstr "" #: view:res.users:0 #, python-format msgid "OpenID" -msgstr "" +msgstr "OpenID" #. module: auth_openid #. openerp-web @@ -38,7 +38,7 @@ msgstr "" #: field:res.users,openid_url:0 #, python-format msgid "OpenID URL" -msgstr "" +msgstr "Adres URL OpenID" #. module: auth_openid #. openerp-web @@ -59,23 +59,24 @@ msgstr "Launchpad" #: help:res.users,openid_email:0 msgid "Used for disambiguation in case of a shared OpenID URL" msgstr "" +"Używane dla ujednoznaczenia w przypadku współdzielonego adresu URL OpenID" #. module: auth_openid #. openerp-web #: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 #, python-format msgid "Google Apps Domain" -msgstr "" +msgstr "Domena Aplikacji Google" #. module: auth_openid #: field:res.users,openid_email:0 msgid "OpenID Email" -msgstr "" +msgstr "Email OpenID" #. module: auth_openid #: field:res.users,openid_key:0 msgid "OpenID Key" -msgstr "" +msgstr "Klucz OpenID" #. module: auth_openid #. openerp-web @@ -89,9 +90,9 @@ msgstr "Hasło" #: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 #, python-format msgid "Google Apps" -msgstr "" +msgstr "Aplikacje Google" #. module: auth_openid #: model:ir.model,name:auth_openid.model_res_users msgid "Users" -msgstr "" +msgstr "Użytkownicy" diff --git a/addons/auth_openid/i18n/pt.po b/addons/auth_openid/i18n/pt.po index 46cc490d432..5b987760d08 100644 --- a/addons/auth_openid/i18n/pt.po +++ b/addons/auth_openid/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\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 0890561aa17..8acd3fe3bd9 100644 --- a/addons/auth_openid/i18n/pt_BR.po +++ b/addons/auth_openid/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ro.po b/addons/auth_openid/i18n/ro.po index 90aee09cfb6..ce11d241eb3 100644 --- a/addons/auth_openid/i18n/ro.po +++ b/addons/auth_openid/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: 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: ERPSystems.ro \n" +"Last-Translator: ERPSystems.ro \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-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ru.po b/addons/auth_openid/i18n/ru.po index dae69ef2bf2..58ddc2d7c79 100644 --- a/addons/auth_openid/i18n/ru.po +++ b/addons/auth_openid/i18n/ru.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-05-28 06:19+0000\n" -"Last-Translator: Глория Хрусталёва \n" +"Last-Translator: Глория Хрусталёва \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: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sk.po b/addons/auth_openid/i18n/sk.po index 26cd64ba454..ba7f19b52f3 100644 --- a/addons/auth_openid/i18n/sk.po +++ b/addons/auth_openid/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sl.po b/addons/auth_openid/i18n/sl.po index ad7314b1885..17e9292fc11 100644 --- a/addons/auth_openid/i18n/sl.po +++ b/addons/auth_openid/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sr@latin.po b/addons/auth_openid/i18n/sr@latin.po index 59c14c63bcd..7a6ef6ad87a 100644 --- a/addons/auth_openid/i18n/sr@latin.po +++ b/addons/auth_openid/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sv.po b/addons/auth_openid/i18n/sv.po index b1bd39f55ee..25145975449 100644 --- a/addons/auth_openid/i18n/sv.po +++ b/addons/auth_openid/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/tr.po b/addons/auth_openid/i18n/tr.po index 84f9eafbc4c..1ecd2a28fe7 100644 --- a/addons/auth_openid/i18n/tr.po +++ b/addons/auth_openid/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/vi.po b/addons/auth_openid/i18n/vi.po index 7f5e450f5c0..abf4156cdb0 100644 --- a/addons/auth_openid/i18n/vi.po +++ b/addons/auth_openid/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\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 88bd9feb08a..760a826cdd2 100644 --- a/addons/auth_openid/i18n/zh_CN.po +++ b/addons/auth_openid/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_signup/i18n/ar.po b/addons/auth_signup/i18n/ar.po index f7d8adf730d..7ee3b390743 100644 --- a/addons/auth_signup/i18n/ar.po +++ b/addons/auth_signup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/cs.po b/addons/auth_signup/i18n/cs.po index 15a66e29741..341a8b7b796 100644 --- a/addons/auth_signup/i18n/cs.po +++ b/addons/auth_signup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/de.po b/addons/auth_signup/i18n/de.po index 6604555be6d..ed39149bc8b 100644 --- a/addons/auth_signup/i18n/de.po +++ b/addons/auth_signup/i18n/de.po @@ -9,18 +9,18 @@ msgstr "" "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" +"Last-Translator: Ferdinand \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-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 msgid "Signup Token Type" -msgstr "Typ Anmelde Token" +msgstr "Typ Anmeldetoken" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -37,7 +37,7 @@ 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" +msgstr "Falls leer, dürfen nur eingeladene Benutzer sich einloggen" #. module: auth_signup #: model:ir.model,name:auth_signup.model_base_config_settings @@ -48,7 +48,7 @@ msgstr "base.config.settings" #: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." -msgstr "Kann keine EMail senden, weil der Benutzer keine EMail Adresse hat" +msgstr "Kann keine E-Mail senden, weil der Benutzer keine E-Mail-Adresse hat" #. module: auth_signup #. openerp-web @@ -61,7 +61,7 @@ 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" +msgstr "Vorlage 'Benutzer' für neue registrierte Benutzer" #. module: auth_signup #: model:email.template,subject:auth_signup.reset_password_email @@ -118,14 +118,14 @@ msgid "" "

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 " +"

Ein Zurücksetzen des Passwortes für diese E-Mail-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

" +"

Anmerkung: Wenn Sie diese E-Mail nicht erwartet/beantragt habe, können " +"Sie diese einfach ignorieren

" #. module: auth_signup #. openerp-web @@ -163,7 +163,7 @@ msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" -"Kann Email nicht senden: Es wurde noch kein ausgehender EMail Server " +"Kann E-Mail nicht senden: Es wurde noch kein ausgehender E-Mail-Server " "konfiguriert.\n" "Sie können dieses unter Einstellungen / Allgemeine Einstellungen nachholen." @@ -186,7 +186,7 @@ msgstr "Name" #: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." -msgstr "Bitte Benutzername oder EMail Adresse eingeben" +msgstr "Bitte Benutzername oder E-Mail-Adresse eingeben" #. module: auth_signup #: selection:res.users,state:0 @@ -198,17 +198,17 @@ msgstr "Passwort zurücksetzen" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 #, python-format msgid "Username (Email)" -msgstr "Benutzername (EMail)" +msgstr "Benutzername (E-Mail)" #. module: auth_signup #: field:res.partner,signup_expiration:0 msgid "Signup Expiration" -msgstr "Ablauf der Registritung" +msgstr "Ablauf der Registrierung" #. 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." +msgstr "Dies erlaubt Benutzern ein Zurücksetzen des Passwortes auszulösen." #. module: auth_signup #. openerp-web @@ -220,7 +220,7 @@ msgstr "Login" #. module: auth_signup #: field:res.partner,signup_valid:0 msgid "Signup Token is Valid" -msgstr "Anmeldungs Token ist gültig" +msgstr "Anmeldungs-Token ist gültig" #. module: auth_signup #. openerp-web @@ -240,7 +240,7 @@ msgstr "Login" #: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" -msgstr "Anmeldungs Token ist ungültig" +msgstr "Anmeldungs-Token ist ungültig" #. module: auth_signup #. openerp-web @@ -255,7 +255,7 @@ msgstr "Passworte stimmen nicht überein, bitte neu eingeben" #: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" -msgstr "Keine Datenbank ausgewählt-" +msgstr "Keine Datenbank ausgewählt!" #. module: auth_signup #: view:res.users:0 @@ -265,7 +265,7 @@ 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" +msgstr "Passwort zurücksetzen von der Login-Seite erlauben" #. module: auth_signup #. openerp-web diff --git a/addons/auth_signup/i18n/en_GB.po b/addons/auth_signup/i18n/en_GB.po index 5c515281ad5..cfda5074c0b 100644 --- a/addons/auth_signup/i18n/en_GB.po +++ b/addons/auth_signup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/es.po b/addons/auth_signup/i18n/es.po index 4aec53e708f..8efc7635073 100644 --- a/addons/auth_signup/i18n/es.po +++ b/addons/auth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/es_CO.po b/addons/auth_signup/i18n/es_CO.po index 73c4f7d6523..a4f428fd8a3 100644 --- a/addons/auth_signup/i18n/es_CO.po +++ b/addons/auth_signup/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/fr.po b/addons/auth_signup/i18n/fr.po index 3c2072a29bb..3822f5fcd38 100644 --- a/addons/auth_signup/i18n/fr.po +++ b/addons/auth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/hr.po b/addons/auth_signup/i18n/hr.po index 4a974b2b760..2dbf249775b 100644 --- a/addons/auth_signup/i18n/hr.po +++ b/addons/auth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/hu.po b/addons/auth_signup/i18n/hu.po index d23a16521ad..6414d58cb7e 100644 --- a/addons/auth_signup/i18n/hu.po +++ b/addons/auth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/it.po b/addons/auth_signup/i18n/it.po index e902255d286..db88fd4f2b2 100644 --- a/addons/auth_signup/i18n/it.po +++ b/addons/auth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/lt.po b/addons/auth_signup/i18n/lt.po index f766df522cb..fb3ae24fb4c 100644 --- a/addons/auth_signup/i18n/lt.po +++ b/addons/auth_signup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/mk.po b/addons/auth_signup/i18n/mk.po index e01e253d996..ed7ed35e884 100644 --- a/addons/auth_signup/i18n/mk.po +++ b/addons/auth_signup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/mn.po b/addons/auth_signup/i18n/mn.po index 83639779854..e23a79c0a4b 100644 --- a/addons/auth_signup/i18n/mn.po +++ b/addons/auth_signup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/nb.po b/addons/auth_signup/i18n/nb.po index 1d76e0d2470..a0951ba4826 100644 --- a/addons/auth_signup/i18n/nb.po +++ b/addons/auth_signup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/nl.po b/addons/auth_signup/i18n/nl.po index 66d04016498..36115dfd9f5 100644 --- a/addons/auth_signup/i18n/nl.po +++ b/addons/auth_signup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/pl.po b/addons/auth_signup/i18n/pl.po index d41e140e448..9a7adcecf1f 100644 --- a/addons/auth_signup/i18n/pl.po +++ b/addons/auth_signup/i18n/pl.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 msgid "Signup Token Type" -msgstr "" +msgstr "Typ tokena rejestracji" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -49,7 +49,7 @@ msgstr "" #: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." -msgstr "" +msgstr "Nie można wysłać emaila: użytkownik nie ma adresu email." #. module: auth_signup #. openerp-web @@ -63,6 +63,7 @@ msgstr "Wyczyść hasło" #: field:base.config.settings,auth_signup_template_user_id:0 msgid "Template user for new users created through signup" msgstr "" +"Szablon używany dla nowych użytkowników poprzez zgłoszenie rejestracyjne." #. module: auth_signup #: model:email.template,subject:auth_signup.reset_password_email @@ -117,6 +118,15 @@ msgid "" "\n" "

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

" msgstr "" +"\n" +"

Żądanie resetu hasła zostało wysłane dla konta OpenERP powiązanego z tym " +"emailem.

\n" +"\n" +"

Możesz zmienić hasło podążając za tym linkiem.

\n" +"\n" +"

Uwaga: Jeśli nie oczekiwałeś tego, możesz bezpiecznie zignorować ten " +"email.

" #. module: auth_signup #. openerp-web @@ -133,14 +143,14 @@ msgstr "Użytkownicy" #. module: auth_signup #: field:res.partner,signup_url:0 msgid "Signup URL" -msgstr "" +msgstr "Adres internetowy rejestracji" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." -msgstr "" +msgstr "Proszę wprowadź nazwę użytkownika" #. module: auth_signup #: selection:res.users,state:0 @@ -154,6 +164,8 @@ msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" +"Nie można wysłać emaila: brak skonfigurowanego serwera email.\n" +"Możesz skonfigurować go przez Ustawienia/Ustawienia ogólne." #. module: auth_signup #. openerp-web @@ -174,7 +186,7 @@ msgstr "Nazwa" #: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." -msgstr "" +msgstr "Proszę wprowadź nazwę użytkownika lub adres email." #. module: auth_signup #: selection:res.users,state:0 @@ -186,29 +198,30 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 #, python-format msgid "Username (Email)" -msgstr "" +msgstr "Nazwa użytkownika (email)" #. module: auth_signup #: field:res.partner,signup_expiration:0 msgid "Signup Expiration" -msgstr "" +msgstr "Wygaśnięcie rejestracji" #. 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 "" +"To pozwala użytkownikowi na uruchomienie resetu hasła z strony logowania." #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" -msgstr "" +msgstr "Logowanie" #. module: auth_signup #: field:res.partner,signup_valid:0 msgid "Signup Token is Valid" -msgstr "" +msgstr "Token rejestracji jest ważny" #. module: auth_signup #. openerp-web @@ -228,14 +241,14 @@ msgstr "Zaloguj się" #: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" -msgstr "" +msgstr "Niewłaściwy token rejestracji" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." -msgstr "" +msgstr "Hasła nie zgadzają się; wpisz je ponownie." #. module: auth_signup #. openerp-web @@ -253,7 +266,7 @@ msgstr "Zresetuj hasło" #. module: auth_signup #: field:base.config.settings,auth_signup_reset_password:0 msgid "Enable password reset from Login page" -msgstr "" +msgstr "Włącz reset hasła ze strony logowania" #. module: auth_signup #. openerp-web @@ -272,9 +285,9 @@ msgstr "Zarejestruj się" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_partner msgid "Partner" -msgstr "" +msgstr "Kontrahent" #. module: auth_signup #: field:res.partner,signup_token:0 msgid "Signup Token" -msgstr "" +msgstr "Token rejestracyjny" diff --git a/addons/auth_signup/i18n/pt.po b/addons/auth_signup/i18n/pt.po index 72b33db6389..21f0c41618c 100644 --- a/addons/auth_signup/i18n/pt.po +++ b/addons/auth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/pt_BR.po b/addons/auth_signup/i18n/pt_BR.po index c14c68ad4c0..7f8f8c3bcc5 100644 --- a/addons/auth_signup/i18n/pt_BR.po +++ b/addons/auth_signup/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "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" +"\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-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/ro.po b/addons/auth_signup/i18n/ro.po index 5205a40a7e8..3b22940183d 100644 --- a/addons/auth_signup/i18n/ro.po +++ b/addons/auth_signup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/ru.po b/addons/auth_signup/i18n/ru.po index 092691d326c..958e1d06954 100644 --- a/addons/auth_signup/i18n/ru.po +++ b/addons/auth_signup/i18n/ru.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-05-27 12:12+0000\n" -"Last-Translator: Глория Хрусталёва \n" +"Last-Translator: Глория Хрусталёва \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: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/sl.po b/addons/auth_signup/i18n/sl.po index 77145ff7397..aba571aa270 100644 --- a/addons/auth_signup/i18n/sl.po +++ b/addons/auth_signup/i18n/sl.po @@ -14,18 +14,18 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 msgid "Signup Token Type" -msgstr "" +msgstr "Tip prijavnih podatkov" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 msgid "Allow external users to sign up" -msgstr "" +msgstr "Dovoli prijavo zunanjim uporabnikom" #. module: auth_signup #. openerp-web @@ -37,7 +37,7 @@ msgstr "Potrdite geslo" #. module: auth_signup #: help:base.config.settings,auth_signup_uninvited:0 msgid "If unchecked, only invited users may sign up." -msgstr "" +msgstr "Če ni označeno, se lahko prijavijo samo povabljeni uporabniki." #. module: auth_signup #: model:ir.model,name:auth_signup.model_base_config_settings @@ -48,7 +48,7 @@ msgstr "base.config.settings" #: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." -msgstr "" +msgstr "Ne morem poslati elektronskega sporočila: uporabnik nima naslova." #. module: auth_signup #. openerp-web @@ -61,19 +61,19 @@ 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 "" +msgstr "Predloga uporabnika za kreiranje novega uporabnika s prijavo" #. module: auth_signup #: model:email.template,subject:auth_signup.reset_password_email msgid "Password reset" -msgstr "" +msgstr "Ponastavitev gesla" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." -msgstr "" +msgstr "Prosimo vpišite geslo in ga potrdite." #. module: auth_signup #: view:res.users:0 @@ -116,6 +116,14 @@ msgid "" "\n" "

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

" msgstr "" +"\n" +"

Za OpenERP račun, povezan s tem elektronskim naslovom, je bila zahtevana " +"ponastavitev gesla.

\n" +"\n" +"

Geslo lahko spremenite tukaj this " +"link.

\n" +"\n" +"

Opomba: če tega ne pričakujete, ignorirajte to sporočilo.

" #. module: auth_signup #. openerp-web @@ -132,14 +140,14 @@ msgstr "Uporabniki" #. module: auth_signup #: field:res.partner,signup_url:0 msgid "Signup URL" -msgstr "" +msgstr "Prijavni URL" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." -msgstr "" +msgstr "Prosimo, vpišite uporabniško ime." #. module: auth_signup #: selection:res.users,state:0 @@ -153,6 +161,8 @@ msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" +"Ne morem poslati elektronskega sporočila: izhodni server ni nastavljen.\n" +"Lahko ga nastavite pod Nastavitve/Splošne nastavitve." #. module: auth_signup #. openerp-web @@ -173,7 +183,7 @@ msgstr "Ime" #: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." -msgstr "" +msgstr "Prosimo, vpišite uporabniško ime ali elektronski naslov." #. module: auth_signup #: selection:res.users,state:0 @@ -185,17 +195,17 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 #, python-format msgid "Username (Email)" -msgstr "" +msgstr "Uporabniško ime (E-mail)" #. module: auth_signup #: field:res.partner,signup_expiration:0 msgid "Signup Expiration" -msgstr "" +msgstr "Iztek prijave" #. 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 "" +msgstr "To dovoljuje uporabnikom izvesti spremembo gesla s prijavne strani." #. module: auth_signup #. openerp-web @@ -207,7 +217,7 @@ msgstr "Prijava" #. module: auth_signup #: field:res.partner,signup_valid:0 msgid "Signup Token is Valid" -msgstr "" +msgstr "Prijava je pravilna" #. module: auth_signup #. openerp-web @@ -227,14 +237,14 @@ msgstr "Prijava" #: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" -msgstr "" +msgstr "Prijava je napačna" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." -msgstr "" +msgstr "Gesla se ne ujemajo; prosimo, vpišite jih ponovno." #. module: auth_signup #. openerp-web @@ -252,7 +262,7 @@ msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_reset_password:0 msgid "Enable password reset from Login page" -msgstr "" +msgstr "Omogoči spremembo gesla na prijavni strani" #. module: auth_signup #. openerp-web @@ -276,4 +286,4 @@ msgstr "Partner" #. module: auth_signup #: field:res.partner,signup_token:0 msgid "Signup Token" -msgstr "" +msgstr "Prijavni podatki" diff --git a/addons/auth_signup/i18n/tr.po b/addons/auth_signup/i18n/tr.po index 52f9713bd26..7bbdde20241 100644 --- a/addons/auth_signup/i18n/tr.po +++ b/addons/auth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/vi.po b/addons/auth_signup/i18n/vi.po index 15cd4ebfdd2..b90f3f419c0 100644 --- a/addons/auth_signup/i18n/vi.po +++ b/addons/auth_signup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:37+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/zh_CN.po b/addons/auth_signup/i18n/zh_CN.po index 04e62dbed47..998d42cce56 100644 --- a/addons/auth_signup/i18n/zh_CN.po +++ b/addons/auth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-08 05:42+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/zh_TW.po b/addons/auth_signup/i18n/zh_TW.po index b16d2be5abf..2867afe8335 100644 --- a/addons/auth_signup/i18n/zh_TW.po +++ b/addons/auth_signup/i18n/zh_TW.po @@ -8,14 +8,14 @@ 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-09-19 09:40+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-12-29 09:17+0000\n" +"Last-Translator: Andy Cheng \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: 2013-09-20 05:38+0000\n" -"X-Generator: Launchpad (build 16765)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:40+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -66,19 +66,19 @@ msgstr "" #. module: auth_signup #: model:email.template,subject:auth_signup.reset_password_email msgid "Password reset" -msgstr "" +msgstr "密碼重設" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." -msgstr "" +msgstr "請輸入密碼並確認" #. module: auth_signup #: view:res.users:0 msgid "Send an email to the user to (re)set their password." -msgstr "" +msgstr "寄出密碼重設電子郵件給該使用者" #. module: auth_signup #. openerp-web @@ -86,23 +86,23 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" -msgstr "" +msgstr "註冊" #. module: auth_signup #: selection:res.users,state:0 msgid "New" -msgstr "" +msgstr "新增" #. module: auth_signup #: code:addons/auth_signup/res_users.py:258 #, python-format msgid "Mail sent to:" -msgstr "" +msgstr "信件已寄給:" #. module: auth_signup #: field:res.users,state:0 msgid "Status" -msgstr "" +msgstr "狀態" #. module: auth_signup #: model:email.template,body_html:auth_signup.reset_password_email @@ -122,29 +122,29 @@ msgstr "" #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." -msgstr "" +msgstr "請輸入名字" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_users msgid "Users" -msgstr "" +msgstr "使用者" #. module: auth_signup #: field:res.partner,signup_url:0 msgid "Signup URL" -msgstr "" +msgstr "註冊網址" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." -msgstr "" +msgstr "請輸入使用者名稱。" #. module: auth_signup #: selection:res.users,state:0 msgid "Active" -msgstr "" +msgstr "啟用" #. module: auth_signup #: code:addons/auth_signup/res_users.py:270 @@ -159,26 +159,26 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 #, python-format msgid "Username" -msgstr "" +msgstr "使用者名稱" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 #, python-format msgid "Name" -msgstr "" +msgstr "名稱" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." -msgstr "" +msgstr "請輸入使用者名稱或電子郵件地址" #. module: auth_signup #: selection:res.users,state:0 msgid "Resetting Password" -msgstr "" +msgstr "重設密碼中" #. module: auth_signup #. openerp-web @@ -202,7 +202,7 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" -msgstr "" +msgstr "登入" #. module: auth_signup #: field:res.partner,signup_valid:0 @@ -220,7 +220,7 @@ msgstr "" #: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" -msgstr "" +msgstr "登入" #. module: auth_signup #. openerp-web @@ -242,36 +242,36 @@ msgstr "" #: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" -msgstr "" +msgstr "未選定資料庫!" #. module: auth_signup #: view:res.users:0 msgid "Reset Password" -msgstr "" +msgstr "重設密碼" #. module: auth_signup #: field:base.config.settings,auth_signup_reset_password:0 msgid "Enable password reset from Login page" -msgstr "" +msgstr "於登入頁面啟用密碼重設" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" -msgstr "" +msgstr "返回登入畫面" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 #, python-format msgid "Sign up" -msgstr "" +msgstr "註冊" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_partner msgid "Partner" -msgstr "" +msgstr "業務夥伴" #. module: auth_signup #: field:res.partner,signup_token:0 diff --git a/addons/base_action_rule/__openerp__.py b/addons/base_action_rule/__openerp__.py index 973567c613f..5dd4b057514 100644 --- a/addons/base_action_rule/__openerp__.py +++ b/addons/base_action_rule/__openerp__.py @@ -35,7 +35,7 @@ trigger an automatic reminder email. """, 'author': 'OpenERP SA', 'website': 'http://www.openerp.com', - 'depends': ['base', 'mail'], + 'depends': ['base', 'resource', 'mail'], 'data': [ 'base_action_rule_view.xml', 'security/ir.model.access.csv', diff --git a/addons/base_action_rule/base_action_rule.py b/addons/base_action_rule/base_action_rule.py index 0d98030e800..58728a77aef 100644 --- a/addons/base_action_rule/base_action_rule.py +++ b/addons/base_action_rule/base_action_rule.py @@ -78,6 +78,11 @@ class base_action_rule(osv.osv): "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_date_calendar_id': fields.many2one( + 'resource.calendar', 'Use Calendar', + help='When calculating a day-based timed condition, it is possible to use a calendar to compute the date based on working days.', + ondelete='set null', + ), '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', @@ -241,6 +246,18 @@ class base_action_rule(osv.osv): data.update({'model': model.model}) return {'value': data} + def _check_delay(self, cr, uid, action, record, record_dt, context=None): + if action.trg_date_calendar_id and action.trg_date_range_type == 'day': + start_dt = get_datetime(record_dt) + action_dt = self.pool['resource.calendar'].schedule_days_get_date( + cr, uid, action.trg_date_calendar_id.id, action.trg_date_range, + day_date=start_dt, compute_leaves=True, context=context + ) + else: + delay = DATE_RANGE_FUNCTION[action.trg_date_range_type](action.trg_date_range) + action_dt = get_datetime(record_dt) + delay + return action_dt + def _check(self, cr, uid, automatic=False, use_new_cursor=False, context=None): """ This Function is called by scheduler. """ context = context or {} @@ -267,14 +284,12 @@ class base_action_rule(osv.osv): else: get_record_dt = lambda record: record[date_field] - delay = DATE_RANGE_FUNCTION[action.trg_date_range_type](action.trg_date_range) - # 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 + action_dt = self._check_delay(cr, uid, action, record, record_dt, context=context) if last_run and (last_run <= action_dt < now) or (action_dt < now): try: self._process(cr, uid, action, [record.id], context=context) diff --git a/addons/base_action_rule/base_action_rule_view.xml b/addons/base_action_rule/base_action_rule_view.xml index c2262adde39..a4341d403ca 100644 --- a/addons/base_action_rule/base_action_rule_view.xml +++ b/addons/base_action_rule/base_action_rule_view.xml @@ -43,6 +43,8 @@ +

Select when the action must be run, and add filters and/or timing conditions. diff --git a/addons/base_action_rule/i18n/ar.po b/addons/base_action_rule/i18n/ar.po index 0f3a8fe4733..497fbfda1af 100644 --- a/addons/base_action_rule/i18n/ar.po +++ b/addons/base_action_rule/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:33+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bg.po b/addons/base_action_rule/i18n/bg.po index 6a3d0ec1ea1..71ea04ddabf 100644 --- a/addons/base_action_rule/i18n/bg.po +++ b/addons/base_action_rule/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:33+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bs.po b/addons/base_action_rule/i18n/bs.po index 495706093bc..2cc59640c1d 100644 --- a/addons/base_action_rule/i18n/bs.po +++ b/addons/base_action_rule/i18n/bs.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:33+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "U Toku" #. module: base_action_rule #: view:base.action.rule:0 @@ -29,6 +29,9 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- U samom pogledu \"Pretrage\", odaberite meni \"Sačuvaj trenutni filter\", " +"unesite naziv (npr: Kreiraj 01.01.2013) i dodajte opciju \"Djeli sa svim " +"korisnicima\"" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +41,7 @@ msgstr "Pravila radnje" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Odaberite filteri ili tajmer kao uslov." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,17 +51,17 @@ msgstr "Odgovoran" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Primjeri: email podsjetnici, pozivanje servisa objekata, itd..." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Dodaj pratioce" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Postavi odgovornog" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -67,6 +70,9 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"Odgodi nakon datuma okidanja. Možete da postavite negativan broj ako trebate " +"odgodu prije datuma okidanja, kao na primjer slanje podsjetnika 15 minuta " +"prije sastanka." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test @@ -76,12 +82,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Zatvoreno" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Novi" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -91,33 +97,34 @@ msgstr "Odgodi nakon datuma okidanja" #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" -msgstr "Uvjeti" +msgstr "Uslovi" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Na čekanju" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Prije ažuriranja filtera" #. module: base_action_rule #: view:base.action.rule:0 msgid "Action Rule" -msgstr "Pravilo radnje" +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 "" +"Ako je prisutan, ovaj uslov mora biti ispunjen nakon ažuriranja zapisa." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,12 +134,12 @@ msgstr "Polja za izmijeniti" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Zbog toga ovaj filter mora biti prisutan na ovoj stranici." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Filter nakon ažuriranja" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +149,7 @@ msgstr "Sati" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Da kreirate novi filter:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -163,11 +170,15 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"Pravilo akcije je provjereno kada kreirate ili uredite \"Povezani model " +"dokumenta\". Filter preduslova je provjeren tik prije uređivanja kada je " +"filter preduslova zakačen nakon uređivanja. Filter preduslova zato ne radi " +"prilikom kreiranja." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Uslov filtera" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +187,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- Otiđite na Vašu stranicu \"Povezani model dokumenta\" i postavite " +"parametre filtera u pogledu \"Pretrage\" (Primjer filtera baziranog na " +"Potencijalima/Prilikama: Datum kreiranja \"je jednak\" 01.01.2013)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -191,7 +205,7 @@ msgstr "Automatizirane radnje" #. 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." +msgstr "Daje redosljed sekvenci kod prikaza liste pravila." #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -206,7 +220,7 @@ msgstr "Dana" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Tajmer" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -216,27 +230,27 @@ msgstr "Vrsta odgode" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Serverska akcija za pokretanje" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "Kada nije označeno, pravilo je skriveno i neće biti izvršeno." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Otkazano" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "model" #. module: base_action_rule #: field:base.action.rule,last_run:0 msgid "Last Run" -msgstr "" +msgstr "Posljednje pokretanje" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -246,13 +260,14 @@ msgstr "Minute" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +msgstr "Povezani model dokumenta" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." msgstr "" +"Ako je prisutan, ovaj uslov mora biti ispunjen prije ažuriranja zapisa." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -280,16 +295,30 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite da postavite novo automatsko pravilo akcije. \n" +"

\n" +" Koristite automatske akcije da automatski pokrenete akciju " +"za\n" +" različite događaje. Primjer: potencijal kreiran od strane " +"određenog\n" +" korisnika može automatski biti dodjeljen određenom prodajnom " +"timu, \n" +" ili prilika koja je još uvijek u statusu \"Na čekanju\" " +"nakon 14 dana, može\n" +" pokrenuti automatski email podsjetnik.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" -msgstr "Datum unosa" +msgstr "Kreiraj datum" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Posljednja akcija" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -305,7 +334,7 @@ msgstr "Datum okidanja" #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Serverske akcije" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 diff --git a/addons/base_action_rule/i18n/ca.po b/addons/base_action_rule/i18n/ca.po index 0c6e26d8e69..d23ef38c74c 100644 --- a/addons/base_action_rule/i18n/ca.po +++ b/addons/base_action_rule/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:33+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/cs.po b/addons/base_action_rule/i18n/cs.po index 4e8529dc39e..566eee00e40 100644 --- a/addons/base_action_rule/i18n/cs.po +++ b/addons/base_action_rule/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:33+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/da.po b/addons/base_action_rule/i18n/da.po index b4762dfe929..593f15d370d 100644 --- a/addons/base_action_rule/i18n/da.po +++ b/addons/base_action_rule/i18n/da.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:33+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "I gang" #. module: base_action_rule #: view:base.action.rule:0 @@ -29,36 +29,38 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- I dette \"Søge\" vindue, vælg menuen \"Gem aktive filter\", indtast navnet " +"(Eks.: Opret 01/01/2012) og tilføj optionen \"Del med alle brugere\"" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" -msgstr "" +msgstr "Aktion regel" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Vælg et filter eller en timer" #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Ansvarlig" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Eksempel: email påmindelse, kald af objekt service, o.s.v." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Tilføj tilhænger" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Sæt ansvarlig" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -67,72 +69,75 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"Forsinkelse efter trigger tid. Du kan indsætte negativ antal hvis trigger " +"skal udløses før tidspunkt, f.eks send en påmindelse 15 min. før et møde." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test msgid "base.action.rule.lead.test" -msgstr "" +msgstr "base.action.rule.lead.test" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Lukket" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Opret" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 msgid "Delay after trigger date" -msgstr "" +msgstr "Forsinkelse efter trigger tid" #. module: base_action_rule #: view:base.action.rule:0 msgid "Conditions" -msgstr "" +msgstr "Betingelser" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Afventer" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Før opdatering filter" #. module: base_action_rule #: view:base.action.rule:0 msgid "Action Rule" -msgstr "" +msgstr "Aktion 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 "" +"Hvis eksisterer, skal denne regel være sand efter opdatering af post." #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" -msgstr "" +msgstr "Felter der ændres" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Filter skal derfor være tilgængelige på denne side." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Efter opdatering filter" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +147,7 @@ msgstr "Timer" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "For at oprette nyt filter" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -153,7 +158,7 @@ msgstr "Aktiv" #. module: base_action_rule #: view:base.action.rule:0 msgid "Delay After Trigger Date" -msgstr "" +msgstr "Forsinkelse efter trigger tid" #. module: base_action_rule #: view:base.action.rule:0 @@ -163,11 +168,15 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"En aktion regel er markeret når du opretter eller ændrer den \"Tilhørende " +"dokument model\". Før betingelses filter er markeret lige før ændringen mens " +"efter betingelses filter er markeret efter ændringen. Et før betingelses " +"filter virker derfor ikke ved en oprettelse." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Filter betingelse" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +185,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- Gå til din \"Tilhørende dokument model\" side og sæt filter parameter i " +"\"søge\" vindue (Eksempel på filter baseret på Emner/forventninger: " +"Oprettelses dato \"er lig med\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -186,12 +198,12 @@ msgstr "Regel Navn" #: 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 "" +msgstr "Automatiske aktioner" #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." -msgstr "" +msgstr "Angiver rækkefølge når listen af regler vises" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -206,37 +218,37 @@ msgstr "Dage" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Nedtællingsur" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" -msgstr "" +msgstr "Forsinkelses type" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Server aktion der afvikles" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "Sat til falsk, reglen vil blive skjult og bliver ikke udført." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Annulleret" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: base_action_rule #: field:base.action.rule,last_run:0 msgid "Last Run" -msgstr "" +msgstr "Seneste afvikling" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -246,23 +258,24 @@ msgstr "Minutter" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +msgstr "Relateret dokument model" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." msgstr "" +"Hvis eksisterer, skal denne betingelse være opfyldt før opdatering af post." #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Rækkefølge" #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" -msgstr "" +msgstr "Aktioner" #. module: base_action_rule #: model:ir.actions.act_window,help:base_action_rule.base_action_rule_act @@ -280,37 +293,49 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik for at oprette ny automatisk regel. \n" +"

\n" +" Brug automatiske aktioner for automatisk at udføre aktioner " +"på\n" +" diverse skærmbilleder. F.eks.: Et emne oprettet at en " +"bestemt bruger skal\n" +" automatisk oprettes med en bestemt salgs gruppe, eller et\n" +" tilbud der stadigt har status afventende efter 14 dage kan\n" +" udløse en automatisk påmindelses email.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" -msgstr "" +msgstr "Oprettelses dato" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Sidste aktion" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Kontakt" #. module: base_action_rule #: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" -msgstr "" +msgstr "Trigger dato" #. module: base_action_rule #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Server aktion" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Emne" #~ msgid "Email From" #~ msgstr "E-mail fra" diff --git a/addons/base_action_rule/i18n/de.po b/addons/base_action_rule/i18n/de.po index 2dfbfbe1e58..b504f8efacd 100644 --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -70,15 +70,15 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" -"Zeitliche Verzögerung nach Auslöse-Datum. Sie können hier auch einen " +"Zeitliche Verzögerung nach Auslösedatum. Sie können hier auch einen " "negativen Wert eintragen, insofern Sie eine zeitliche Verzögerung vor dem " -"Auslöse Datum benötigen, z.B. wenn Sie 15 Minuten vor einem Treffen erinnert " +"Auslösedatum benötigen, z.B. wenn Sie 15 Minuten vor einem Treffen erinnert " "werden möchten." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test msgid "base.action.rule.lead.test" -msgstr "" +msgstr "base.action.rule.lead.test" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -113,7 +113,7 @@ msgstr "Status" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "Vorgeschaltete Filter Aktualisierung" +msgstr "Vorgeschaltete Filteraktualisierung" #. module: base_action_rule #: view:base.action.rule:0 @@ -193,19 +193,19 @@ msgid "" msgstr "" "- Gehen Sie zur Seite des \"verbundenen Datenmodells\" und entwerfen Sie " "dort die Filtereinstellungen in der entsprechenden Suche-Ansicht (zum " -"Beispiel Filter auf Basis Ihrer Interessenten / Chancen: Datum der " -"Erstellung \"ist gleich 01/01/2012\"." +"Beispiel Filter auf Basis Ihrer Interessenten/ Chancen: Datum der Erstellung " +" \"ist gleich 01/01/2012\")." #. module: base_action_rule #: field:base.action.rule,name:0 msgid "Rule Name" -msgstr "Bezeichnung Regel" +msgstr "Regelbezeichnung" #. 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 "Automatische Aktion" +msgstr "Automatische Aktionen" #. module: base_action_rule #: help:base.action.rule,sequence:0 @@ -267,7 +267,7 @@ msgstr "Minuten" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "verbundenes Datenmodell" +msgstr "Verbundenes Datenmodell" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 @@ -303,23 +303,22 @@ msgid "" "

\n" " " msgstr "" -"Klicken Sie zur Erstellung einer neuen automatischen Abfolge Regel.\n" +"Klicken Sie zur Erstellung einer neuen automatischen Abfolgeregel.\n" "\n" -"Benutzen Sie automatische Abfolge Regeln um diverse Voränge verschiedener " +"Benutzen Sie automatische Abfolgeregeln um diverse Vorgä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" +"automatisch E-Mail-Erinnerung aus.\n" " " #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" -msgstr "Datum Erstellung" +msgstr "Erstelldatum" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 @@ -340,7 +339,7 @@ msgstr "Auslösetermin" #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "Server-Aktion" +msgstr "Server-Aktionen" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 diff --git a/addons/base_action_rule/i18n/el.po b/addons/base_action_rule/i18n/el.po index 31c69898e20..cec05887790 100644 --- a/addons/base_action_rule/i18n/el.po +++ b/addons/base_action_rule/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es.po b/addons/base_action_rule/i18n/es.po index 5e0fbe8e3d0..be2d93b2da2 100644 --- a/addons/base_action_rule/i18n/es.po +++ b/addons/base_action_rule/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_CR.po b/addons/base_action_rule/i18n/es_CR.po index bff6d4f924e..00a608afceb 100644 --- a/addons/base_action_rule/i18n/es_CR.po +++ b/addons/base_action_rule/i18n/es_CR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/es_EC.po b/addons/base_action_rule/i18n/es_EC.po index ae54caa1aa8..51ba3934dec 100644 --- a/addons/base_action_rule/i18n/es_EC.po +++ b/addons/base_action_rule/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_PY.po b/addons/base_action_rule/i18n/es_PY.po index b2a92ac946b..41ea192a6a8 100644 --- a/addons/base_action_rule/i18n/es_PY.po +++ b/addons/base_action_rule/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fa.po b/addons/base_action_rule/i18n/fa.po index d7169128557..4c269643622 100644 --- a/addons/base_action_rule/i18n/fa.po +++ b/addons/base_action_rule/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fi.po b/addons/base_action_rule/i18n/fi.po index da58c991ab7..cd6b54d5894 100644 --- a/addons/base_action_rule/i18n/fi.po +++ b/addons/base_action_rule/i18n/fi.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:33+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "Käsittelyssä" #. module: base_action_rule #: view:base.action.rule:0 @@ -38,7 +38,7 @@ msgstr "Toimintosäännöt" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Valitse ehdoksi suodatin tai ajastin" #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,17 +48,17 @@ msgstr "Vastuuhenkilö" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Esim. sähköpostimuistutukset, soittopalvelut, jne." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Lisää seuraajat" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Aseta vastuuhenkilö" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -71,17 +71,17 @@ 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 "" +msgstr "base.action.rule.lead.test" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Suljettu" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Uusi" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,17 +96,17 @@ msgstr "Ehdot" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Odottava" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Tila" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Ennen päivityssuodatin" #. module: base_action_rule #: view:base.action.rule:0 @@ -118,6 +118,7 @@ msgstr "Toimintosääntö" msgid "" "If present, this condition must be satisfied after the update of the record." msgstr "" +"Jos on esillä, niin tämä ehto pitää täyttää tietueen päivityksen jälkeen." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,12 +128,12 @@ msgstr "Muutettavat kentät" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Suodatin pitää tästä syystä olla saataville tällä sivulla." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Jälkeen päivityssuodatin" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +143,7 @@ msgstr "Tunnit" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Luodaan uusi suodatin:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -167,7 +168,7 @@ msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Suodattimen ehdot" #. module: base_action_rule #: view:base.action.rule:0 @@ -206,7 +207,7 @@ msgstr "Päivät" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Ajastin" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -216,7 +217,7 @@ msgstr "Viivästyksen tyyppi" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Palvelimen ajettavat tehtävät" #. module: base_action_rule #: help:base.action.rule,active:0 @@ -226,12 +227,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Peruttu" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Malli" #. module: base_action_rule #: field:base.action.rule,last_run:0 @@ -289,7 +290,7 @@ msgstr "Luontipäivä" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Viimeisin tapahtuma" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -305,7 +306,7 @@ msgstr "Liipaisupäivämäärä" #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Palvelintoiminnot" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po index 91460ed7f43..947164efc6c 100644 --- a/addons/base_action_rule/i18n/fr.po +++ b/addons/base_action_rule/i18n/fr.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "En cours" #. module: base_action_rule #: view:base.action.rule:0 @@ -48,7 +48,7 @@ msgstr "Responsable" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Exemples : rappel de courriel, avis de service, etc." #. module: base_action_rule #: field:base.action.rule,act_followers:0 @@ -118,6 +118,8 @@ msgstr "Règle d'action" msgid "" "If present, this condition must be satisfied after the update of the record." msgstr "" +"Si présent, la condition devra être satisfaite après la mise à jour de " +"l'enregistrement." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,7 +129,7 @@ msgstr "Champs à modifier" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Le filtre doit par conséquent être disponible dans cette page." #. module: base_action_rule #: field:base.action.rule,filter_id:0 @@ -142,7 +144,7 @@ msgstr "Heures" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Pour créer un nouveau filtre :" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -217,12 +219,12 @@ msgstr "Type de délai" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Actions du serveur à exécuter" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "Lorsque décoché, la règle est cachée et ne sera pas exécutée." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -247,13 +249,15 @@ msgstr "Minutes" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +msgstr "Modèle de document connexe" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." msgstr "" +"Si présent, la condition doit être satisfaite avant la mise à jour de " +"l'enregistrement." #. module: base_action_rule #: field:base.action.rule,sequence:0 diff --git a/addons/base_action_rule/i18n/gl.po b/addons/base_action_rule/i18n/gl.po index 2d4def189a5..1550d64c9ff 100644 --- a/addons/base_action_rule/i18n/gl.po +++ b/addons/base_action_rule/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gu.po b/addons/base_action_rule/i18n/gu.po index 9f49a611e2c..9c5fefedd22 100644 --- a/addons/base_action_rule/i18n/gu.po +++ b/addons/base_action_rule/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/he.po b/addons/base_action_rule/i18n/he.po new file mode 100644 index 00000000000..7e31c0fa51c --- /dev/null +++ b/addons/base_action_rule/i18n/he.po @@ -0,0 +1,313 @@ +# Hebrew 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-12-30 18:37+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hebrew \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "In Progress" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +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 +#: model:ir.model,name:base_action_rule.model_base_action_rule +msgid "Action Rules" +msgstr "" + +#. module: base_action_rule +#: 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 +#: 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 "" + +#. module: base_action_rule +#: field:base.action.rule,trg_date_range:0 +msgid "Delay after trigger date" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Conditions" +msgstr "" + +#. module: base_action_rule +#: 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 +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 +#: view:base.action.rule:0 +msgid "The filter must therefore be available in this page." +msgstr "" + +#. module: base_action_rule +#: 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 +msgid "Hours" +msgstr "" + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "To create a new filter:" +msgstr "" + +#. module: base_action_rule +#: 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 +msgid "Delay After Trigger Date" +msgstr "" + +#. module: base_action_rule +#: 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 +#: view:base.action.rule:0 +msgid "Filter Condition" +msgstr "" + +#. module: base_action_rule +#: 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 +#: model:ir.ui.menu,name:base_action_rule.menu_base_action_rule_form +msgid "Automated Actions" +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 +#: 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 +#: view:base.action.rule:0 +msgid "Server actions to run" +msgstr "" + +#. module: base_action_rule +#: 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 +msgid "Model" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,last_run:0 +msgid "Last Run" +msgstr "" + +#. module: base_action_rule +#: selection:base.action.rule,trg_date_range_type:0 +msgid "Minutes" +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,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 "Actions" +msgstr "" + +#. module: base_action_rule +#: model:ir.actions.act_window,help:base_action_rule.base_action_rule_act +msgid "" +"

\n" +" Click to setup a new automated action rule. \n" +"

\n" +" Use automated actions to automatically trigger actions for\n" +" various screens. Example: a lead created by a specific user " +"may\n" +" be automatically set to a specific sales team, or an\n" +" opportunity which still has status pending after 14 days " +"might\n" +" trigger an automatic reminder email.\n" +"

\n" +" " +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,date_action_last:0 +msgid "Last Action" +msgstr "" + +#. module: base_action_rule +#: field:base.action.rule.lead.test,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: base_action_rule +#: 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/hr.po b/addons/base_action_rule/i18n/hr.po index 2477940e4b3..0c1d028aab0 100644 --- a/addons/base_action_rule/i18n/hr.po +++ b/addons/base_action_rule/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hu.po b/addons/base_action_rule/i18n/hu.po index 259399e7f36..8f443a72f06 100644 --- a/addons/base_action_rule/i18n/hu.po +++ b/addons/base_action_rule/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po index 63808a578f4..57002233b74 100644 --- a/addons/base_action_rule/i18n/it.po +++ b/addons/base_action_rule/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ja.po b/addons/base_action_rule/i18n/ja.po index 575f30035d1..bd8f090454f 100644 --- a/addons/base_action_rule/i18n/ja.po +++ b/addons/base_action_rule/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lt.po b/addons/base_action_rule/i18n/lt.po index d0e17754958..a8ff82e7c77 100644 --- a/addons/base_action_rule/i18n/lt.po +++ b/addons/base_action_rule/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po index 668538d907b..4a2f96542f2 100644 --- a/addons/base_action_rule/i18n/lv.po +++ b/addons/base_action_rule/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/mk.po b/addons/base_action_rule/i18n/mk.po index c8a80e0cda7..134905ae1ff 100644 --- a/addons/base_action_rule/i18n/mk.po +++ b/addons/base_action_rule/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/mn.po b/addons/base_action_rule/i18n/mn.po index fa7343d46ce..83dabe37887 100644 --- a/addons/base_action_rule/i18n/mn.po +++ b/addons/base_action_rule/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nb.po b/addons/base_action_rule/i18n/nb.po index 4f186a6f519..21f08f8b417 100644 --- a/addons/base_action_rule/i18n/nb.po +++ b/addons/base_action_rule/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nl.po b/addons/base_action_rule/i18n/nl.po index 8a1c70ad81a..995d81daea5 100644 --- a/addons/base_action_rule/i18n/nl.po +++ b/addons/base_action_rule/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:33+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -70,7 +70,7 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" -"Vertraging na de aanroep datum. U kunt ene negatieve waarde invoeren, indien " +"Vertraging na de aanroep datum. U kunt een negatieve waarde invoeren, indien " "u een actie wilt uitvoeren voor de aanroepdatum, bijvoorbeeld een " "herinnering, 15 minuten voor een afspraak." diff --git a/addons/base_action_rule/i18n/pl.po b/addons/base_action_rule/i18n/pl.po index 85c40be4f03..6ffe48a3145 100644 --- a/addons/base_action_rule/i18n/pl.po +++ b/addons/base_action_rule/i18n/pl.po @@ -14,13 +14,13 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "W toku" #. module: base_action_rule #: view:base.action.rule:0 @@ -33,32 +33,32 @@ msgstr "" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" -msgstr "" +msgstr "Reguły akcji" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Wybierz filtr lub czasomierz jako warunek." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Odpowiedzialny" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Przykłady: adres email, wywołanie usługi obiektu, itp." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Dodaj obserwatorów" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Ustaw odpowiedzialnego" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -76,12 +76,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Zamknięte" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Nowy" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,22 +96,22 @@ msgstr "Warunki" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "W oczekiwaniu" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Filtr poprzedzający aktualizację" #. module: base_action_rule #: view:base.action.rule:0 msgid "Action Rule" -msgstr "" +msgstr "Reguła działania" #. module: base_action_rule #: help:base.action.rule,filter_id:0 @@ -127,12 +127,12 @@ msgstr "Pola do zmiany" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Ten filtr dlatego musi być na tej stronie." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Filtr po aktualizacji" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +142,7 @@ msgstr "Godziny" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Aby utworzyć nowy filtr:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -153,7 +153,7 @@ msgstr "Aktywne" #. module: base_action_rule #: view:base.action.rule:0 msgid "Delay After Trigger Date" -msgstr "" +msgstr "Opuźnienie po dacie wyzwalającej działanie" #. module: base_action_rule #: view:base.action.rule:0 @@ -167,7 +167,7 @@ msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Warunki filtra" #. module: base_action_rule #: view:base.action.rule:0 @@ -186,7 +186,7 @@ msgstr "Nazwa reguły" #: 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 "" +msgstr "Działania automatyczne" #. module: base_action_rule #: help:base.action.rule,sequence:0 @@ -206,7 +206,7 @@ msgstr "Dni" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Czasomierz" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -216,27 +216,28 @@ msgstr "Typ opóźnienia" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Działania serwera do przeprowadzenia" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." msgstr "" +"Kiedy nie jest zaznaczone, ta zasada jest ukryta i nie będzie wykonywana." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Anulowano" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: base_action_rule #: field:base.action.rule,last_run:0 msgid "Last Run" -msgstr "" +msgstr "Ostatnie uruchomienie" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -246,7 +247,7 @@ msgstr "Minuty" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +msgstr "Powiązany model dokumentu" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 @@ -257,12 +258,12 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sekwencja" #. module: base_action_rule #: view:base.action.rule:0 msgid "Actions" -msgstr "" +msgstr "Działania" #. module: base_action_rule #: model:ir.actions.act_window,help:base_action_rule.base_action_rule_act @@ -284,33 +285,33 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule,create_date:0 msgid "Create Date" -msgstr "" +msgstr "Data utworzenia" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Ostatnia akcja" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Kontrahent" #. module: base_action_rule #: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" -msgstr "" +msgstr "Data wyzwolenia" #. module: base_action_rule #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Działania serwera" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Temat" #, python-format #~ msgid "Error!" diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po index 70176f1d7b0..d6056babddc 100644 --- a/addons/base_action_rule/i18n/pt.po +++ b/addons/base_action_rule/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pt_BR.po b/addons/base_action_rule/i18n/pt_BR.po index 1a33c55b77e..b01c21a4940 100644 --- a/addons/base_action_rule/i18n/pt_BR.po +++ b/addons/base_action_rule/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "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" +"\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-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ro.po b/addons/base_action_rule/i18n/ro.po index a6e6befe903..b6f884ddf54 100644 --- a/addons/base_action_rule/i18n/ro.po +++ b/addons/base_action_rule/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index a09c3da459d..2c8616efe97 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sl.po b/addons/base_action_rule/i18n/sl.po index 2db610507ea..7e443b8d6ef 100644 --- a/addons/base_action_rule/i18n/sl.po +++ b/addons/base_action_rule/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -29,16 +29,19 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"V tem istem pogledu \"Iskanje\", izberite meni \"Shrani trenutni filter\", " +"vpišite naziv (npr. Kreirano 01/01/2013) in označite opcijo \"Deli z vsemi " +"uporabniki\"" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" -msgstr "" +msgstr "Pravila aktivnosti" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Izberite filter ali timer kot pogoj" #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,17 +51,17 @@ msgstr "Odgovoren" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Primeri: opomniki po e-pošti, klicanje servisa, itd." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Dodaj sledilce" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Določi odgovornega" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -67,6 +70,8 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"Zamik po datumu izvedbe. Lahko vpišete negativno število, če potrebujete " +"zamik pred datumom izvedbe, npr. pošiljanje opomnika 15 minut pred sestankom." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test @@ -86,7 +91,7 @@ msgstr "Novo" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 msgid "Delay after trigger date" -msgstr "" +msgstr "Zamik po datumu izvedbe" #. module: base_action_rule #: view:base.action.rule:0 @@ -106,33 +111,33 @@ msgstr "Status" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Filter pred popravkom" #. module: base_action_rule #: view:base.action.rule:0 msgid "Action Rule" -msgstr "" +msgstr "Pravilo aktivnosti" #. 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 "" +msgstr "Če je določen, mora biti ta pogoj izpolnjen po spremembi zapisa." #. module: base_action_rule #: view:base.action.rule:0 msgid "Fields to Change" -msgstr "" +msgstr "Polja, ki se spremenijo" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Zato mora biti filter dostopen na tej strani." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "filter po spremembi" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +147,7 @@ msgstr "Ure" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Za kreiranje novega filtra:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -153,7 +158,7 @@ msgstr "Aktivno" #. module: base_action_rule #: view:base.action.rule:0 msgid "Delay After Trigger Date" -msgstr "" +msgstr "Zamik po datumu sprožitve" #. module: base_action_rule #: view:base.action.rule:0 @@ -163,11 +168,15 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"Pravilo aktivnosti je preverjeno, ko kreirate ali spremenite \"Povezan " +"dokumentni model\". Filter predpogoja je preverjen tik pred spremembo, " +"medtem ko je posledični filter preverjen po spremembi. Napovedani filter bo " +"delal med kreiranjem." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Pogoj filtriranja" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +185,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"Pojdite na stran \"Povezani dokumenti model\" in nastavite parametre filtra " +"v pogledu \"Iskanje\" (primer filtra temeljni na Možnostih/Priložnostih: " +"Datum kreiranja \"je enak\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -191,7 +203,7 @@ msgstr "Avtomatska dejanja" #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." -msgstr "" +msgstr "Določitev zaporedja nalogov pri izpisu seznama pravil" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -211,22 +223,22 @@ msgstr "Časomerilnik" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 msgid "Delay type" -msgstr "" +msgstr "Tip zamika" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "serverske aktivnosti, ki naj se izvedejo" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "Če ni označeno, je pravilo skrito in ne bo izvedeno." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Preklicano" #. module: base_action_rule #: field:base.action.rule,model:0 @@ -246,13 +258,13 @@ msgstr "Minute" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +msgstr "Povezan dokumentni model" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." -msgstr "" +msgstr "Če je prisoten, mora biti ta pogoj izveden pred spremembo zapisa." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -280,6 +292,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Potrdite za nastavitev novega avtomatičnega pravila " +"aktivnosti. \n" +"

\n" +" Uporabite avtomatične akitvnosti za avtomatsko izvedbo " +"aktivnosti za\n" +" različne ekrane. Npr.: možnost, ki jo kreira nek uporabnik, " +"je lahko\n" +" avtomatično prirejena določeni prodajni ekipi. Ali: " +"priložnost, ki je še\n" +" v statusu čakanja, lahko avtomatično čez 14 dni sproži\n" +" avtomatično e-sporočilo za opomnik.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 @@ -289,7 +315,7 @@ msgstr "Datum nastanka" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Zadnja aktivnost" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -299,13 +325,13 @@ msgstr "Stranka" #. module: base_action_rule #: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" -msgstr "" +msgstr "Sproženo dne" #. module: base_action_rule #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Aktivnosti strežnika" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 diff --git a/addons/base_action_rule/i18n/sq.po b/addons/base_action_rule/i18n/sq.po index 0be393afe40..0a00a099895 100644 --- a/addons/base_action_rule/i18n/sq.po +++ b/addons/base_action_rule/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:33+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr.po b/addons/base_action_rule/i18n/sr.po index 3a4f917f359..63be4cd4538 100644 --- a/addons/base_action_rule/i18n/sr.po +++ b/addons/base_action_rule/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr@latin.po b/addons/base_action_rule/i18n/sr@latin.po index f431acf0346..699ec5713df 100644 --- a/addons/base_action_rule/i18n/sr@latin.po +++ b/addons/base_action_rule/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sv.po b/addons/base_action_rule/i18n/sv.po index a6d2f233fe0..7ad2bd342f7 100644 --- a/addons/base_action_rule/i18n/sv.po +++ b/addons/base_action_rule/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:26+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/tr.po b/addons/base_action_rule/i18n/tr.po index f36a3b10d1a..34b3eb78fd2 100644 --- a/addons/base_action_rule/i18n/tr.po +++ b/addons/base_action_rule/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po index 05854f099c5..c2cd3a86809 100644 --- a/addons/base_action_rule/i18n/zh_CN.po +++ b/addons/base_action_rule/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/zh_TW.po b/addons/base_action_rule/i18n/zh_TW.po index a6b72ee9e40..5bf1c5aa466 100644 --- a/addons/base_action_rule/i18n/zh_TW.po +++ b/addons/base_action_rule/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:27+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:34+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_calendar/base_calendar.py b/addons/base_calendar/base_calendar.py deleted file mode 100644 index 769d4e2b358..00000000000 --- a/addons/base_calendar/base_calendar.py +++ /dev/null @@ -1,1765 +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 . -# -############################################################################## - -from datetime import datetime, timedelta, date -from dateutil import parser -from dateutil import rrule -from dateutil.relativedelta import relativedelta -from openerp.osv import fields, osv -from openerp.tools.translate import _ -import pytz -import re -import time - -from openerp import tools, SUPERUSER_ID -import openerp.service.report - -months = { - 1: "January", 2: "February", 3: "March", 4: "April", \ - 5: "May", 6: "June", 7: "July", 8: "August", 9: "September", \ - 10: "October", 11: "November", 12: "December" -} - -def get_recurrent_dates(rrulestring, exdate, startdate=None, exrule=None): - """ - Get recurrent dates based on Rule string considering exdate and start date. - @param rrulestring: rulestring - @param exdate: list of exception dates for rrule - @param startdate: startdate for computing recurrent dates - @return: list of Recurrent dates - """ - def todate(date): - val = parser.parse(''.join((re.compile('\d')).findall(date))) - return val - - if not startdate: - startdate = datetime.now() - - if not exdate: - exdate = [] - - rset1 = rrule.rrulestr(str(rrulestring), dtstart=startdate, forceset=True) - for date in exdate: - datetime_obj = todate(date) - rset1._exdate.append(datetime_obj) - - if exrule: - rset1.exrule(rrule.rrulestr(str(exrule), dtstart=startdate)) - - return list(rset1) - -def base_calendar_id2real_id(base_calendar_id=None, with_date=False): - """ - Convert a "virtual/recurring event id" (type string) into a real event id (type int). - E.g. virtual/recurring event id is 4-20091201100000, so it will return 4. - @param base_calendar_id: id of calendar - @param with_date: if a value is passed to this param it will return dates based on value of withdate + base_calendar_id - @return: real event id - """ - if base_calendar_id and isinstance(base_calendar_id, (str, unicode)): - res = base_calendar_id.split('-') - - if len(res) >= 2: - real_id = res[0] - if with_date: - real_date = time.strftime("%Y-%m-%d %H:%M:%S", \ - time.strptime(res[1], "%Y%m%d%H%M%S")) - start = datetime.strptime(real_date, "%Y-%m-%d %H:%M:%S") - end = start + timedelta(hours=with_date) - return (int(real_id), real_date, end.strftime("%Y-%m-%d %H:%M:%S")) - return int(real_id) - - return base_calendar_id and int(base_calendar_id) or base_calendar_id - -def get_real_ids(ids): - if isinstance(ids, (str, int, long)): - return base_calendar_id2real_id(ids) - - if isinstance(ids, (list, tuple)): - res = [] - for id in ids: - res.append(base_calendar_id2real_id(id)) - return res - -def real_id2base_calendar_id(real_id, recurrent_date): - """ - Convert a real event id (type int) into a "virtual/recurring event id" (type string). - E.g. real event id is 1 and recurrent_date is set to 01-12-2009 10:00:00, so - it will return 1-20091201100000. - @param real_id: real event id - @param recurrent_date: real event recurrent date - @return: string containing the real id and the recurrent date - """ - if real_id and recurrent_date: - recurrent_date = time.strftime("%Y%m%d%H%M%S", \ - time.strptime(recurrent_date, "%Y-%m-%d %H:%M:%S")) - return '%d-%s' % (real_id, recurrent_date) - return real_id - -html_invitation = """ - - - -%(name)s - - - - - - - - - - - - -
Hello,
You are invited for %(company)s Event.
Below are the details of event. Hours and dates expressed in %(timezone)s time.
- - - - - - - - -
-

%(name)s

-
- - - - - - - - - - - - - - - - - - - - - - - - -
-
Start Date
-
:%(start_date)s -
End Date
-
:%(end_date)s
Description:%(description)s
-
Location
-
:%(location)s
-
Event Attendees
-
: -
-
%(attendees)s
-
-
-
- - - - - - - - - - - - - -
From:
%(user)s
--------------------------
%(sign)s
- - -""" - -class calendar_attendee(osv.osv): - """ - Calendar Attendee Information - """ - _name = 'calendar.attendee' - _description = 'Attendee information' - _rec_name = 'cutype' - - __attribute__ = {} - - def _get_address(self, name=None, email=None): - """ - Gives email information in ical CAL-ADDRESS type format. - @param name: name for CAL-ADDRESS value - @param email: email address for CAL-ADDRESS value - """ - if name and email: - name += ':' - return (name or '') + (email and ('MAILTO:' + email) or '') - - def _compute_data(self, cr, uid, ids, name, arg, context=None): - """ - Compute data on function fields for attendee values. - @param cr: the current row, from the database cursor - @param uid: the current user's ID for security checks - @param ids: list of calendar attendee's IDs - @param name: name of field - @param context: a standard dictionary for contextual values - @return: dictionary of form {id: {'field Name': value'}} - """ - name = name[0] - result = {} - for attdata in self.browse(cr, uid, ids, context=context): - id = attdata.id - result[id] = {} - if name == 'sent_by': - if not attdata.sent_by_uid: - result[id][name] = '' - continue - else: - result[id][name] = self._get_address(attdata.sent_by_uid.name, \ - attdata.sent_by_uid.email) - - if name == 'cn': - if attdata.user_id: - result[id][name] = attdata.user_id.name - elif attdata.partner_id: - result[id][name] = attdata.partner_id.name or False - else: - result[id][name] = attdata.email or '' - - if name == 'delegated_to': - todata = [] - for child in attdata.child_ids: - if child.email: - todata.append('MAILTO:' + child.email) - result[id][name] = ', '.join(todata) - - if name == 'delegated_from': - fromdata = [] - for parent in attdata.parent_ids: - if parent.email: - fromdata.append('MAILTO:' + parent.email) - result[id][name] = ', '.join(fromdata) - - if name == 'event_date': - if attdata.ref: - result[id][name] = attdata.ref.date - else: - result[id][name] = False - - if name == 'event_end_date': - if attdata.ref: - result[id][name] = attdata.ref.date_deadline - else: - result[id][name] = False - - if name == 'sent_by_uid': - if attdata.ref: - result[id][name] = (attdata.ref.user_id.id, attdata.ref.user_id.name) - else: - result[id][name] = uid - - if name == 'language': - user_obj = self.pool.get('res.users') - lang = user_obj.read(cr, uid, uid, ['lang'], context=context)['lang'] - result[id][name] = lang.replace('_', '-') if lang else False - - return result - - def _lang_get(self, cr, uid, context=None): - """ - Get language for language selection field. - @param cr: the current row, from the database cursor - @param uid: the current user's id for security checks - @param context: a standard dictionary for contextual values - @return: list of dictionary which contain code and name and id - """ - obj = self.pool.get('res.lang') - ids = obj.search(cr, uid, []) - res = obj.read(cr, uid, ids, ['code', 'name'], context=context) - res = [((r['code']).replace('_', '-').lower(), r['name']) for r in res] - return res - - _columns = { - 'cutype': fields.selection([('individual', 'Individual'), \ - ('group', 'Group'), ('resource', 'Resource'), \ - ('room', 'Room'), ('unknown', 'Unknown') ], \ - 'Invite Type', help="Specify the type of Invitation"), - 'member': fields.char('Member', size=124, - help="Indicate the groups that the attendee belongs to"), - 'role': fields.selection([('req-participant', 'Participation required'), \ - ('chair', 'Chair Person'), \ - ('opt-participant', 'Optional Participation'), \ - ('non-participant', 'For information Purpose')], 'Role', \ - help='Participation role for the calendar user'), - 'state': fields.selection([('needs-action', 'Needs Action'), - ('tentative', 'Uncertain'), - ('declined', 'Declined'), - ('accepted', 'Accepted'), - ('delegated', 'Delegated')], 'Status', readonly=True, \ - help="Status of the attendee's participation"), - 'rsvp': fields.boolean('Required Reply?', - help="Indicats whether the favor of a reply is requested"), - 'delegated_to': fields.function(_compute_data, \ - string='Delegated To', type="char", size=124, store=True, \ - multi='delegated_to', help="The users that the original \ -request was delegated to"), - 'delegated_from': fields.function(_compute_data, string=\ - 'Delegated From', type="char", store=True, size=124, multi='delegated_from'), - 'parent_ids': fields.many2many('calendar.attendee', 'calendar_attendee_parent_rel', \ - 'attendee_id', 'parent_id', 'Delegrated From'), - 'child_ids': fields.many2many('calendar.attendee', 'calendar_attendee_child_rel', \ - 'attendee_id', 'child_id', 'Delegrated To'), - 'sent_by': fields.function(_compute_data, string='Sent By', \ - type="char", multi='sent_by', store=True, size=124, \ - help="Specify the user that is acting on behalf of the calendar user"), - 'sent_by_uid': fields.function(_compute_data, string='Sent By User', \ - type="many2one", relation="res.users", multi='sent_by_uid'), - 'cn': fields.function(_compute_data, string='Common name', \ - type="char", size=124, multi='cn', store=True), - 'dir': fields.char('URI Reference', size=124, help="Reference to the URI\ -that points to the directory information corresponding to the attendee."), - 'language': fields.function(_compute_data, string='Language', \ - type="selection", selection=_lang_get, multi='language', \ - store=True, help="To specify the language for text values in a\ -property or property parameter."), - 'user_id': fields.many2one('res.users', 'User'), - 'partner_id': fields.many2one('res.partner', 'Contact'), - 'email': fields.char('Email', size=124, help="Email of Invited Person"), - 'event_date': fields.function(_compute_data, string='Event Date', \ - type="datetime", multi='event_date'), - 'event_end_date': fields.function(_compute_data, \ - string='Event End Date', type="datetime", \ - multi='event_end_date'), - 'ref': fields.reference('Event Ref', selection=openerp.addons.base.res.res_request.referencable_models, size=128), - 'availability': fields.selection([('free', 'Free'), ('busy', 'Busy')], 'Free/Busy', readonly="True"), - } - _defaults = { - 'state': 'needs-action', - 'role': 'req-participant', - 'rsvp': True, - 'cutype': 'individual', - } - - - def copy(self, cr, uid, id, default=None, context=None): - raise osv.except_osv(_('Warning!'), _('You cannot duplicate a calendar attendee.')) - - def onchange_partner_id(self, cr, uid, ids, partner_id,context=None): - """ - Make entry on email and availbility on change of partner_id field. - @param cr: the current row, from the database cursor - @param uid: the current user's ID for security checks - @param ids: list of calendar attendee's IDs - @param partner_id: changed value of partner id - @param context: a standard dictionary for contextual values - @return: dictionary of values which put value in email and availability fields - """ - - if not partner_id: - return {'value': {'email': ''}} - partner = self.pool.get('res.partner').browse(cr, uid, partner_id, context=context) - return {'value': {'email': partner.email}} - - def get_ics_file(self, cr, uid, event_obj, context=None): - """ - Returns iCalendar file for the event invitation. - @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 event_obj: event object (browse record) - @param context: a standard dictionary for contextual values - @return: .ics file content - """ - res = None - def ics_datetime(idate, short=False): - if idate: - #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 - except ImportError: - return res - cal = vobject.iCalendar() - event = cal.add('vevent') - if not event_obj.date_deadline or not event_obj.date: - raise osv.except_osv(_('Warning!'),_("First you have to specify the date of the invitation.")) - event.add('created').value = ics_datetime(time.strftime('%Y-%m-%d %H:%M:%S')) - event.add('dtstart').value = ics_datetime(event_obj.date) - event.add('dtend').value = ics_datetime(event_obj.date_deadline) - event.add('summary').value = event_obj.name - if event_obj.description: - event.add('description').value = event_obj.description - if event_obj.location: - event.add('location').value = event_obj.location - if event_obj.rrule: - event.add('rrule').value = event_obj.rrule - - if event_obj.user_id or event_obj.organizer_id: - event_org = event.add('organizer') - organizer = event_obj.organizer_id - if not organizer: - organizer = event_obj.user_id - event_org.params['CN'] = [organizer.name] - event_org.value = 'MAILTO:' + (organizer.email or organizer.name) - - if event_obj.alarm_id: - # computes alarm data - valarm = event.add('valarm') - alarm_object = self.pool.get('res.alarm') - alarm_data = alarm_object.read(cr, uid, event_obj.alarm_id.id, context=context) - # Compute trigger data - interval = alarm_data['trigger_interval'] - occurs = alarm_data['trigger_occurs'] - duration = (occurs == 'after' and alarm_data['trigger_duration']) \ - or -(alarm_data['trigger_duration']) - related = alarm_data['trigger_related'] - trigger = valarm.add('TRIGGER') - trigger.params['related'] = [related.upper()] - if interval == 'days': - delta = timedelta(days=duration) - if interval == 'hours': - delta = timedelta(hours=duration) - if interval == 'minutes': - delta = timedelta(minutes=duration) - trigger.value = delta - # Compute other details - valarm.add('DESCRIPTION').value = alarm_data['name'] or 'OpenERP' - - for attendee in event_obj.attendee_ids: - attendee_add = event.add('attendee') - attendee_add.params['CUTYPE'] = [str(attendee.cutype)] - attendee_add.params['ROLE'] = [str(attendee.role)] - attendee_add.params['RSVP'] = [str(attendee.rsvp)] - attendee_add.value = 'MAILTO:' + (attendee.email or '') - res = cal.serialize() - return res - - def _send_mail(self, cr, uid, ids, mail_to, email_from=tools.config.get('email_from', False), context=None): - """ - Send mail for event invitation to event attendees. - @param email_from: email address for user sending the mail - @return: True - """ - company = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.name - for att in self.browse(cr, uid, ids, context=context): - sign = att.sent_by_uid and att.sent_by_uid.signature or '' - sign = '
'.join(sign and sign.split('\n') or []) - res_obj = att.ref - if res_obj: - att_infos = [] - sub = res_obj.name - other_invitation_ids = self.search(cr, uid, [('ref', '=', res_obj._name + ',' + str(res_obj.id))]) - - for att2 in self.browse(cr, uid, other_invitation_ids): - 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': date_start, - 'end_date': date_stop, - 'timezone': tz, - 'description': res_obj.description or '-', - 'location': res_obj.location or '-', - 'attendees': '
'.join(att_infos), - 'user': res_obj.user_id and res_obj.user_id.name or 'OpenERP User', - 'sign': sign, - 'company': company - } - body = html_invitation % body_vals - if mail_to and email_from: - ics_file = self.get_ics_file(cr, uid, res_obj, context=context) - vals = {'email_from': email_from, - 'email_to': mail_to, - 'state': 'outgoing', - 'subject': sub, - 'body_html': body, - 'auto_delete': True} - if ics_file: - vals['attachment_ids'] = [(0,0,{'name': 'invitation.ics', - 'datas_fname': 'invitation.ics', - 'datas': str(ics_file).encode('base64')})] - self.pool.get('mail.mail').create(cr, uid, vals, context=context) - return True - - def onchange_user_id(self, cr, uid, ids, user_id, *args, **argv): - """ - Make entry on email and availbility on change of user_id field. - @param cr: the current row, from the database cursor - @param uid: the current user's ID for security checks - @param ids: list of calendar attendee's IDs - @param user_id: changed value of User id - @return: dictionary of values which put value in email and availability fields - """ - - if not user_id: - return {'value': {'email': ''}} - usr_obj = self.pool.get('res.users') - user = usr_obj.browse(cr, uid, user_id, *args) - return {'value': {'email': user.email, 'availability':user.availability}} - - def do_tentative(self, cr, uid, ids, context=None, *args): - """ - Makes event invitation as Tentative. - @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 calendar attendee's IDs - @param *args: get Tupple value - @param context: a standard dictionary for contextual values - """ - return self.write(cr, uid, ids, {'state': 'tentative'}, context) - - def do_accept(self, cr, uid, ids, context=None, *args): - """ - Marks event invitation as Accepted. - @param cr: the current row, from the database cursor - @param uid: the current user's ID for security checks - @param ids: list of calendar attendee's IDs - @param context: a standard dictionary for contextual values - @return: True - """ - if context is None: - context = {} - - return self.write(cr, uid, ids, {'state': 'accepted'}, context) - - def do_decline(self, cr, uid, ids, context=None, *args): - """ - Marks event invitation as Declined. - @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 calendar attendee's IDs - @param *args: get Tupple value - @param context: a standard dictionary for contextual values - """ - if context is None: - context = {} - return self.write(cr, uid, ids, {'state': 'declined'}, context) - - def create(self, cr, uid, vals, context=None): - """ - Overrides orm create method. - @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 vals: get Values - @param context: a standard dictionary for contextual values - """ - if context is None: - context = {} - if not vals.get("email") and vals.get("cn"): - cnval = vals.get("cn").split(':') - 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=context) - return res - - -class res_alarm(osv.osv): - """Resource Alarm """ - _name = 'res.alarm' - _description = 'Basic Alarm Information' - - _columns = { - 'name':fields.char('Name', size=256, required=True), - 'trigger_occurs': fields.selection([('before', 'Before'), \ - ('after', 'After')], \ - 'Triggers', required=True), - 'trigger_interval': fields.selection([('minutes', 'Minutes'), \ - ('hours', 'Hours'), \ - ('days', 'Days')], 'Interval', \ - required=True), - 'trigger_duration': fields.integer('Duration', required=True), - 'trigger_related': fields.selection([('start', 'The event starts'), \ - ('end', 'The event ends')], \ - 'Related to', required=True), - 'duration': fields.integer('Duration', help="""Duration' and 'Repeat' \ -are both optional, but if one occurs, so MUST the other"""), - 'repeat': fields.integer('Repeat'), - 'active': fields.boolean('Active', help="If the active field is set to \ -true, it will allow you to hide the event alarm information without removing it.") - } - _defaults = { - 'trigger_interval': 'minutes', - 'trigger_duration': 5, - 'trigger_occurs': 'before', - 'trigger_related': 'start', - 'active': 1, - } - - def do_alarm_create(self, cr, uid, ids, model, date, context=None): - """ - Create Alarm for event. - @param cr: the current row, from the database cursor, - @param uid: the current user's ID for security checks, - @param ids: List of res alarm's IDs. - @param model: Model name. - @param date: Event date - @param context: A standard dictionary for contextual values - @return: True - """ - if context is None: - context = {} - alarm_obj = self.pool.get('calendar.alarm') - res_alarm_obj = self.pool.get('res.alarm') - ir_obj = self.pool.get('ir.model') - model_id = ir_obj.search(cr, uid, [('model', '=', model)])[0] - - model_obj = self.pool[model] - for data in model_obj.browse(cr, uid, ids, context=context): - - basic_alarm = data.alarm_id - cal_alarm = data.base_calendar_alarm_id - if (not basic_alarm and cal_alarm) or (basic_alarm and cal_alarm): - new_res_alarm = None - # Find for existing res.alarm - duration = cal_alarm.trigger_duration - interval = cal_alarm.trigger_interval - occurs = cal_alarm.trigger_occurs - related = cal_alarm.trigger_related - domain = [('trigger_duration', '=', duration), ('trigger_interval', '=', interval), ('trigger_occurs', '=', occurs), ('trigger_related', '=', related)] - alarm_ids = res_alarm_obj.search(cr, uid, domain, context=context) - if not alarm_ids: - val = { - 'trigger_duration': duration, - 'trigger_interval': interval, - 'trigger_occurs': occurs, - 'trigger_related': related, - 'name': str(duration) + ' ' + str(interval) + ' ' + str(occurs) - } - new_res_alarm = res_alarm_obj.create(cr, uid, val, context=context) - else: - new_res_alarm = alarm_ids[0] - cr.execute('UPDATE %s ' % model_obj._table + \ - ' SET base_calendar_alarm_id=%s, alarm_id=%s ' \ - ' WHERE id=%s', - (cal_alarm.id, new_res_alarm, data.id)) - - self.do_alarm_unlink(cr, uid, [data.id], model) - if basic_alarm: - vals = { - 'action': 'display', - 'description': data.description, - 'name': data.name, - 'attendee_ids': [(6, 0, map(lambda x:x.id, data.attendee_ids))], - 'trigger_related': basic_alarm.trigger_related, - 'trigger_duration': basic_alarm.trigger_duration, - 'trigger_occurs': basic_alarm.trigger_occurs, - 'trigger_interval': basic_alarm.trigger_interval, - 'duration': basic_alarm.duration, - 'repeat': basic_alarm.repeat, - 'state': 'run', - 'event_date': data[date], - 'res_id': data.id, - 'model_id': model_id, - 'user_id': uid - } - alarm_id = alarm_obj.create(cr, uid, vals) - cr.execute('UPDATE %s ' % model_obj._table + \ - ' SET base_calendar_alarm_id=%s, alarm_id=%s ' - ' WHERE id=%s', \ - ( alarm_id, basic_alarm.id, data.id) ) - return True - - def do_alarm_unlink(self, cr, uid, ids, model, context=None): - """ - Delete alarm specified in ids - @param cr: the current row, from the database cursor, - @param uid: the current user's ID for security checks, - @param ids: List of res alarm's IDs. - @param model: Model name for which alarm is to be cleared. - @return: True - """ - if context is None: - context = {} - alarm_obj = self.pool.get('calendar.alarm') - ir_obj = self.pool.get('ir.model') - model_id = ir_obj.search(cr, uid, [('model', '=', model)])[0] - model_obj = self.pool[model] - for data in model_obj.browse(cr, uid, ids, context=context): - alarm_ids = alarm_obj.search(cr, uid, [('model_id', '=', model_id), ('res_id', '=', data.id)]) - if alarm_ids: - alarm_obj.unlink(cr, uid, alarm_ids) - cr.execute('Update %s set base_calendar_alarm_id=NULL, alarm_id=NULL\ - where id=%%s' % model_obj._table,(data.id,)) - return True - - -class calendar_alarm(osv.osv): - _name = 'calendar.alarm' - _description = 'Event alarm information' - _inherit = 'res.alarm' - __attribute__ = {} - - _columns = { - 'alarm_id': fields.many2one('res.alarm', 'Basic Alarm', ondelete='cascade'), - 'name': fields.char('Summary', size=124, help="""Contains the text to be \ - used as the message subject for email \ - or contains the text to be used for display"""), - 'action': fields.selection([('audio', 'Audio'), ('display', 'Display'), \ - ('procedure', 'Procedure'), ('email', 'Email') ], 'Action', \ - required=True, help="Defines the action to be invoked when an alarm is triggered"), - 'description': fields.text('Description', help='Provides a more complete \ - description of the calendar component, than that \ - provided by the "SUMMARY" property'), - 'attendee_ids': fields.many2many('calendar.attendee', 'alarm_attendee_rel', \ - 'alarm_id', 'attendee_id', 'Attendees', readonly=True), - 'attach': fields.binary('Attachment', help="""* Points to a sound resource,\ - which is rendered when the alarm is triggered for audio, - * File which is intended to be sent as message attachments for email, - * Points to a procedure resource, which is invoked when\ - the alarm is triggered for procedure."""), - 'res_id': fields.integer('Resource ID'), - 'model_id': fields.many2one('ir.model', 'Model'), - 'user_id': fields.many2one('res.users', 'Owner'), - 'event_date': fields.datetime('Event Date'), - 'event_end_date': fields.datetime('Event End Date'), - 'trigger_date': fields.datetime('Trigger Date', readonly="True"), - 'state':fields.selection([ - ('draft', 'Draft'), - ('run', 'Run'), - ('stop', 'Stop'), - ('done', 'Done'), - ], 'Status', select=True, readonly=True), - } - - _defaults = { - 'action': 'email', - 'state': 'run', - } - - def create(self, cr, uid, vals, context=None): - """ - Overrides orm create method. - @param self: The object pointer - @param cr: the current row, from the database cursor, - @param vals: dictionary of fields value.{'name_of_the_field': value, ...} - @param context: A standard dictionary for contextual values - @return: new record id for calendar_alarm. - """ - if context is None: - context = {} - event_date = vals.get('event_date', False) - if event_date: - dtstart = datetime.strptime(vals['event_date'], "%Y-%m-%d %H:%M:%S") - if vals['trigger_interval'] == 'days': - delta = timedelta(days=vals['trigger_duration']) - if vals['trigger_interval'] == 'hours': - delta = timedelta(hours=vals['trigger_duration']) - if vals['trigger_interval'] == 'minutes': - delta = timedelta(minutes=vals['trigger_duration']) - trigger_date = dtstart + (vals['trigger_occurs'] == 'after' and delta or -delta) - vals['trigger_date'] = trigger_date - res = super(calendar_alarm, self).create(cr, uid, vals, context=context) - return res - - def do_run_scheduler(self, cr, uid, automatic=False, use_new_cursor=False, \ - context=None): - """Scheduler for event reminder - @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 calendar alarm's IDs. - @param use_new_cursor: False or the dbname - @param context: A standard dictionary for contextual values - """ - if context is None: - context = {} - current_datetime = datetime.now() - alarm_ids = self.search(cr, uid, [('state', '!=', 'done')], context=context) - - mail_to = "" - - for alarm in self.browse(cr, uid, alarm_ids, context=context): - next_trigger_date = None - update_vals = {} - model_obj = self.pool[alarm.model_id.model] - res_obj = model_obj.browse(cr, uid, alarm.res_id, context=context) - re_dates = [] - - if hasattr(res_obj, 'rrule') and res_obj.rrule: - event_date = datetime.strptime(res_obj.date, '%Y-%m-%d %H:%M:%S') - #exdate is a string and we need a list - exdate = res_obj.exdate and res_obj.exdate.split(',') or [] - recurrent_dates = get_recurrent_dates(res_obj.rrule, exdate, event_date, res_obj.exrule) - - trigger_interval = alarm.trigger_interval - if trigger_interval == 'days': - delta = timedelta(days=alarm.trigger_duration) - if trigger_interval == 'hours': - delta = timedelta(hours=alarm.trigger_duration) - if trigger_interval == 'minutes': - delta = timedelta(minutes=alarm.trigger_duration) - delta = alarm.trigger_occurs == 'after' and delta or -delta - - for rdate in recurrent_dates: - if rdate + delta > current_datetime: - break - if rdate + delta <= current_datetime: - re_dates.append(rdate.strftime("%Y-%m-%d %H:%M:%S")) - rest_dates = recurrent_dates[len(re_dates):] - next_trigger_date = rest_dates and rest_dates[0] or None - - else: - re_dates = [alarm.trigger_date] - - if re_dates: - if alarm.action == 'email': - sub = '[OpenERP Reminder] %s' % (alarm.name) - body = """
-Event: %s
-Event Date: %s
-Description: %s
-
-From:
-      %s
-
-----
-%s
-
-""" % (alarm.name, alarm.trigger_date, alarm.description, \ - alarm.user_id.name, alarm.user_id.signature) - mail_to = alarm.user_id.email - for att in alarm.attendee_ids: - mail_to = mail_to + " " + att.user_id.email - if mail_to: - vals = { - 'state': 'outgoing', - 'subject': sub, - 'body_html': body, - 'email_to': mail_to, - 'email_from': tools.config.get('email_from', mail_to), - } - self.pool.get('mail.mail').create(cr, uid, vals, context=context) - if next_trigger_date: - update_vals.update({'trigger_date': next_trigger_date}) - else: - update_vals.update({'state': 'done'}) - self.write(cr, uid, [alarm.id], update_vals) - return True - - - -class calendar_event(osv.osv): - _name = "calendar.event" - _description = "Calendar Event" - __attribute__ = {} - - def _tz_get(self, cr, uid, context=None): - return [(x.lower(), x) for x in pytz.all_timezones] - - def onchange_dates(self, cr, uid, ids, start_date, duration=False, end_date=False, allday=False, context=None): - """Returns duration and/or end date based on values passed - @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 calendar event's IDs. - @param start_date: Starting date - @param duration: Duration between start date and end date - @param end_date: Ending Datee - @param context: A standard dictionary for contextual values - """ - if context is None: - context = {} - - value = {} - if not start_date: - return value - if not end_date and not duration: - duration = 1.00 - value['duration'] = duration - - start = datetime.strptime(start_date, "%Y-%m-%d %H:%M:%S") - if allday: # For all day event - duration = 24.0 - value['duration'] = duration - # change start_date's time to 00:00:00 in the user's timezone - user = self.pool.get('res.users').browse(cr, uid, uid) - tz = pytz.timezone(user.tz) if user.tz else pytz.utc - start = pytz.utc.localize(start).astimezone(tz) # convert start in user's timezone - start = start.replace(hour=0, minute=0, second=0) # change start's time to 00:00:00 - start = start.astimezone(pytz.utc) # convert start back to utc - start_date = start.strftime("%Y-%m-%d %H:%M:%S") - value['date'] = start_date - - if end_date and not duration: - end = datetime.strptime(end_date, "%Y-%m-%d %H:%M:%S") - diff = end - start - duration = float(diff.days)* 24 + (float(diff.seconds) / 3600) - value['duration'] = round(duration, 2) - elif not end_date: - end = start + timedelta(hours=duration) - value['date_deadline'] = end.strftime("%Y-%m-%d %H:%M:%S") - elif end_date and duration and not allday: - # we have both, keep them synchronized: - # set duration based on end_date (arbitrary decision: this avoid - # getting dates like 06:31:48 instead of 06:32:00) - end = datetime.strptime(end_date, "%Y-%m-%d %H:%M:%S") - diff = end - start - duration = float(diff.days)* 24 + (float(diff.seconds) / 3600) - value['duration'] = round(duration, 2) - - return {'value': value} - - def unlink_events(self, cr, uid, ids, context=None): - """ - This function deletes event which are linked with the event with recurrent_id - (Removes the events which refers to the same UID value) - """ - if context is None: - context = {} - for event_id in ids: - cr.execute("select id from %s where recurrent_id=%%s" % (self._table), (event_id,)) - r_ids = map(lambda x: x[0], cr.fetchall()) - self.unlink(cr, uid, r_ids, context=context) - return True - - def _get_rulestring(self, cr, uid, ids, name, arg, context=None): - """ - Gets Recurrence rule string according to value type RECUR of iCalendar from the values given. - @param self: The object pointer - @param cr: the current row, from the database cursor, - @param id: List of calendar event's ids. - @param context: A standard dictionary for contextual values - @return: dictionary of rrule value. - """ - - result = {} - if not isinstance(ids, list): - ids = [ids] - - for id in ids: - #read these fields as SUPERUSER because if the record is private a normal search could return False and raise an error - data = self.read(cr, SUPERUSER_ID, id, ['interval', 'count'], context=context) - if data.get('interval', 0) < 0: - raise osv.except_osv(_('Warning!'), _('Interval cannot be negative.')) - if data.get('count', 0) <= 0: - raise osv.except_osv(_('Warning!'), _('Count cannot be negative or 0.')) - data = self.read(cr, uid, id, ['id','byday','recurrency', 'month_list','end_date', 'rrule_type', 'select1', 'interval', 'count', 'end_type', 'mo', 'tu', 'we', 'th', 'fr', 'sa', 'su', 'exrule', 'day', 'week_list' ], context=context) - event = data['id'] - if data['recurrency']: - result[event] = self.compute_rule_string(data) - else: - result[event] = "" - return result - - def _rrule_write(self, obj, cr, uid, ids, field_name, field_value, args, context=None): - data = self._get_empty_rrule_data() - if field_value: - data['recurrency'] = True - for event in self.browse(cr, uid, ids, context=context): - rdate = rule_date or event.date - update_data = self._parse_rrule(field_value, dict(data), rdate) - data.update(update_data) - super(calendar_event, obj).write(cr, uid, ids, data, context=context) - return True - - _columns = { - 'id': fields.integer('ID', readonly=True), - 'sequence': fields.integer('Sequence'), - 'name': fields.char('Description', size=64, required=False, states={'done': [('readonly', True)]}), - 'date': fields.datetime('Date', states={'done': [('readonly', True)]}, required=True,), - 'date_deadline': fields.datetime('End Date', states={'done': [('readonly', True)]}, required=True,), - 'create_date': fields.datetime('Created', readonly=True), - 'duration': fields.float('Duration', states={'done': [('readonly', True)]}), - 'description': fields.text('Description', states={'done': [('readonly', True)]}), - 'class': fields.selection([('public', 'Public'), ('private', 'Private'), \ - ('confidential', 'Public for Employees')], 'Privacy', states={'done': [('readonly', True)]}), - 'location': fields.char('Location', size=264, help="Location of Event", states={'done': [('readonly', True)]}), - 'show_as': fields.selection([('free', 'Free'), ('busy', 'Busy')], \ - 'Show Time as', states={'done': [('readonly', True)]}), - 'base_calendar_url': fields.char('Caldav URL', size=264), - 'state': fields.selection([ - ('tentative', 'Uncertain'), - ('cancelled', 'Cancelled'), - ('confirmed', 'Confirmed'), - ], 'Status', readonly=True), - 'exdate': fields.text('Exception Date/Times', help="This property \ -defines the list of date/time exceptions for a recurring calendar component."), - 'exrule': fields.char('Exception Rule', size=352, help="Defines a \ -rule or repeating pattern of time to exclude from the recurring rule."), - 'rrule': fields.function(_get_rulestring, type='char', size=124, \ - fnct_inv=_rrule_write, store=True, string='Recurrent Rule'), - 'rrule_type': fields.selection([ - ('daily', 'Day(s)'), - ('weekly', 'Week(s)'), - ('monthly', 'Month(s)'), - ('yearly', 'Year(s)') - ], 'Recurrency', states={'done': [('readonly', True)]}, - help="Let the event automatically repeat at that interval"), - 'alarm_id': fields.many2one('res.alarm', 'Reminder', states={'done': [('readonly', True)]}, - help="Set an alarm at this time, before the event occurs" ), - 'base_calendar_alarm_id': fields.many2one('calendar.alarm', 'Alarm'), - 'recurrent_id': fields.integer('Recurrent ID'), - 'recurrent_id_date': fields.datetime('Recurrent ID date'), - 'vtimezone': fields.selection(_tz_get, size=64, string='Timezone'), - 'user_id': fields.many2one('res.users', 'Responsible', states={'done': [('readonly', True)]}), - 'organizer': fields.char("Organizer (deprecated)", size=256, states={'done': [('readonly', True)]}, - deprecated='Will be removed with OpenERP v8; use organizer_id field instead'), # Map with organizer attribute of VEvent. - 'organizer_id': fields.many2one('res.users', 'Organizer', states={'done': [('readonly', True)]}), - 'end_type' : fields.selection([('count', 'Number of repetitions'), ('end_date','End date')], 'Recurrence Termination'), - 'interval': fields.integer('Repeat Every', help="Repeat every (Days/Week/Month/Year)"), - 'count': fields.integer('Repeat', help="Repeat x times"), - 'mo': fields.boolean('Mon'), - 'tu': fields.boolean('Tue'), - 'we': fields.boolean('Wed'), - 'th': fields.boolean('Thu'), - 'fr': fields.boolean('Fri'), - 'sa': fields.boolean('Sat'), - 'su': fields.boolean('Sun'), - 'select1': fields.selection([('date', 'Date of month'), - ('day', 'Day of month')], 'Option'), - 'day': fields.integer('Date of month'), - 'week_list': fields.selection([ - ('MO', 'Monday'), - ('TU', 'Tuesday'), - ('WE', 'Wednesday'), - ('TH', 'Thursday'), - ('FR', 'Friday'), - ('SA', 'Saturday'), - ('SU', 'Sunday')], 'Weekday'), - 'byday': fields.selection([ - ('1', 'First'), - ('2', 'Second'), - ('3', 'Third'), - ('4', 'Fourth'), - ('5', 'Fifth'), - ('-1', 'Last')], 'By day'), - 'month_list': fields.selection(months.items(), 'Month'), - 'end_date': fields.date('Repeat Until'), - 'attendee_ids': fields.many2many('calendar.attendee', 'event_attendee_rel', \ - 'event_id', 'attendee_id', 'Attendees'), - 'allday': fields.boolean('All Day', states={'done': [('readonly', True)]}), - 'active': fields.boolean('Active', help="If the active field is set to \ - true, it will allow you to hide the event alarm information without removing it."), - 'recurrency': fields.boolean('Recurrent', help="Recurrent Meeting"), - 'partner_ids': fields.many2many('res.partner', string='Attendees', states={'done': [('readonly', True)]}), - } - - def create_attendees(self, cr, uid, ids, context): - att_obj = self.pool.get('calendar.attendee') - user_obj = self.pool.get('res.users') - current_user = user_obj.browse(cr, uid, uid, context=context) - for event in self.browse(cr, uid, ids, context): - attendees = {} - for att in event.attendee_ids: - attendees[att.partner_id.id] = True - new_attendees = [] - mail_to = "" - for partner in event.partner_ids: - if partner.id in attendees: - continue - local_context = context.copy() - local_context.pop('default_state', None) - att_id = self.pool.get('calendar.attendee').create(cr, uid, { - 'partner_id': partner.id, - 'user_id': partner.user_ids and partner.user_ids[0].id or False, - 'ref': self._name+','+str(event.id), - 'email': partner.email - }, context=local_context) - if partner.email: - mail_to = mail_to + " " + partner.email - self.write(cr, uid, [event.id], { - 'attendee_ids': [(4, att_id)] - }, context=context) - new_attendees.append(att_id) - - if mail_to and current_user.email: - att_obj._send_mail(cr, uid, new_attendees, mail_to, - email_from = current_user.email, context=context) - return True - - def default_organizer(self, cr, uid, context=None): - """ - .. deprecated:: 8.0 - Use organizer_id field and its default value instead. - """ - user_pool = self.pool.get('res.users') - user = user_pool.browse(cr, uid, uid, context=context) - res = user.name - if user.email: - res += " <%s>" %(user.email) - return res - - _defaults = { - 'end_type': 'count', - 'count': 1, - 'rrule_type': False, - 'state': 'tentative', - 'class': 'public', - 'show_as': 'busy', - 'select1': 'date', - 'interval': 1, - 'active': 1, - 'user_id': lambda self, cr, uid, ctx: uid, - } - - def _check_closing_date(self, cr, uid, ids, context=None): - for event in self.browse(cr, uid, ids, context=context): - if event.date_deadline < event.date: - return False - return True - - _constraints = [ - (_check_closing_date, 'Error ! End date cannot be set before start date.', ['date_deadline']), - ] - - def get_recurrent_ids(self, cr, uid, select, domain, limit=100, context=None): - """Gives virtual event ids for recurring events based on value of Recurrence Rule - This method gives ids of dates that comes between start date and end date of calendar views - @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 limit: The Number of Results to Return """ - if not context: - context = {} - - result = [] - for data in super(calendar_event, self).read(cr, uid, select, ['rrule', 'recurrency', 'exdate', 'exrule', 'date'], context=context): - if not data['recurrency'] or not data['rrule']: - result.append(data['id']) - continue - event_date = datetime.strptime(data['date'], "%Y-%m-%d %H:%M:%S") - - # TOCHECK: the start date should be replaced by event date; the event date will be changed by that of calendar code - - if not data['rrule']: - continue - - exdate = data['exdate'] and data['exdate'].split(',') or [] - rrule_str = data['rrule'] - new_rrule_str = [] - rrule_until_date = False - is_until = False - for rule in rrule_str.split(';'): - name, value = rule.split('=') - if name == "UNTIL": - is_until = True - value = parser.parse(value) - rrule_until_date = parser.parse(value.strftime("%Y-%m-%d %H:%M:%S")) - value = value.strftime("%Y%m%d%H%M%S") - new_rule = '%s=%s' % (name, value) - new_rrule_str.append(new_rule) - new_rrule_str = ';'.join(new_rrule_str) - rdates = get_recurrent_dates(str(new_rrule_str), exdate, event_date, data['exrule']) - for r_date in rdates: - # fix domain evaluation - # step 1: check date and replace expression by True or False, replace other expressions by True - # step 2: evaluation of & and | - # check if there are one False - pile = [] - for arg in domain: - if str(arg[0]) in (str('date'), str('date_deadline')): - if (arg[1] == '='): - ok = r_date.strftime('%Y-%m-%d')==arg[2] - if (arg[1] == '>'): - ok = r_date.strftime('%Y-%m-%d')>arg[2] - if (arg[1] == '<'): - ok = r_date.strftime('%Y-%m-%d')='): - ok = r_date.strftime('%Y-%m-%d')>=arg[2] - if (arg[1] == '<='): - ok = r_date.strftime('%Y-%m-%d')<=arg[2] - pile.append(ok) - elif str(arg) == str('&') or str(arg) == str('|'): - pile.append(arg) - else: - pile.append(True) - pile.reverse() - new_pile = [] - for item in pile: - if not isinstance(item, basestring): - res = item - elif str(item) == str('&'): - first = new_pile.pop() - second = new_pile.pop() - res = first and second - elif str(item) == str('|'): - first = new_pile.pop() - second = new_pile.pop() - res = first or second - new_pile.append(res) - - if [True for item in new_pile if not item]: - continue - idval = real_id2base_calendar_id(data['id'], r_date.strftime("%Y-%m-%d %H:%M:%S")) - result.append(idval) - - if isinstance(select, (str, int, long)): - return ids and ids[0] or False - else: - ids = list(set(result)) - return ids - - def compute_rule_string(self, data): - """ - Compute rule string according to value type RECUR of iCalendar from the values given. - @param self: the object pointer - @param data: dictionary of freq and interval value - @return: string containing recurring rule (empty if no rule) - """ - def get_week_string(freq, data): - weekdays = ['mo', 'tu', 'we', 'th', 'fr', 'sa', 'su'] - if freq == 'weekly': - byday = map(lambda x: x.upper(), filter(lambda x: data.get(x) and x in weekdays, data)) - if byday: - return ';BYDAY=' + ','.join(byday) - return '' - - def get_month_string(freq, data): - if freq == 'monthly': - if data.get('select1')=='date' and (data.get('day') < 1 or data.get('day') > 31): - raise osv.except_osv(_('Error!'), ("Please select a proper day of the month.")) - - if data.get('select1')=='day': - return ';BYDAY=' + data.get('byday') + data.get('week_list') - elif data.get('select1')=='date': - return ';BYMONTHDAY=' + str(data.get('day')) - return '' - - def get_end_date(data): - if data.get('end_date'): - data['end_date_new'] = ''.join((re.compile('\d')).findall(data.get('end_date'))) + 'T235959Z' - - return (data.get('end_type') == 'count' and (';COUNT=' + str(data.get('count'))) or '') +\ - ((data.get('end_date_new') and data.get('end_type') == 'end_date' and (';UNTIL=' + data.get('end_date_new'))) or '') - - freq = data.get('rrule_type', False) - res = '' - if freq: - interval_srting = data.get('interval') and (';INTERVAL=' + str(data.get('interval'))) or '' - res = 'FREQ=' + freq.upper() + get_week_string(freq, data) + interval_srting + get_end_date(data) + get_month_string(freq, data) - - return res - - def _get_empty_rrule_data(self): - return { - 'byday' : False, - 'recurrency' : False, - 'end_date' : False, - 'rrule_type' : False, - 'select1' : False, - 'interval' : 0, - 'count' : False, - 'end_type' : False, - 'mo' : False, - 'tu' : False, - 'we' : False, - 'th' : False, - 'fr' : False, - 'sa' : False, - 'su' : False, - 'exrule' : False, - 'day' : False, - 'week_list' : False - } - - def _parse_rrule(self, rule, data, date_start): - day_list = ['mo', 'tu', 'we', 'th', 'fr', 'sa', 'su'] - rrule_type = ['yearly', 'monthly', 'weekly', 'daily'] - r = rrule.rrulestr(rule, dtstart=datetime.strptime(date_start, "%Y-%m-%d %H:%M:%S")) - - if r._freq > 0 and r._freq < 4: - data['rrule_type'] = rrule_type[r._freq] - - data['count'] = r._count - data['interval'] = r._interval - data['end_date'] = r._until and r._until.strftime("%Y-%m-%d %H:%M:%S") - #repeat weekly - if r._byweekday: - for i in xrange(0,7): - if i in r._byweekday: - data[day_list[i]] = True - data['rrule_type'] = 'weekly' - #repeat monthly by nweekday ((weekday, weeknumber), ) - if r._bynweekday: - data['week_list'] = day_list[r._bynweekday[0][0]].upper() - data['byday'] = r._bynweekday[0][1] - data['select1'] = 'day' - data['rrule_type'] = 'monthly' - - if r._bymonthday: - data['day'] = r._bymonthday[0] - data['select1'] = 'date' - data['rrule_type'] = 'monthly' - - #repeat yearly but for openerp it's monthly, take same information as monthly but interval is 12 times - if r._bymonth: - data['interval'] = data['interval'] * 12 - - #FIXEME handle forever case - #end of recurrence - #in case of repeat for ever that we do not support right now - if not (data.get('count') or data.get('end_date')): - data['count'] = 100 - if data.get('count'): - data['end_type'] = 'count' - else: - data['end_type'] = 'end_date' - return data - - def search(self, cr, uid, args, offset=0, limit=0, order=None, context=None, count=False): - if context is None: - context = {} - new_args = [] - - for arg in args: - new_arg = arg - if arg[0] in ('date_deadline', unicode('date_deadline')): - if context.get('virtual_id', True): - new_args += ['|','&',('recurrency','=',1),('end_date', arg[1], arg[2])] - elif arg[0] == "id": - new_id = get_real_ids(arg[2]) - new_arg = (arg[0], arg[1], new_id) - new_args.append(new_arg) - #offset, limit and count must be treated separately as we may need to deal with virtual ids - res = super(calendar_event, self).search(cr, uid, new_args, offset=0, limit=0, order=order, context=context, count=False) - if context.get('virtual_id', True): - res = self.get_recurrent_ids(cr, uid, res, args, limit, context=context) - if count: - return len(res) - elif limit: - return res[offset:offset+limit] - return res - - def _get_data(self, cr, uid, id, context=None): - return self.read(cr, uid, id,['date', 'date_deadline']) - - def need_to_update(self, event_id, vals): - split_id = str(event_id).split("-") - if len(split_id) < 2: - return False - else: - date_start = vals.get('date', '') - try: - date_start = datetime.strptime(date_start, '%Y-%m-%d %H:%M:%S').strftime("%Y%m%d%H%M%S") - return date_start == split_id[1] - except Exception: - return True - - def write(self, cr, uid, ids, vals, context=None, check=True, update_check=True): - def _only_changes_to_apply_on_real_ids(field_names): - ''' return True if changes are only to be made on the real ids''' - for field in field_names: - if field not in ['message_follower_ids']: - return False - return True - - context = context or {} - if isinstance(ids, (str, int, long)): - ids = [ids] - res = False - - # Special write of complex IDS - for event_id in ids[:]: - if len(str(event_id).split('-')) == 1: - continue - ids.remove(event_id) - real_event_id = base_calendar_id2real_id(event_id) - - # if we are setting the recurrency flag to False or if we are only changing fields that - # should be only updated on the real ID and not on the virtual (like message_follower_ids): - # then set real ids to be updated. - if not vals.get('recurrency', True) or _only_changes_to_apply_on_real_ids(vals.keys()): - ids.append(real_event_id) - continue - - #if edit one instance of a reccurrent id - data = self.read(cr, uid, event_id, ['date', 'date_deadline', \ - 'rrule', 'duration', 'exdate']) - if data.get('rrule'): - data.update( - vals, - recurrent_id=real_event_id, - recurrent_id_date=data.get('date'), - rrule_type=False, - rrule='', - recurrency=False, - ) - #do not copy the id - if data.get('id'): - del(data['id']) - new_id = self.copy(cr, uid, real_event_id, default=data, context=context) - - date_new = event_id.split('-')[1] - date_new = time.strftime("%Y%m%dT%H%M%S", \ - time.strptime(date_new, "%Y%m%d%H%M%S")) - exdate = (data['exdate'] and (data['exdate'] + ',') or '') + date_new - res = self.write(cr, uid, [real_event_id], {'exdate': exdate}) - - context.update({'active_id': new_id, 'active_ids': [new_id]}) - continue - - if vals.get('vtimezone', '') and vals.get('vtimezone', '').startswith('/freeassociation.sourceforge.net/tzfile/'): - vals['vtimezone'] = vals['vtimezone'][40:] - - res = super(calendar_event, self).write(cr, uid, ids, vals, context=context) - - # set end_date for calendar searching - if vals.get('recurrency', True) and vals.get('end_type', 'count') in ('count', unicode('count')) and \ - (vals.get('rrule_type') or vals.get('count') or vals.get('date') or vals.get('date_deadline')): - for data in self.read(cr, uid, ids, ['date', 'date_deadline', 'recurrency', 'rrule_type', 'count', 'end_type'], context=context): - end_date = self._set_recurrency_end_date(data, context=context) - super(calendar_event, self).write(cr, uid, [data['id']], {'end_date': end_date}, context=context) - - if vals.get('partner_ids', False): - self.create_attendees(cr, uid, ids, context) - - if ('alarm_id' in vals or 'base_calendar_alarm_id' in vals)\ - or ('date' in vals or 'duration' in vals or 'date_deadline' in vals): - alarm_obj = self.pool.get('res.alarm') - alarm_obj.do_alarm_create(cr, uid, ids, self._name, 'date', context=context) - return res or True and False - - def read_group(self, cr, uid, domain, fields, groupby, offset=0, limit=None, context=None, orderby=False): - if not context: - context = {} - - if 'date' in groupby: - raise osv.except_osv(_('Warning!'), _('Group by date is not supported, use the calendar view instead.')) - virtual_id = context.get('virtual_id', True) - context.update({'virtual_id': False}) - res = super(calendar_event, self).read_group(cr, uid, domain, fields, groupby, offset=offset, limit=limit, context=context, orderby=orderby) - for re in res: - #remove the count, since the value is not consistent with the result of the search when expand the group - for groupname in groupby: - if re.get(groupname + "_count"): - del re[groupname + "_count"] - re.get('__context', {}).update({'virtual_id' : virtual_id}) - return res - - def read(self, cr, uid, ids, fields=None, context=None, load='_classic_read'): - if context is None: - context = {} - fields2 = fields and fields[:] or None - - EXTRAFIELDS = ('class','user_id','duration') - for f in EXTRAFIELDS: - if fields and (f not in fields): - fields2.append(f) - - # FIXME This whole id mangling has to go! - if isinstance(ids, (str, int, long)): - select = [ids] - else: - select = ids - - select = map(lambda x: (x, base_calendar_id2real_id(x)), select) - result = [] - - real_data = super(calendar_event, self).read(cr, uid, - [real_id for base_calendar_id, real_id in select], - fields=fields2, context=context, load=load) - real_data = dict(zip([x['id'] for x in real_data], real_data)) - - for base_calendar_id, real_id in select: - res = real_data[real_id].copy() - ls = base_calendar_id2real_id(base_calendar_id, with_date=res and res.get('duration', 0) or 0) - if not isinstance(ls, (str, int, long)) and len(ls) >= 2: - res['date'] = ls[1] - res['date_deadline'] = ls[2] - res['id'] = base_calendar_id - - result.append(res) - - for r in result: - if r['user_id']: - user_id = type(r['user_id']) in (tuple,list) and r['user_id'][0] or r['user_id'] - if user_id==uid: - continue - if r['class']=='private': - for f in r.keys(): - if f not in ('id','date','date_deadline','duration','user_id','state','interval','count'): - if isinstance(r[f], list): - r[f] = [] - else: - r[f] = False - if f=='name': - r[f] = _('Busy') - - for r in result: - for k in EXTRAFIELDS: - if (k in r) and (fields and (k not in fields)): - del r[k] - if isinstance(ids, (str, int, long)): - return result and result[0] or False - return result - - def copy(self, cr, uid, id, default=None, context=None): - if context is None: - context = {} - - res = super(calendar_event, self).copy(cr, uid, base_calendar_id2real_id(id), default, context) - alarm_obj = self.pool.get('res.alarm') - alarm_obj.do_alarm_create(cr, uid, [res], self._name, 'date', context=context) - return res - - def unlink(self, cr, uid, ids, context=None): - if not isinstance(ids, list): - ids = [ids] - res = False - attendee_obj=self.pool.get('calendar.attendee') - for event_id in ids[:]: - if len(str(event_id).split('-')) == 1: - continue - - real_event_id = base_calendar_id2real_id(event_id) - data = self.read(cr, uid, real_event_id, ['exdate'], context=context) - date_new = event_id.split('-')[1] - date_new = time.strftime("%Y%m%dT%H%M%S", \ - time.strptime(date_new, "%Y%m%d%H%M%S")) - exdate = (data['exdate'] and (data['exdate'] + ',') or '') + date_new - self.write(cr, uid, [real_event_id], {'exdate': exdate}) - ids.remove(event_id) - for event in self.browse(cr, uid, ids, context=context): - if event.attendee_ids: - attendee_obj.unlink(cr, uid, [x.id for x in event.attendee_ids], context=context) - - res = super(calendar_event, self).unlink(cr, uid, ids, context=context) - self.pool.get('res.alarm').do_alarm_unlink(cr, uid, ids, self._name) - self.unlink_events(cr, uid, ids, context=context) - return res - - def _set_recurrency_end_date(self, data, context=None): - end_date = data.get('end_date') - if data.get('recurrency') and data.get('end_type') in ('count', unicode('count')): - data_date_deadline = datetime.strptime(data.get('date_deadline'), '%Y-%m-%d %H:%M:%S') - if data.get('rrule_type') in ('daily', unicode('count')): - rel_date = relativedelta(days=data.get('count')+1) - elif data.get('rrule_type') in ('weekly', unicode('weekly')): - rel_date = relativedelta(days=(data.get('count')+1)*7) - elif data.get('rrule_type') in ('monthly', unicode('monthly')): - rel_date = relativedelta(months=data.get('count')+1) - elif data.get('rrule_type') in ('yearly', unicode('yearly')): - rel_date = relativedelta(years=data.get('count')+1) - end_date = data_date_deadline + rel_date - return end_date - - def create(self, cr, uid, vals, context=None): - if context is None: - context = {} - - if vals.get('vtimezone', '') and vals.get('vtimezone', '').startswith('/freeassociation.sourceforge.net/tzfile/'): - vals['vtimezone'] = vals['vtimezone'][40:] - - vals['end_date'] = self._set_recurrency_end_date(vals, context=context) - res = super(calendar_event, self).create(cr, uid, vals, context) - - alarm_obj = self.pool.get('res.alarm') - alarm_obj.do_alarm_create(cr, uid, [res], self._name, 'date', context=context) - self.create_attendees(cr, uid, [res], context) - return res - - def do_tentative(self, cr, uid, ids, context=None, *args): - """ Makes event invitation as Tentative - @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 Event IDs - @param *args: Get Tupple value - @param context: A standard dictionary for contextual values - """ - return self.write(cr, uid, ids, {'state': 'tentative'}, context) - - def do_cancel(self, cr, uid, ids, context=None, *args): - """ Makes event invitation as Tentative - @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 Event IDs - @param *args: Get Tupple value - @param context: A standard dictionary for contextual values - """ - return self.write(cr, uid, ids, {'state': 'cancelled'}, context) - - def do_confirm(self, cr, uid, ids, context=None, *args): - """ Makes event invitation as Tentative - @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 Event IDs - @param *args: Get Tupple value - @param context: A standard dictionary for contextual values - """ - return self.write(cr, uid, ids, {'state': 'confirmed'}, context) - - -class calendar_todo(osv.osv): - """ Calendar Task """ - - _name = "calendar.todo" - _inherit = "calendar.event" - _description = "Calendar Task" - - def _get_date(self, cr, uid, ids, name, arg, context=None): - """ - Get Date - @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 calendar todo's IDs. - @param args: list of tuples of form [(‘name_of_the_field', ‘operator', value), ...]. - @param context: A standard dictionary for contextual values - """ - - res = {} - for event in self.browse(cr, uid, ids, context=context): - res[event.id] = event.date_start - return res - - def _set_date(self, cr, uid, id, name, value, arg, context=None): - """ - Set Date - @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 id: calendar's ID. - @param value: Get Value - @param args: list of tuples of form [('name_of_the_field', 'operator', value), ...]. - @param context: A standard dictionary for contextual values - """ - - assert name == 'date' - return self.write(cr, uid, id, { 'date_start': value }, context=context) - - _columns = { - 'date': fields.function(_get_date, fnct_inv=_set_date, \ - string='Duration', store=True, type='datetime'), - 'duration': fields.integer('Duration'), - } - - __attribute__ = {} - - - - -class ir_values(osv.osv): - _inherit = 'ir.values' - - def set(self, cr, uid, key, key2, name, models, value, replace=True, \ - isobject=False, meta=False, preserve_user=False, company=False): - """ - Set IR Values - @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 model: Get The Model - """ - - new_model = [] - for data in models: - if type(data) in (list, tuple): - new_model.append((data[0], base_calendar_id2real_id(data[1]))) - else: - new_model.append(data) - return super(ir_values, self).set(cr, uid, key, key2, name, new_model, \ - value, replace, isobject, meta, preserve_user, company) - - def get(self, cr, uid, key, key2, models, meta=False, context=None, \ - res_id_req=False, without_user=True, key2_req=True): - """ - Get IR Values - @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 model: Get The Model - """ - if context is None: - context = {} - new_model = [] - for data in models: - if type(data) in (list, tuple): - new_model.append((data[0], base_calendar_id2real_id(data[1]))) - else: - new_model.append(data) - return super(ir_values, self).get(cr, uid, key, key2, new_model, \ - meta, context, res_id_req, without_user, key2_req) - - -class ir_model(osv.osv): - - _inherit = 'ir.model' - - def read(self, cr, uid, ids, fields=None, context=None, - load='_classic_read'): - """ - Overrides orm read method. - @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 IR Model's IDs. - @param context: A standard dictionary for contextual values - """ - new_ids = isinstance(ids, (str, int, long)) and [ids] or ids - if context is None: - context = {} - data = super(ir_model, self).read(cr, uid, new_ids, fields=fields, \ - context=context, load=load) - if data: - for val in data: - val['id'] = base_calendar_id2real_id(val['id']) - return isinstance(ids, (str, int, long)) and data[0] or data - - -original_exp_report = openerp.service.report.exp_report - -def exp_report(db, uid, object, ids, data=None, context=None): - """ - Export Report - @param db: get the current database, - @param uid: the current user's ID for security checks, - @param context: A standard dictionary for contextual values - """ - - if object == 'printscreen.list': - original_exp_report(db, uid, object, ids, data, context) - new_ids = [] - for id in ids: - new_ids.append(base_calendar_id2real_id(id)) - if data.get('id', False): - data['id'] = base_calendar_id2real_id(data['id']) - return original_exp_report(db, uid, object, new_ids, data, context) - -openerp.service.report.exp_report = exp_report - -# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_calendar/base_calendar_data.xml b/addons/base_calendar/base_calendar_data.xml deleted file mode 100644 index 64aa7ba59b6..00000000000 --- a/addons/base_calendar/base_calendar_data.xml +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - Event - calendar.event - - - - 1 minute before - - - minutes - before - start - - - - 5 minutes before - - - minutes - before - start - - - - 10 minutes before - - - minutes - before - start - - - - 15 minutes before - - - minutes - before - start - - - - 30 minutes before - - - minutes - before - start - - - - 45 minutes before - - - minutes - before - start - - - - 1 hour before - - - hours - before - start - - - - 2 hours before - - - hours - before - start - - - - 3 hours before - - - - hours - before - start - - - - 4 hours before - - - - hours - before - start - - - - 5 hours before - - - - hours - before - start - - - - 18 hours before - - - - hours - before - start - - - - - - Run Event Reminder - - - 5 - minutes - -1 - - - - - - - diff --git a/addons/base_calendar/crm_meeting_demo.xml b/addons/base_calendar/crm_meeting_demo.xml deleted file mode 100644 index 6c098e2f949..00000000000 --- a/addons/base_calendar/crm_meeting_demo.xml +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - Follow-up for Project proposal - Meeting to discuss project plan and hash out the details of implementation. - - - - - open - - - - - - Initial discussion - Discussion with partner for product. - - - - - open - - - - - - Pricing Discussion - Internal meeting for discussion for new pricing for product and services. - - - - - open - - - - - - Requirements review - - - - - open - - - - - - Changes in Designing - - - - - open - - - - - - Presentation for new Services - - - - - open - - - diff --git a/addons/base_calendar/crm_meeting_view.xml b/addons/base_calendar/crm_meeting_view.xml deleted file mode 100644 index 9ef8bee6e3b..00000000000 --- a/addons/base_calendar/crm_meeting_view.xml +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - Meeting Types Tree - crm.meeting.type - - - - - - - - - Meeting Types - crm.meeting.type - form - - - - - - - - - CRM - Meetings Form - crm.meeting - -
- - -
-
-
-

- -

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + / + + + /∞ + + + + +
Can not grant
+
+

+ granted,
+ this month +

+ +
+ +

+
+ + + + + +
+ + + + + +
+
+ + + + + + Badge User Kanban View + gamification.badge.user + + + + + + + + + +
+
+
+ +
+

+ +

+ +

+
+

Granted by the

+
+
+
+
+
+
+
+
+
diff --git a/addons/gamification/views/challenge.xml b/addons/gamification/views/challenge.xml new file mode 100644 index 00000000000..075afcaccfa --- /dev/null +++ b/addons/gamification/views/challenge.xml @@ -0,0 +1,289 @@ + + + + + + Challenges List + gamification.challenge + + + + + + + + + + + + gamification.goal + Related Goals + kanban,tree + {'search_default_group_by_definition': True, 'search_default_inprogress': True, 'search_default_challenge_id': active_id, 'default_challenge_id': active_id} + +

+ There is no goals associated to this challenge matching your search. + Make sure that your challenge is active and assigned to at least one user. +

+
+
+ + + Challenge Form + gamification.challenge + +
+
+
+ + +
+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

Badges are granted when a challenge is finished. This is either at the end of a running period (eg: end of the month for a monthly challenge), at the end date of a challenge (if no periodicity is set) or when the challenge is manually closed.

+
+
+ + + + + + +
+

Depending on the Display mode, reports will be individual or shared.

+
+ + + +
+ + + + + +
+
+ +
+
+ + +
+
+
+
+ + + Challenge Kanban + gamification.challenge + + + + + + +
+
+ í + +
+
+ +

+ +
+ + + +
+
+
+
+
+
+
+
+ + + Challenges + gamification.challenge + kanban,tree,form + {'search_default_inprogress':True, 'default_inprogress':True} + +

+ Click to create a challenge. +

+

+ Assign a list of goals to chosen users to evaluate them. + The challenge can use a period (weekly, monthly...) for automatic creation of goals. + The goals are created for the specified users or member of the group. +

+
+
+ + + + kanban + + + + + + form + + + + + + + Challenge line list + gamification.challenge.line + + + + + + + + + + + Challenge Search + gamification.challenge + + + + + + + + + + + + + + + + Challenge Wizard + gamification.challenge + +
+ +
+

+
+ + + + + + + + + + + + + + + + + + + +
+ There is no reward upon completion of this challenge. +
+ + + + + + +
+ Even if the challenge is failed, best challengers will be rewarded +
+
+
+
+
+
+ +
+
+ + + Challenge Description + gamification.challenge + form + + new + + +
+
\ No newline at end of file diff --git a/addons/gamification/views/goal.xml b/addons/gamification/views/goal.xml new file mode 100644 index 00000000000..a269f710c02 --- /dev/null +++ b/addons/gamification/views/goal.xml @@ -0,0 +1,289 @@ + + + + + + + Goals + gamification.goal + tree,form,kanban + {'search_default_group_by_user': True, 'search_default_group_by_definition': True} + +

+ Click to create a goal. +

+

+ A goal is defined by a user and a goal definition. + Goals can be created automatically by using challenges. +

+
+
+ + + Goal List + gamification.goal + + + + + + + + + + + + + + + + + Goal Form + gamification.goal + +
+
+
+ + + + + + + + + + + + + + + + + +
+ + +
+
+
+
+ + + Goal Search + gamification.goal + + + + + + + + + + + + + + + + + + + + + + + + Goal Kanban View + gamification.goal + + + + + + + + + + + + + + + + + + + +
+
+

+
+ +
+ +
+ +
+ W + N + X +
+
+ + + + + +
+ +
+ Target: less than +
+
+ +
+

+ + From + + + To + +

+
+
+
+
+
+
+
+ + + + + + Goal Definitions + gamification.goal.definition + tree,form + +

+ Click to create a goal definition. +

+

+ A goal definition is a technical model of goal defining a condition to reach. + The dates, values to reach or users are defined in goal instance. +

+
+
+ + + Goal Definitions List + gamification.goal.definition + + + + + + + + + + + Goal Definitions Form + gamification.goal.definition + +
+ + +
+
+
+ + + Goal Definition Search + gamification.goal.definition + + + + + + + + + + + + + + + + + + + + +
+
diff --git a/addons/gamification/wizard/__init__.py b/addons/gamification/wizard/__init__.py new file mode 100644 index 00000000000..638fbef4373 --- /dev/null +++ b/addons/gamification/wizard/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 OpenERP SA (). +# +# 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 update_goal +import grant_badge diff --git a/addons/gamification/wizard/grant_badge.py b/addons/gamification/wizard/grant_badge.py new file mode 100644 index 00000000000..44f739fff4e --- /dev/null +++ b/addons/gamification/wizard/grant_badge.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 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 +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see +# +############################################################################## + +from openerp.osv import fields, osv +from openerp.tools.translate import _ + + +class grant_badge_wizard(osv.TransientModel): + """ Wizard allowing to grant a badge to a user""" + + _name = 'gamification.badge.user.wizard' + _columns = { + 'user_id': fields.many2one("res.users", string='User', required=True), + 'badge_id': fields.many2one("gamification.badge", string='Badge', required=True), + 'comment': fields.text('Comment'), + } + + def action_grant_badge(self, cr, uid, ids, context=None): + """Wizard action for sending a badge to a chosen user""" + + badge_obj = self.pool.get('gamification.badge') + badge_user_obj = self.pool.get('gamification.badge.user') + + for wiz in self.browse(cr, uid, ids, context=context): + if uid == wiz.user_id.id: + raise osv.except_osv(_('Warning!'), _('You can not grant a badge to yourself')) + + #create the badge + values = { + 'user_id': wiz.user_id.id, + 'sender_id': uid, + 'badge_id': wiz.badge_id.id, + 'comment': wiz.comment, + } + badge_user = badge_user_obj.create(cr, uid, values, context=context) + result = badge_obj._send_badge(cr, uid, badge_user, context=context) + + return result diff --git a/addons/gamification/wizard/grant_badge.xml b/addons/gamification/wizard/grant_badge.xml new file mode 100644 index 00000000000..e03dbac4096 --- /dev/null +++ b/addons/gamification/wizard/grant_badge.xml @@ -0,0 +1,33 @@ + + + + + + Grant Badge User Form + gamification.badge.user.wizard + +
+ Who would you like to reward? + + + + + +
+
+
+
+
+ + + +
+
diff --git a/addons/gamification/wizard/update_goal.py b/addons/gamification/wizard/update_goal.py new file mode 100644 index 00000000000..cbda3fefbce --- /dev/null +++ b/addons/gamification/wizard/update_goal.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 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 +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see +# +############################################################################## + +from openerp.osv import fields, osv + +class goal_manual_wizard(osv.TransientModel): + """Wizard to update a manual goal""" + _name = 'gamification.goal.wizard' + _columns = { + 'goal_id': fields.many2one("gamification.goal", string='Goal', required=True), + 'current': fields.float('Current'), + } + + def action_update_current(self, cr, uid, ids, context=None): + """Wizard action for updating the current value""" + + goal_obj = self.pool.get('gamification.goal') + + for wiz in self.browse(cr, uid, ids, context=context): + towrite = { + 'current': wiz.current, + 'goal_id': wiz.goal_id.id, + } + goal_obj.write(cr, uid, [wiz.goal_id.id], towrite, context=context) + goal_obj.update(cr, uid, [wiz.goal_id.id], context=context) + return {} diff --git a/addons/gamification/wizard/update_goal.xml b/addons/gamification/wizard/update_goal.xml new file mode 100644 index 00000000000..793efab90ff --- /dev/null +++ b/addons/gamification/wizard/update_goal.xml @@ -0,0 +1,24 @@ + + + + + + Update the current value of the Goal + gamification.goal.wizard + +
+ Set the current value you have reached for this goal + + + + +
+
+
+
+
+ +
+
diff --git a/addons/gamification_sale_crm/__init__.py b/addons/gamification_sale_crm/__init__.py new file mode 100644 index 00000000000..e14c014a1ef --- /dev/null +++ b/addons/gamification_sale_crm/__init__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 OpenERP SA (). +# +# 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 . +# +############################################################################## diff --git a/addons/gamification_sale_crm/__openerp__.py b/addons/gamification_sale_crm/__openerp__.py new file mode 100644 index 00000000000..b2ec9a10428 --- /dev/null +++ b/addons/gamification_sale_crm/__openerp__.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 OpenERP SA (). +# +# 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': 'CRM Gamification', + 'version': '1.0', + 'author': 'OpenERP SA', + 'category': 'hidden', + 'depends': ['gamification','sale_crm'], + 'description': """Example of goal definitions and challenges that can be used related to the usage of the CRM Sale module.""", + + 'data': ['sale_crm_goals.xml'], + 'demo': ['sale_crm_goals_demo.xml'], + 'auto_install': True, +} diff --git a/addons/gamification_sale_crm/sale_crm_goals.xml b/addons/gamification_sale_crm/sale_crm_goals.xml new file mode 100644 index 00000000000..b48cc8a3117 --- /dev/null +++ b/addons/gamification_sale_crm/sale_crm_goals.xml @@ -0,0 +1,173 @@ + + + + + + + Total Invoiced + + sum + True + + + + [('state','!=','cancel'),('user_id','=',user.id),('type','=','out_invoice')] + + + + New Leads + Based on the creation date + count + leads + + + + [('user_id','=',user.id), '|', ('type', '=', 'lead'), ('type', '=', 'opportunity')] + + + + Time to Qualify a Lead + The average number of days to open the case (lower than) + sum + lower + days + + + + [('user_id','=',user.id),('type', '=', 'lead')] + + + + Days to Close a Deal + The average number of days to close the case (lower than) + sum + lower + days + + + + [('user_id','=',user.id)] + + + + + Logged Calls + Log a certain number of calls to reach this goal + count + calls + + + [('user_id','=',user.id),('state','=','done')] + + + + New Opportunities + Based on the opening date + count + opportunities + + + [('user_id','=',user.id),('type','=','opportunity')] + + + + New Sales Orders + Based on the creation date + count + orders + + + [('user_id','=',user.id),('state','not in',('draft', 'sent', 'cancel'))] + + + + Paid Sales Orders + Based on the invoice date + count + orders + + + [('state','=','paid'),('user_id','=',user.id),('type','=','out_invoice')] + + + Total Paid Sales Orders + Based on the invoice date + count + True + + + + [('state','=','paid'),('user_id','=',user.id),('type','=','out_invoice')] + + + + + Customer Refunds + Refund the least customers (lower than) + count + lower + invoices + + + [('state','!=','cancel'),('user_id','=',user.id),('type','=','out_refund')] + + + Total Customer Refunds + The total refunded value is a negative value. Validated when higher (min refunded). + sum + higher + True + + + + [('state','!=','cancel'),('user_id','=',user.id),('type','=','out_refund')] + + + + + + + Monthly Sales Targets + monthly + ranking + + weekly + + + + Lead Acquisition + monthly + ranking + + weekly + + + + + + 20000 + + + + + + + 7 + + 1 + + + + 15 + + 2 + + + + 5 + + 3 + + + + diff --git a/addons/gamification_sale_crm/sale_crm_goals_demo.xml b/addons/gamification_sale_crm/sale_crm_goals_demo.xml new file mode 100644 index 00000000000..fd69c36162f --- /dev/null +++ b/addons/gamification_sale_crm/sale_crm_goals_demo.xml @@ -0,0 +1,23 @@ + + + + + + + + inprogress + + + + + + + + + + 2000 + inprogress + + + + diff --git a/addons/google_account/__init__.py b/addons/google_account/__init__.py new file mode 100644 index 00000000000..640a9747f2d --- /dev/null +++ b/addons/google_account/__init__.py @@ -0,0 +1,25 @@ +# -*- 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 google_account +import controllers + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + diff --git a/addons/google_base_account/__openerp__.py b/addons/google_account/__openerp__.py similarity index 97% rename from addons/google_base_account/__openerp__.py rename to addons/google_account/__openerp__.py index 99678d2785d..5c3834ae65e 100644 --- a/addons/google_base_account/__openerp__.py +++ b/addons/google_account/__openerp__.py @@ -32,7 +32,7 @@ The module adds google user in res user. 'website': 'http://www.openerp.com', 'depends': ['base_setup'], 'data': [ - 'google_base_account_data.xml', + 'google_account_data.xml', ], 'demo': [], 'installable': True, diff --git a/addons/google_account/controllers/__init__.py b/addons/google_account/controllers/__init__.py new file mode 100644 index 00000000000..8ee9bae18d9 --- /dev/null +++ b/addons/google_account/controllers/__init__.py @@ -0,0 +1 @@ +import main diff --git a/addons/google_account/controllers/main.py b/addons/google_account/controllers/main.py new file mode 100644 index 00000000000..40843b6f4ba --- /dev/null +++ b/addons/google_account/controllers/main.py @@ -0,0 +1,32 @@ +import simplejson +import urllib +import openerp +import openerp.addons.web.http as http +from openerp.addons.web.http import request +import openerp.addons.web.controllers.main as webmain +from openerp.addons.web.http import SessionExpiredException +from werkzeug.exceptions import BadRequest +import werkzeug.utils + +class google_auth(http.Controller): + + @http.route('/google_account/authentication', type='http', auth="none") + def oauth2callback(self, **kw): + """ This route/function is called by Google when user Accept/Refuse the consent of Google """ + + state = simplejson.loads(kw['state']) + dbname = state.get('d') + service = state.get('s') + url_return = state.get('f') + + registry = openerp.modules.registry.RegistryManager.get(dbname) + with registry.cursor() as cr: + if kw.get('code',False): + registry.get('google.%s' % service).set_all_tokens(cr,request.session.uid,kw['code']) + return werkzeug.utils.redirect(url_return) + elif kw.get('error'): + return werkzeug.utils.redirect("%s%s%s" % (url_return ,"?error=" , kw.get('error'))) + else: + return werkzeug.utils.redirect("%s%s%s" % (url_return ,"?error=Unknown_error")) + + diff --git a/addons/google_account/google_account.py b/addons/google_account/google_account.py new file mode 100644 index 00000000000..0ecade3554e --- /dev/null +++ b/addons/google_account/google_account.py @@ -0,0 +1,182 @@ +# -*- 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 . +# +############################################################################## + +from openerp.osv import osv +from openerp import SUPERUSER_ID +from openerp.tools.translate import _ +from openerp.addons.web.http import request + +import urllib +import urllib2 +import simplejson + +import logging +_logger = logging.getLogger(__name__) + +class google_service(osv.osv_memory): + _name = 'google.service' + + def generate_refresh_token(self, cr, uid, service, authorization_code, context=None): + ir_config = self.pool['ir.config_parameter'] + client_id = ir_config.get_param(cr, SUPERUSER_ID, 'google_%s_client_id' % service) + client_secret = ir_config.get_param(cr, SUPERUSER_ID, 'google_%s_client_secret' % service) + redirect_uri = ir_config.get_param(cr, SUPERUSER_ID, 'google_redirect_uri') + + #Get the Refresh Token From Google And store it in ir.config_parameter + headers = {"Content-type": "application/x-www-form-urlencoded"} + data = dict(code=authorization_code, client_id=client_id, client_secret=client_secret, redirect_uri=redirect_uri, grant_type="authorization_code") + data = urllib.urlencode(data) + try: + req = urllib2.Request("https://accounts.google.com/o/oauth2/token", data, headers) + content = urllib2.urlopen(req).read() + except urllib2.HTTPError: + raise self.pool.get('res.config.settings').get_config_warning(cr, _("Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"), context=context) + + content = simplejson.loads(content) + return content.get('refresh_token') + + def _get_google_token_uri(self, cr, uid, service, scope, context=None): + ir_config = self.pool['ir.config_parameter'] + params = { + 'scope': scope, + 'redirect_uri': ir_config.get_param(cr, SUPERUSER_ID, 'google_redirect_uri'), + 'client_id': ir_config.get_param(cr, SUPERUSER_ID, 'google_%s_client_id' % service), + 'response_type': 'code', + 'client_id': ir_config.get_param(cr, SUPERUSER_ID, 'google_%s_client_id' % service), + } + uri = 'https://accounts.google.com/o/oauth2/auth?%s' % urllib.urlencode(params) + return uri + + #If no scope is passed, we use service by default to get a default scope + def _get_authorize_uri(self, cr, uid, from_url, service, scope = False, context=None): + """ This method return the url needed to allow this instance of OpenErp to access to the scope of gmail specified as parameters """ + state_obj = dict(d=cr.dbname, s=service, f=from_url) + + base_url = self.get_base_url(cr, uid, context) + client_id = self.get_client_id(cr, uid, service, context) + + params = { + 'response_type': 'code', + 'client_id': client_id, + 'state' : simplejson.dumps(state_obj), + 'scope': scope or 'https://www.googleapis.com/auth/%s' % (service,), + 'redirect_uri': base_url + '/google_account/authentication', + 'approval_prompt':'force', + 'access_type':'offline' + } + + uri = self.get_uri_oauth(a='auth') + "?%s" % urllib.urlencode(params) + return uri + + def _get_google_token_json(self, cr, uid, authorize_code, service, context=None): + res = False + base_url = self.get_base_url(cr, uid, context) + client_id = self.get_client_id(cr, uid, service, context) + client_secret = self.get_client_secret(cr, uid, service, context) + + params = { + 'code': authorize_code, + 'client_id': client_id, + 'client_secret': client_secret, + 'grant_type' : 'authorization_code', + 'redirect_uri': base_url + '/google_account/authentication' + } + + headers = {"content-type": "application/x-www-form-urlencoded"} + + try: + data = urllib.urlencode(params) + req = urllib2.Request(self.get_uri_oauth(a='token'), data, headers) + + content = urllib2.urlopen(req).read() + res = simplejson.loads(content) + except urllib2.HTTPError,e: + raise self.pool.get('res.config.settings').get_config_warning(cr, _("Something went wrong during your token generation. Maybe your Authorization Code is invalid"), context=context) + return res + + def _refresh_google_token_json(self, cr, uid, refresh_token, service, context=None): #exchange_AUTHORIZATION vs Token (service = calendar) + res = False + base_url = self.get_base_url(cr, uid, context) + client_id = self.get_client_id(cr, uid, service, context) + client_secret = self.get_client_secret(cr, uid, service, context) + + params = { + 'refresh_token': refresh_token, + 'client_id': client_id, + 'client_secret': client_secret, + 'grant_type' : 'refresh_token' + } + + headers = {"content-type": "application/x-www-form-urlencoded"} + + try: + data = urllib.urlencode(params) + req = urllib2.Request(self.get_uri_oauth(a='token'), data, headers) + content = urllib2.urlopen(req).read() + res = simplejson.loads(content) + except urllib2.HTTPError: + raise self.pool.get('res.config.settings').get_config_warning(cr, _("Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"), context=context) + + return res + + + def _do_request(self,cr,uid,uri,params={},headers={},type='POST', context=None): + _logger.debug("Uri: %s - Type : %s - Headers: %s - Params : %s !" % (uri,type,headers,urllib.urlencode(params) if type =='GET' else params)) + res = False + + try: + if type.upper() == 'GET' or type.upper() == 'DELETE': + data = urllib.urlencode(params) + req = urllib2.Request(self.get_uri_api() + uri + "?" + data) + elif type.upper() == 'POST' or type.upper() == 'PATCH' or type.upper() == 'PUT': + req = urllib2.Request(self.get_uri_api() + uri, params, headers) + else: + raise ('Method not supported [%s] not in [GET, POST, PUT, PATCH or DELETE]!' % (type)) + req.get_method = lambda: type.upper() + + request = urllib2.urlopen(req) + + if request.getcode() == 204: #No content returned, (ex: POST calendar/event/clear) + res = True + elif request.getcode() == 404: #Page not found + res = False + else: + content=request.read() + res = simplejson.loads(content) + except urllib2.HTTPError,e: + _logger.exception("Bad google request : %s !" % e.read()) + raise self.pool.get('res.config.settings').get_config_warning(cr, _("Something went wrong with your request to google"), context=context) + return res + + def get_base_url(self, cr, uid, context=None): + return self.pool.get('ir.config_parameter').get_param(cr, uid, 'web.base.url',default='http://www.openerp.com?NoBaseUrl',context=context) + + def get_client_id(self, cr, uid, service, context=None): + return self.pool.get('ir.config_parameter').get_param(cr, uid, 'google_%s_client_id' % (service,),default=False,context=context) + + def get_client_secret(self, cr, uid, service, context=None): + return self.pool.get('ir.config_parameter').get_param(cr, uid, 'google_%s_client_secret' % (service,),default=False,context=context) + + def get_uri_oauth(self,a=''): #a = optional action + return "https://accounts.google.com/o/oauth2/%s" % (a,) + + def get_uri_api(self): + return 'https://www.googleapis.com' diff --git a/addons/google_base_account/google_base_account_data.xml b/addons/google_account/google_account.xml similarity index 100% rename from addons/google_base_account/google_base_account_data.xml rename to addons/google_account/google_account.xml diff --git a/addons/google_account/google_account_data.xml b/addons/google_account/google_account_data.xml new file mode 100644 index 00000000000..c6748df7dc9 --- /dev/null +++ b/addons/google_account/google_account_data.xml @@ -0,0 +1,9 @@ + + + + + google_redirect_uri + urn:ietf:wg:oauth:2.0:oob + + + \ No newline at end of file diff --git a/addons/google_account/i18n/ar.po b/addons/google_account/i18n/ar.po new file mode 100644 index 00000000000..b8f0963d741 --- /dev/null +++ b/addons/google_account/i18n/ar.po @@ -0,0 +1,138 @@ +# Arabic 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-04-06 00:46+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "اسم المستخدم" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "حساب جوجل" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "خطأ في إستيراد جهات الإتصال من جوجل!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "المستخدمون" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "أو" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "دخول بجوجل" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "كلمة مرور جوجل" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "خطأ!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "حساب جوجل‏" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "مزامنة" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "فشلت المصادقة. الرجاء التأكد من اسم المستخدم وكلمة المرور." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"يجب عليك تحميل مكتبة gdata-python-client من http://code.google.com/p/gdata-" +"python-client/downloads/list لكي تعمل" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "جهات إتصال جوجل" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "إلغاء" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "اسم مستخدم جوجل" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "كلمة المرور" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "تسج_يل دخول" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "_Cancel" +#~ msgstr "إل_غاء" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "لا يمكن ان يكون هناك مستخدمان بنفس اسم الدخول!" + +#~ msgid " Synchronization " +#~ msgstr " تزامن البيانات " + +#, python-format +#~ msgid "Error" +#~ msgstr "خطأ" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "مثال: user@gmail.com" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "" +#~ "الشركة المختارة غير مدرجة ضمن قائمة الشركات المسموح بها لهذا المستخدم" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "فشل في التحقق، تأكد من اسم المستخدم أو كلمة المرور !" diff --git a/addons/google_account/i18n/cs.po b/addons/google_account/i18n/cs.po new file mode 100644 index 00000000000..dd7f6a4227b --- /dev/null +++ b/addons/google_account/i18n/cs.po @@ -0,0 +1,109 @@ +# Czech 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-03-31 16:49+0000\n" +"Last-Translator: FULL NAME \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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "" diff --git a/addons/google_account/i18n/de.po b/addons/google_account/i18n/de.po new file mode 100644 index 00000000000..51331159f6a --- /dev/null +++ b/addons/google_account/i18n/de.po @@ -0,0 +1,140 @@ +# 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-18 07:02+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Benutzername" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google Login" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Google Kontakt Import Fehler!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Benutzer" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "oder" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google Login" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google Passwort" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Fehler!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google-Konto" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Synchronisation" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "Authentifizierung fehlgeschlgen. Prüfen Sie Benutzer-ID und Passwort" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Bitte installieren Sie gdata-python-client von " +"http://code.google.com/p/gdata-python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google Kontakt" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Abbrechen" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google Benutzername" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Passwort" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Login" + +#, python-format +#~ msgid "Error" +#~ msgstr "Fehler" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "2 Benuzter können nicht den gleichen Login Code haben." + +#~ msgid "_Cancel" +#~ msgstr "_Abbrechen" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid " Synchronization " +#~ msgstr " Synchronisation " + +#~ msgid "ex: user@gmail.com" +#~ msgstr "zB: user@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "" +#~ "Berechtigungsprüfung fehlgeschlagen - prüfen Sie Benutzer und Passwort!" + +#~ 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" diff --git a/addons/google_account/i18n/es.po b/addons/google_account/i18n/es.po new file mode 100644 index 00000000000..6f97eeb3e23 --- /dev/null +++ b/addons/google_account/i18n/es.po @@ -0,0 +1,140 @@ +# 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-11 22:01+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Nombre de usuario" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Acceso de Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "¡Error en la importacion de los contactos de Google!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Usuarios" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "o" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Acceso Google" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Contraseña de Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "¡Error!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Cuenta de Google" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Sincronización" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "Autentificación fallida. Verifique usuario y password" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Por favor, instale gdata-python-client de http://code.google.com/p/gdata-" +"python-client/downloads/list o desde el administrador de paquetes de su " +"distribución" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Contacto Google" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Cancelar" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Usuario de Google" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Contraseña" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "Iniciar _sesión" + +#, 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!" + +#~ msgid " Synchronization " +#~ msgstr " Sincronización " + +#~ msgid "_Cancel" +#~ msgstr "_Cancelar" + +#~ msgid "res.users" +#~ msgstr "Usuarios" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "ejemplo: usuario@gmail.com" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "" +#~ "La compañía seleccionada no está entre las companías permitidas para este " +#~ "usuario" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Fallo en la autenticación. ¡Compruebe el usuario y la contraseña!" diff --git a/addons/google_account/i18n/es_CR.po b/addons/google_account/i18n/es_CR.po new file mode 100644 index 00000000000..d9c850521f8 --- /dev/null +++ b/addons/google_account/i18n/es_CR.po @@ -0,0 +1,139 @@ +# Spanish (Costa Rica) 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-02-15 22:13+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Nombre de Usuario" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Logueo de Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "¡Contactos de Google Error de importación!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "iniciar sesión en Google" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Contraseña de Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Cuenta Google" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Por favor instale gdata-python-client desde http://code.google.com/p/gdata-" +"python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Contacto Google" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Nombre usuario Google" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Contraseña" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_inicio sesión" + +#, 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 " Synchronization " +#~ msgstr " Sincronización " + +#~ msgid "_Cancel" +#~ msgstr "_Cancelar" + +#~ msgid "res.users" +#~ msgstr "res.usuarios" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "¡Autenticación falló verifique su usuario y contraseña¡" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "ejemplo: usuario@gmail.com" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "" +#~ "La compañía seleccionada no está en las compañías permitidas para este " +#~ "usuario" diff --git a/addons/google_account/i18n/fi.po b/addons/google_account/i18n/fi.po new file mode 100644 index 00000000000..9d3a93e81bb --- /dev/null +++ b/addons/google_account/i18n/fi.po @@ -0,0 +1,132 @@ +# Finnish 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-03-19 12:19+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Käyttäjätunnus" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google tunnus" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Google kontaktien tuontivirhe!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google tunnus" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google salasana" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google tili" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google kontakti" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google käyttäjätunnus" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Salasana" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "" + +#, python-format +#~ msgid "Error" +#~ msgstr "Virhe" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Kahdella eri käyttäjällä ei voi olla samaa käyttäjätunnusta!" + +#~ msgid " Synchronization " +#~ msgstr " Synkronointi " + +#~ msgid "_Cancel" +#~ msgstr "_Peruuta" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "esim. user@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Kirjautuminen ei onnistunut. Tarkista käyttäjätunnus ja salasana!" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "Valittu yritys ei ole sallittu tälle käyttäjälle" diff --git a/addons/google_account/i18n/fr.po b/addons/google_account/i18n/fr.po new file mode 100644 index 00000000000..2aef8ec4846 --- /dev/null +++ b/addons/google_account/i18n/fr.po @@ -0,0 +1,139 @@ +# 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-03-12 21:03+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-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Utilisateur" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Identifiant Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Erreur lors de l'import des contacts Google !" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Utilisateurs" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "ou" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Login Google" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Mot de passe Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Erreur !" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Compte Google" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Synchronisation" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" +"L'identification a échoué. Vérifiez le nom d'utilisateur et le mot de passe." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Merci d'installer gdata-python-client à partir de " +"http://code.google.com/p/gdata-python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Contact Google" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Annuler" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Nom d'utilisateur Google" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Mot de passe" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Connexion" + +#, python-format +#~ msgid "Error" +#~ msgstr "Erreur" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Vous ne pouvez pas avoir deux utilisateurs avec le même login !" + +#~ msgid " Synchronization " +#~ msgstr " Synchronisation " + +#~ msgid "_Cancel" +#~ msgstr "Annuler" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "ex: nom.prenom@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "" +#~ "Echec de l'uthentification, vérifier l'utilisateur et le mot de passe!" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "La société choisie n'est pas autorisée pour cet utilisateur." diff --git a/addons/google_base_account/i18n/google_base_account.pot b/addons/google_account/i18n/google_base_account.pot similarity index 100% rename from addons/google_base_account/i18n/google_base_account.pot rename to addons/google_account/i18n/google_base_account.pot diff --git a/addons/google_account/i18n/hr.po b/addons/google_account/i18n/hr.po new file mode 100644 index 00000000000..f36a399a20e --- /dev/null +++ b/addons/google_account/i18n/hr.po @@ -0,0 +1,109 @@ +# Croatian 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-09 20:22+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Korisničko ime" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google prijava" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Korisnici" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "ili" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google prijava" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google lozinka" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Greška!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google Račun" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Sinkronizacija" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Odustani" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Lozinka" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "" diff --git a/addons/google_account/i18n/hu.po b/addons/google_account/i18n/hu.po new file mode 100644 index 00000000000..cf9a657ea01 --- /dev/null +++ b/addons/google_account/i18n/hu.po @@ -0,0 +1,112 @@ +# 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-03-02 10:07+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-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Felhasználónév" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google Bejelentkezés" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Google kapcsolatok betöltés hiba!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Felhasználók" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "vagy" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google bejelentkezés" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google Jelszó" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Hiba!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google Fiók" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Szinkronizálás" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" +"Sikertelen hiotelesítés. Ellenőrizze a felhasználó nevet és a jelszavat." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Kérem telepíteni a gdata-python-client innen http://code.google.com/p/gdata-" +"python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google Kapcsolat" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Mégsem" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google Felhasználónév" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Jelszó" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "Beje_lentkezés" diff --git a/addons/google_account/i18n/it.po b/addons/google_account/i18n/it.po new file mode 100644 index 00000000000..5582e49b0ab --- /dev/null +++ b/addons/google_account/i18n/it.po @@ -0,0 +1,137 @@ +# 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-10 20:51+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Nome utente" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Login Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Errore nell'importazione dei contatti da Google!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Utenti" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "o" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Login Google" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Password Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Errore!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Account Google" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Sincronizzazione" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "Autenticazione fallita. Verificare l'utente e la password." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Prego installare gdata-python-client da http://code.google.com/p/gdata-" +"python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Contatto Google" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Annulla" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Nome Utente Google" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Password" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Accedi" + +#, python-format +#~ msgid "Error" +#~ msgstr "Errore" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Non è possibile avere due utenti con lo stesso login !" + +#~ msgid " Synchronization " +#~ msgstr " Sincronizzazione " + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "_Cancel" +#~ msgstr "_Annulla" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "es: user@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Autenticazione fallita, controlla il nome utente e la password !" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "L'azienda scelta non è fra la aziende abilitate per questo utente" diff --git a/addons/google_account/i18n/ja.po b/addons/google_account/i18n/ja.po new file mode 100644 index 00000000000..e821d083a7b --- /dev/null +++ b/addons/google_account/i18n/ja.po @@ -0,0 +1,137 @@ +# Japanese 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-04-18 06:48+0000\n" +"Last-Translator: Tomomi Mengelberg \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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "ユーザ名" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google ログイン" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Googleの連絡先のインポートエラー。" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google ログイン" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google パスワード" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google アカウント" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"http://code.google.com/p/gdata-python-client/downloads/list から gdata-python-" +"client をインストールしてください。" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google 連絡先" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google ユーザ名" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "パスワード" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_ログイン" + +#, python-format +#~ msgid "Error" +#~ msgstr "エラー" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "同一のログインに2つのユーザを指定することはできません。" + +#~ msgid "_Cancel" +#~ msgstr "キャンセル" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "例: user@gmail.com" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "選択した会社は、このユーザに許された会社ではありません。" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "ユーザ名とパスワードが認証できませんでした。" + +#~ msgid " Synchronization " +#~ msgstr " 同期する " diff --git a/addons/google_account/i18n/mk.po b/addons/google_account/i18n/mk.po new file mode 100644 index 00000000000..49f8b0d8292 --- /dev/null +++ b/addons/google_account/i18n/mk.po @@ -0,0 +1,111 @@ +# Macedonian 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-03-02 22:52+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Корисничко име" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google најава" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Грешка при увезување на контакти од Google!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Корисници" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "или" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google најава" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google лозинка" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Грешка!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google сметка" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Синхронизација" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "Неуспешна најава. Проверете го корисничкото име и лозинка." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Инсталирајте го gdata-python-client од http://code.google.com/p/gdata-python-" +"client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google контакт" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Откажи" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google корисничко име" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Лозинка" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Најава" diff --git a/addons/google_account/i18n/mn.po b/addons/google_account/i18n/mn.po new file mode 100644 index 00000000000..cd5bbb71953 --- /dev/null +++ b/addons/google_account/i18n/mn.po @@ -0,0 +1,128 @@ +# 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-11-08 03:11+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Хэрэглэгчийн нэр" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google эрхээр нэвтрэх" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Google Нэрсийг импорт хийхэд алдаа гарлаа!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Хэрэглэгчид" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "эсвэл" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google эрхээр нэвтрэх" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google Нууц үг" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Алдаа!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "\"Google\" Хаяг" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Ижилсүүлэлт" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "Нэвтрэлтэд алдаа гарлаа. Нэвтрэх нэр болон кодоо шалгана уу." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Уучлаарай таны компьютерт \"gdata-python-client\" суугаагүй байна.\r\n" +"Дараах холбоосоор орж суулгана уу. http://code.google.com/p/gdata-python-" +"client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "\"Google\" Харилцагчид" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Хэрэгсэхгүй" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "\"Google\" Нэвтрэх нэр" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Нэвтрэх үг" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Нэвтрэх" + +#, python-format +#~ msgid "Error" +#~ msgstr "Алдаа" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Ижил нэвтрэх нэртэй хоёр хэрэглэгч байж болохгүй!" + +#~ msgid "_Cancel" +#~ msgstr "_Цуцлах" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid " Synchronization " +#~ msgstr " Ижилтгэх " diff --git a/addons/google_account/i18n/nb.po b/addons/google_account/i18n/nb.po new file mode 100644 index 00000000000..e9efe93a8a4 --- /dev/null +++ b/addons/google_account/i18n/nb.po @@ -0,0 +1,138 @@ +# Norwegian Bokmal 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-09-07 19:23+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Brukernavn:" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google Logg inn" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Google kontakter Import Feil!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google Logg Inn." + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google passord." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google-konto" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Vennligst Installer gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google kontakt" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google Brukernavn." + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Passord:" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Logg inn" + +#, python-format +#~ msgid "Error" +#~ msgstr "Feil" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Du kan ikke ha to brukere med samme login!" + +#~ msgid " Synchronization " +#~ msgstr " Synkronisering " + +#~ msgid "_Cancel" +#~ msgstr "_Avbryt" + +#~ msgid "res.users" +#~ msgstr "res.Brukere." + +#~ msgid "ex: user@gmail.com" +#~ msgstr "Ex:Bruker@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Autentisering mislykkes sjekk brukernavn og passord!" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "" +#~ "Det valgte firmaet er ikke i listen over tillatte firmaer for denne brukeren" diff --git a/addons/google_account/i18n/nl.po b/addons/google_account/i18n/nl.po new file mode 100644 index 00000000000..774a954e1a1 --- /dev/null +++ b/addons/google_account/i18n/nl.po @@ -0,0 +1,137 @@ +# 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-11-24 19:09+0000\n" +"Last-Translator: Erwin van der Ploeg (BAS 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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Gebruikersnaam" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google Login" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Google contactpersonen import fout!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Gebruikers" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "of" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google login" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google wachtwoord" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Fout!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google-account" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Synchronisatie" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "Authenticatie mislukt. Controleer uw gebruikersnaam en wachtwoord." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Installeer a.u.b. gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google Contactpersoon" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Annuleren" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google gebruikersnaam" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Wachtwoord" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Inlog:" + +#, python-format +#~ msgid "Error" +#~ msgstr "Fout" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "U kunt niet twee gebruikers hebben met dezelfde gebruikersnaam !" + +#~ msgid "_Cancel" +#~ msgstr "_Annuleren" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "vb: gebruiker@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Authenticatie mislukt. Controleer de gebruikersnaam en wachtwoord!" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "Het gekozen bedrijf is niet toegestaan voor deze gebruiker" + +#~ msgid " Synchronization " +#~ msgstr " Synchronisatie " diff --git a/addons/google_account/i18n/pl.po b/addons/google_account/i18n/pl.po new file mode 100644 index 00000000000..78017d89076 --- /dev/null +++ b/addons/google_account/i18n/pl.po @@ -0,0 +1,117 @@ +# Polish 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-11-02 14:30+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Zainstaluj gdata-python-client z http://code.google.com/p/gdata-python-" +"client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "np: user@gmail.com" diff --git a/addons/google_account/i18n/pt.po b/addons/google_account/i18n/pt.po new file mode 100644 index 00000000000..351cfeda325 --- /dev/null +++ b/addons/google_account/i18n/pt.po @@ -0,0 +1,138 @@ +# Portuguese 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-11 15:52+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Nome de utilizador" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Login Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Erro na importação dos contatos Google!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Utilizadores" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "ou" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Login Google" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Password Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Erro!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Conta Google" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Sincronização" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "A autenticação falhou. Verifique o nome de utilizador e a senha." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Por Favor instale gdata-python-client de http://code.google.com/p/gdata-" +"python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Contato Google" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Cancelar" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Nome de Utilizador Google" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Password" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Login" + +#, python-format +#~ msgid "Error" +#~ msgstr "Erro" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Não pode ter dois utilizadores com o mesmo login!" + +#~ msgid " Synchronization " +#~ msgstr " Sincronização " + +#~ msgid "_Cancel" +#~ msgstr "_Cancelar" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "ex: utilizador@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Falhou autentificação verifique o utilizador e a password !" + +#~ 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/google_account/i18n/pt_BR.po b/addons/google_account/i18n/pt_BR.po new file mode 100644 index 00000000000..741bbc397f7 --- /dev/null +++ b/addons/google_account/i18n/pt_BR.po @@ -0,0 +1,139 @@ +# Brazilian Portuguese 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-07 22:43+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Usuário" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Login do Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Erro de importação dos contatos Google!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Usuários" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "ou" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Login do Google" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Senha do Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Erro!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Conta do Google" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Sincronização" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "Falha na Autenticação. Verifique o Nome de Usuário e Senha." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Por favor instale gdata-python-client de http://code.google.com/p/gdata-" +"python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Contatos do Google" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Cancelar" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Usuário do Google" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Senha" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Login" + +#, python-format +#~ msgid "Error" +#~ msgstr "Erro" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Você não pode ter dois usuários com o mesmo login!" + +#~ msgid " Synchronization " +#~ msgstr " Sincronização " + +#~ msgid "_Cancel" +#~ msgstr "_Cancelar" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "ex: usuario@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Usuário e senha não conferem!" + +#~ 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" diff --git a/addons/google_account/i18n/ro.po b/addons/google_account/i18n/ro.po new file mode 100644 index 00000000000..e274c98b78e --- /dev/null +++ b/addons/google_account/i18n/ro.po @@ -0,0 +1,138 @@ +# Romanian 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-05-13 12:00+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-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Nume de utilizator" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Autentificare Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Eroare Import Contacte Google!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Utilizatori" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "sau" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "autentificare Google" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Parola Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Eroare!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Cont Google" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Sincronizare" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "Autentificarea a esuat. Verificati utilizatorul si parola." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Va rugam sa instalati gdata-python-client de la adresa " +"http://code.google.com/p/gdata-python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Contact Google" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Anuleaza" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Nume de utilizator Google" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Parola" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Autentificare" + +#, python-format +#~ msgid "Error" +#~ msgstr "Eroare" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Nu pot exista doi utilizatori cu acelasi nume de autentificare !" + +#~ msgid " Synchronization " +#~ msgstr " Sincronizare " + +#~ msgid "_Cancel" +#~ msgstr "_Anuleaza" + +#~ msgid "res.users" +#~ msgstr "res.utilizatori" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "exemplu: utilizator@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Autentificarea a esuat verificati utilizatorul si parola !" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "" +#~ "Compania aleasa nu se afla printre companiile permise acestui utilizator" diff --git a/addons/google_account/i18n/ru.po b/addons/google_account/i18n/ru.po new file mode 100644 index 00000000000..b38814ce81a --- /dev/null +++ b/addons/google_account/i18n/ru.po @@ -0,0 +1,139 @@ +# 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-09-26 14:25+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Имя пользователя" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Логин Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Ошибка импорта контактов Google!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Логин Google" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Пароль Google" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Аккаунт Google" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Установите, пожалуйста, gdata-python-client с http://code.google.com/p/gdata-" +"python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Контакт Google" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Имя пользователя Google" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Пароль" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Логин" + +#, python-format +#~ msgid "Error" +#~ msgstr "Ошибка" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Вы не можете создать двух пользователей с одним логином!" + +#~ msgid " Synchronization " +#~ msgstr " Синхронизация " + +#~ msgid "_Cancel" +#~ msgstr "_Отмена" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "пример: user@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Ошибка авторизации, проверьте имя пользователя и пароля!" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "" +#~ "Выбранная компания отсутствует в списке разрешённых компаний для этого " +#~ "пользователя" diff --git a/addons/google_account/i18n/sl.po b/addons/google_account/i18n/sl.po new file mode 100644 index 00000000000..69111f76dd2 --- /dev/null +++ b/addons/google_account/i18n/sl.po @@ -0,0 +1,109 @@ +# 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-06-13 22:19+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-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Uporabniško ime" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Uporabniki" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "ali" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Napaka!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google Račun" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Usklajevanje" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "Prekliči" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Geslo" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Prijava" diff --git a/addons/google_account/i18n/sr@latin.po b/addons/google_account/i18n/sr@latin.po new file mode 100644 index 00000000000..0efeb8bee20 --- /dev/null +++ b/addons/google_account/i18n/sr@latin.po @@ -0,0 +1,137 @@ +# Serbian Latin 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-04-05 15:32+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Korisničko ime" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google prijava" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Greška u uvozu kontakata s Google-a" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google prijava" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google lozinka" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google nalog" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Molimo instalirajte gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google kontakt" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google korisničko ime" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Lozinka" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Prijava" + +#, python-format +#~ msgid "Error" +#~ msgstr "Greška" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Ne možete imati dva korisnika sa istom prijavom!" + +#~ msgid " Synchronization " +#~ msgstr " Sinhronizacija " + +#~ msgid "_Cancel" +#~ msgstr "_Otkaži" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "pr: user@gmail.com" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "Odabrano preduzeće nije u dozvoljenim preduzećima za ovog korisnioka" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Neuspešna autentifikacija, proverite korisnika i lozinku !" diff --git a/addons/google_account/i18n/sv.po b/addons/google_account/i18n/sv.po new file mode 100644 index 00000000000..205857b5eb3 --- /dev/null +++ b/addons/google_account/i18n/sv.po @@ -0,0 +1,137 @@ +# Swedish 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-06-04 09:58+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-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Användarnamn" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Googleinloggning" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Google kontaktimportfel!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Googleinloggning" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google-lösenord" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google-konto" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Vänligen installera gdata-python-client från http://code.google.com/p/gdata-" +"python-client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google-kontakt" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google-användarnamn" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Lösenord" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "Logga _in" + +#, python-format +#~ msgid "Error" +#~ msgstr "Fel" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Du kan inte ha två användare med samma användarid !" + +#~ msgid " Synchronization " +#~ msgstr " Synkronisering " + +#~ msgid "_Cancel" +#~ msgstr "_Avbryt" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "ex: user@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Autenticering misslyckades, kontrollera användarid och lösenord !" + +#~ 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" diff --git a/addons/google_account/i18n/tr.po b/addons/google_account/i18n/tr.po new file mode 100644 index 00000000000..12dd16bcf75 --- /dev/null +++ b/addons/google_account/i18n/tr.po @@ -0,0 +1,137 @@ +# Turkish 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-02-09 22:04+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "Kullanıcı Adı" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google Kullanıcı" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "Google Contacts İçeri Aktarma Hatası!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "Kullanıcılar" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "ya da" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google Kullanıcı adı" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google Şifresi" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "Hata!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google Hesabı" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "Eşzamanlama" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "Kimlik doğrulama hatası. Kullanıcı adı ve şifreyi kontrol edin." + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"Lütfen gdata-python-client http://code.google.com/p/gdata-python-" +"client/downloads/list adresinden kurun." + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google Kişiler" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "İptal" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google Kullanıcı Adı" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "Parola" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "_Oturum Aç" + +#, python-format +#~ msgid "Error" +#~ msgstr "Hata" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Aynı kullanıcı adı ile iki kullanıcı oluşturamazsınız !" + +#~ msgid " Synchronization " +#~ msgstr " Senkronizasyon " + +#~ msgid "_Cancel" +#~ msgstr "_Vazgeç" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "ör: kullanici@gmail.com" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "Seçilen Şirket bu kullanıcı için izin verilen şirketler arasında yok" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "Kimlik doğrulanamadı lütfen kullancı adı ve şifreyi kontrol edin!" diff --git a/addons/google_account/i18n/zh_CN.po b/addons/google_account/i18n/zh_CN.po new file mode 100644 index 00000000000..98c5dc08758 --- /dev/null +++ b/addons/google_account/i18n/zh_CN.po @@ -0,0 +1,137 @@ +# 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-11-28 15:28+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: 2013-09-12 06:35+0000\n" +"X-Generator: Launchpad (build 16761)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "用户名:" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "Google 登录" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "导入Google联系人失败!" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "用户" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "or" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "Google用户名" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "Google密码" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "错误!" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "Google 帐户" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "同步" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "身份授权失败。检查用户名和密码。" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" +"请下载并安装gdata-python-client,地址是 http://code.google.com/p/gdata-python-" +"client/downloads/list" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "Google联系人" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "取消" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "Google用户名" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "密码" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "登录(_L)" + +#, python-format +#~ msgid "Error" +#~ msgstr "错误" + +#~ msgid "You can not have two users with the same login !" +#~ msgstr "两个用户不能使用相同的用户名!" + +#~ msgid " Synchronization " +#~ msgstr " 同步 " + +#~ msgid "_Cancel" +#~ msgstr "取消(_C)" + +#~ msgid "res.users" +#~ msgstr "res.users" + +#~ msgid "ex: user@gmail.com" +#~ msgstr "例如:user@gmail.com" + +#, python-format +#~ msgid "Authentication fail check the user and password !" +#~ msgstr "验证用户名和密码失败!" + +#~ msgid "The chosen company is not in the allowed companies for this user" +#~ msgstr "选择的公司不属于此用户允许访问的公司。" diff --git a/addons/google_base_account/google_base_account.py b/addons/google_base_account/google_base_account.py deleted file mode 100644 index 4f85db0582b..00000000000 --- a/addons/google_base_account/google_base_account.py +++ /dev/null @@ -1,65 +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 . -# -############################################################################## - -from openerp.osv import osv -from openerp import SUPERUSER_ID -from openerp.tools.translate import _ - -import urllib -import urllib2 -import simplejson - - -class google_service(osv.osv_memory): - _name = 'google.service' - - def generate_refresh_token(self, cr, uid, service, authorization_code, context=None): - ir_config = self.pool['ir.config_parameter'] - client_id = ir_config.get_param(cr, SUPERUSER_ID, 'google_%s_client_id' % service) - client_secret = ir_config.get_param(cr, SUPERUSER_ID, 'google_%s_client_secret' % service) - redirect_uri = ir_config.get_param(cr, SUPERUSER_ID, 'google_redirect_uri') - - #Get the Refresh Token From Google And store it in ir.config_parameter - headers = {"Content-type": "application/x-www-form-urlencoded"} - data = dict(code=authorization_code, client_id=client_id, client_secret=client_secret, redirect_uri=redirect_uri, grant_type="authorization_code") - data = urllib.urlencode(data) - try: - req = urllib2.Request("https://accounts.google.com/o/oauth2/token", data, headers) - content = urllib2.urlopen(req).read() - except urllib2.HTTPError: - raise self.pool.get('res.config.settings').get_config_warning(cr, _("Something went wrong during your token generation. Maybe your Authorization Code is invalid or already expired"), context=context) - - content = simplejson.loads(content) - return content.get('refresh_token') - - def _get_google_token_uri(self, cr, uid, service, scope, context=None): - ir_config = self.pool['ir.config_parameter'] - params = { - 'scope': scope, - 'redirect_uri': ir_config.get_param(cr, SUPERUSER_ID, 'google_redirect_uri'), - 'client_id': ir_config.get_param(cr, SUPERUSER_ID, 'google_%s_client_id' % service), - 'response_type': 'code', - 'client_id': ir_config.get_param(cr, SUPERUSER_ID, 'google_%s_client_id' % service), - } - uri = 'https://accounts.google.com/o/oauth2/auth?%s' % urllib.urlencode(params) - return uri - -# vim:expandtab:smartindent:toabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/google_base_account/i18n/ar.po b/addons/google_base_account/i18n/ar.po index b8f0963d741..e57973c83b3 100644 --- a/addons/google_base_account/i18n/ar.po +++ b/addons/google_base_account/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/cs.po b/addons/google_base_account/i18n/cs.po index dd7f6a4227b..8a319419eb1 100644 --- a/addons/google_base_account/i18n/cs.po +++ b/addons/google_base_account/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/de.po b/addons/google_base_account/i18n/de.po index 51331159f6a..78333e0a4f8 100644 --- a/addons/google_base_account/i18n/de.po +++ b/addons/google_base_account/i18n/de.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-18 07:02+0000\n" -"Last-Translator: Ferdinand @ Camptocamp \n" +"Last-Translator: Ferdinand \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-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/es.po b/addons/google_base_account/i18n/es.po index 6f97eeb3e23..e2a54e4416b 100644 --- a/addons/google_base_account/i18n/es.po +++ b/addons/google_base_account/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/es_CR.po b/addons/google_base_account/i18n/es_CR.po index d9c850521f8..c23854e7631 100644 --- a/addons/google_base_account/i18n/es_CR.po +++ b/addons/google_base_account/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/fi.po b/addons/google_base_account/i18n/fi.po index 9d3a93e81bb..f4ac1c9c0c8 100644 --- a/addons/google_base_account/i18n/fi.po +++ b/addons/google_base_account/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/fr.po b/addons/google_base_account/i18n/fr.po index 2aef8ec4846..6ab61e210f1 100644 --- a/addons/google_base_account/i18n/fr.po +++ b/addons/google_base_account/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/hr.po b/addons/google_base_account/i18n/hr.po index f36a399a20e..8d6449c0469 100644 --- a/addons/google_base_account/i18n/hr.po +++ b/addons/google_base_account/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/hu.po b/addons/google_base_account/i18n/hu.po index cf9a657ea01..e42b8f132c9 100644 --- a/addons/google_base_account/i18n/hu.po +++ b/addons/google_base_account/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/it.po b/addons/google_base_account/i18n/it.po index 5582e49b0ab..9e1f4a3a4a9 100644 --- a/addons/google_base_account/i18n/it.po +++ b/addons/google_base_account/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ja.po b/addons/google_base_account/i18n/ja.po index e821d083a7b..197440e4849 100644 --- a/addons/google_base_account/i18n/ja.po +++ b/addons/google_base_account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/mk.po b/addons/google_base_account/i18n/mk.po index 49f8b0d8292..e6799f6e777 100644 --- a/addons/google_base_account/i18n/mk.po +++ b/addons/google_base_account/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/mn.po b/addons/google_base_account/i18n/mn.po index cd5bbb71953..a5e70eb9ae9 100644 --- a/addons/google_base_account/i18n/mn.po +++ b/addons/google_base_account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/nb.po b/addons/google_base_account/i18n/nb.po index e9efe93a8a4..f4e2e33e3d4 100644 --- a/addons/google_base_account/i18n/nb.po +++ b/addons/google_base_account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/nl.po b/addons/google_base_account/i18n/nl.po index 774a954e1a1..816929ac451 100644 --- a/addons/google_base_account/i18n/nl.po +++ b/addons/google_base_account/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/pl.po b/addons/google_base_account/i18n/pl.po index 78017d89076..db18b667fa2 100644 --- a/addons/google_base_account/i18n/pl.po +++ b/addons/google_base_account/i18n/pl.po @@ -14,66 +14,66 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 msgid "Username" -msgstr "" +msgstr "Nazwa użytkownika" #. module: google_base_account #: model:ir.actions.act_window,name:google_base_account.act_google_login_form msgid "Google Login" -msgstr "" +msgstr "Login Google" #. module: google_base_account #: code:addons/google_base_account/wizard/google_login.py:29 #, python-format msgid "Google Contacts Import Error!" -msgstr "" +msgstr "Błąd importowania kontaktów Google!" #. module: google_base_account #: model:ir.model,name:google_base_account.model_res_users msgid "Users" -msgstr "" +msgstr "Użytkownicy" #. module: google_base_account #: view:google.login:0 msgid "or" -msgstr "" +msgstr "lub" #. module: google_base_account #: view:google.login:0 msgid "Google login" -msgstr "" +msgstr "Login Google" #. module: google_base_account #: field:google.login,password:0 msgid "Google Password" -msgstr "" +msgstr "Hasło Google" #. module: google_base_account #: code:addons/google_base_account/wizard/google_login.py:77 #, python-format msgid "Error!" -msgstr "" +msgstr "Błąd!" #. module: google_base_account #: view:res.users:0 msgid "Google Account" -msgstr "" +msgstr "Konto Google" #. module: google_base_account #: view:res.users:0 msgid "Synchronization" -msgstr "" +msgstr "Synchronizacja" #. module: google_base_account #: code:addons/google_base_account/wizard/google_login.py:77 #, python-format msgid "Authentication failed. Check the user and password." -msgstr "" +msgstr "Niepowodzenie uwierzytelnienia. Sprawdź nazwę użytkownika i hasło." #. module: google_base_account #: code:addons/google_base_account/wizard/google_login.py:29 @@ -88,22 +88,22 @@ msgstr "" #. module: google_base_account #: model:ir.model,name:google_base_account.model_google_login msgid "Google Contact" -msgstr "" +msgstr "Kontakty Google" #. module: google_base_account #: view:google.login:0 msgid "Cancel" -msgstr "" +msgstr "Anuluj" #. module: google_base_account #: field:google.login,user:0 msgid "Google Username" -msgstr "" +msgstr "Nazwa użytkownika Google" #. module: google_base_account #: field:res.users,gmail_password:0 msgid "Password" -msgstr "" +msgstr "Hasło" #. module: google_base_account #: view:google.login:0 diff --git a/addons/google_base_account/i18n/pt.po b/addons/google_base_account/i18n/pt.po index 351cfeda325..1f785ef2780 100644 --- a/addons/google_base_account/i18n/pt.po +++ b/addons/google_base_account/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/pt_BR.po b/addons/google_base_account/i18n/pt_BR.po index 741bbc397f7..44628a8a772 100644 --- a/addons/google_base_account/i18n/pt_BR.po +++ b/addons/google_base_account/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-07 22:43+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\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-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ro.po b/addons/google_base_account/i18n/ro.po index e274c98b78e..329258faf81 100644 --- a/addons/google_base_account/i18n/ro.po +++ b/addons/google_base_account/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ru.po b/addons/google_base_account/i18n/ru.po index b38814ce81a..83967c8862d 100644 --- a/addons/google_base_account/i18n/ru.po +++ b/addons/google_base_account/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sl.po b/addons/google_base_account/i18n/sl.po index 69111f76dd2..70bea2469df 100644 --- a/addons/google_base_account/i18n/sl.po +++ b/addons/google_base_account/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sr@latin.po b/addons/google_base_account/i18n/sr@latin.po index 0efeb8bee20..8c689bf8edb 100644 --- a/addons/google_base_account/i18n/sr@latin.po +++ b/addons/google_base_account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sv.po b/addons/google_base_account/i18n/sv.po index 205857b5eb3..8f54ec66b4e 100644 --- a/addons/google_base_account/i18n/sv.po +++ b/addons/google_base_account/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/tr.po b/addons/google_base_account/i18n/tr.po index 12dd16bcf75..5bbcdb12743 100644 --- a/addons/google_base_account/i18n/tr.po +++ b/addons/google_base_account/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/zh_CN.po b/addons/google_base_account/i18n/zh_CN.po index 98c5dc08758..d6ef0d7bd47 100644 --- a/addons/google_base_account/i18n/zh_CN.po +++ b/addons/google_base_account/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:35+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:39+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_calendar/__init__.py b/addons/google_calendar/__init__.py new file mode 100644 index 00000000000..addb295d7c1 --- /dev/null +++ b/addons/google_calendar/__init__.py @@ -0,0 +1,3 @@ +import res_config +import google_calendar +import controllers diff --git a/addons/google_calendar/__openerp__.py b/addons/google_calendar/__openerp__.py new file mode 100644 index 00000000000..9f2bd1256e7 --- /dev/null +++ b/addons/google_calendar/__openerp__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# 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 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': 'Google Calendar', + 'version': '1.0', + 'category': 'Tools', + 'description': """ +The module adds the possibility to synchronize Google Calendar with OpenERP +======================================== +""", + 'author': 'OpenERP SA', + 'website': 'http://www.openerp.com', + 'depends': ['google_account','calendar'], + 'css': ['static/src/css/*.css'], + 'js': ['static/src/js/*.js'], + 'qweb': ['static/src/xml/*.xml'], + 'data': [ + 'res_config_view.xml', + 'security/ir.model.access.csv', + ], + 'demo': [], + 'installable': True, + 'auto_install': False, +} + diff --git a/addons/google_calendar/controllers/__init__.py b/addons/google_calendar/controllers/__init__.py new file mode 100644 index 00000000000..8ee9bae18d9 --- /dev/null +++ b/addons/google_calendar/controllers/__init__.py @@ -0,0 +1 @@ +import main diff --git a/addons/google_calendar/controllers/main.py b/addons/google_calendar/controllers/main.py new file mode 100644 index 00000000000..49083a79bfc --- /dev/null +++ b/addons/google_calendar/controllers/main.py @@ -0,0 +1,51 @@ +import simplejson +import urllib +import openerp +import openerp.addons.web.http as http +from openerp.addons.web.http import request +import openerp.addons.web.controllers.main as webmain +from openerp.addons.web.http import SessionExpiredException +from werkzeug.exceptions import BadRequest +import werkzeug.utils + +class google_calendar_controller(http.Controller): + + @http.route('/google_calendar/sync_data', type='json', auth='user') + def sync_data(self, arch, fields, model,**kw): + """ + This route/function is called when we want to synchronize openERP calendar with Google Calendar + Function return a dictionary with the status : need_config_from_admin, need_auth, need_refresh, success if not calendar_event + The dictionary may contains an url, to allow OpenERP Client to redirect user on this URL for authorization for example + """ + + if model == 'calendar.event': + gs_obj = request.registry['google.service'] + gc_obj = request.registry['google.calendar'] + + # Checking that admin have already configured Google API for google synchronization ! + client_id = gs_obj.get_client_id(request.cr, request.uid,'calendar',context=kw.get('local_context')) + + if not client_id or client_id == '': + action = '' + if gc_obj.can_authorize_google(request.cr,request.uid): + dummy, action = request.registry.get('ir.model.data').get_object_reference(request.cr, request.uid, 'google_calendar', 'action_config_settings_google_calendar') + + return { + "status" : "need_config_from_admin", + "url" : '', + "action" : action + } + + # Checking that user have already accepted OpenERP to access his calendar ! + if gc_obj.need_authorize(request.cr, request.uid,context=kw.get('local_context')): + url = gc_obj.authorize_google_uri(request.cr, request.uid, from_url=kw.get('fromurl'), context=kw.get('local_context')) + return { + "status" : "need_auth", + "url" : url + } + + # If App authorized, and user access accepted, We launch the synchronization + return gc_obj.synchronize_events(request.cr, request.uid, [], kw.get('local_context')) + + return { "status" : "success" } + diff --git a/addons/google_calendar/google_calendar.py b/addons/google_calendar/google_calendar.py new file mode 100644 index 00000000000..a47fd4637ee --- /dev/null +++ b/addons/google_calendar/google_calendar.py @@ -0,0 +1,724 @@ +############################################################################## +# +# OpenERP, Open Source Management Solution +# 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 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 operator +import simplejson +import re +import urllib +import warnings + +from openerp import tools +from openerp import SUPERUSER_ID +from openerp.tools.translate import _ + +from openerp.addons.web.http import request +import werkzeug.utils + +from datetime import datetime, timedelta, date +from dateutil import parser +import pytz +from openerp.osv import fields, osv +from openerp.osv import osv + + +class google_calendar(osv.AbstractModel): + STR_SERVICE = 'calendar' + _name = 'google.%s' % STR_SERVICE + + def generate_data(self, cr, uid, event, context=None): + if event.allday: + start_date = fields.datetime.context_timestamp(cr, uid, datetime.strptime(event.date, tools.DEFAULT_SERVER_DATETIME_FORMAT) , context=context).isoformat('T').split('T')[0] + end_date = fields.datetime.context_timestamp(cr, uid, datetime.strptime(event.date, tools.DEFAULT_SERVER_DATETIME_FORMAT) + timedelta(hours=event.duration), context=context).isoformat('T').split('T')[0] + type = 'date' + else: + start_date = fields.datetime.context_timestamp(cr, uid, datetime.strptime(event.date, tools.DEFAULT_SERVER_DATETIME_FORMAT), context=context).isoformat('T') + end_date = fields.datetime.context_timestamp(cr, uid, datetime.strptime(event.date_deadline, tools.DEFAULT_SERVER_DATETIME_FORMAT), context=context).isoformat('T') + type = 'dateTime' + attendee_list = [] + + for attendee in event.attendee_ids: + attendee_list.append({ + 'email':attendee.email or 'NoEmail@mail.com', + 'displayName':attendee.partner_id.name, + 'responseStatus':attendee.state or 'needsAction', + }) + data = { + "summary": event.name or '', + "description": event.description or '', + "start":{ + type:start_date, + 'timeZone':'UTC' + }, + "end":{ + type:end_date, + 'timeZone':'UTC' + }, + "attendees":attendee_list, + "location":event.location or '', + "visibility":event['class'] or 'public', + } + if event.recurrency and event.rrule: + data["recurrence"]=["RRULE:"+event.rrule] + + if not event.active: + data["state"] = "cancelled" + + return data + + def create_an_event(self, cr, uid,event, context=None): + gs_pool = self.pool.get('google.service') + + data = self.generate_data(cr, uid,event, context=context) + + url = "/calendar/v3/calendars/%s/events?fields=%s&access_token=%s" % ('primary',urllib.quote('id,updated'),self.get_token(cr,uid,context)) + headers = {'Content-type': 'application/json', 'Accept': 'text/plain'} + data_json = simplejson.dumps(data) + + return gs_pool._do_request(cr, uid, url, data_json, headers, type='POST', context=context) + + def delete_an_event(self, cr, uid,event_id, context=None): + gs_pool = self.pool.get('google.service') + + params = { + 'access_token' : self.get_token(cr,uid,context) + } + headers = {'Content-type': 'application/json', 'Accept': 'text/plain'} + url = "/calendar/v3/calendars/%s/events/%s" % ('primary',event_id) + + return gs_pool._do_request(cr, uid, url, params, headers, type='DELETE', context=context) + + def get_event_dict(self,cr,uid,token=False,nextPageToken=False,context=None): + if not token: + token = self.get_token(cr,uid,context) + + gs_pool = self.pool.get('google.service') + + params = { + 'fields': 'items,nextPageToken', + 'access_token' : token, + 'maxResults':1000 + } + headers = {'Content-type': 'application/json', 'Accept': 'text/plain'} + + url = "/calendar/v3/calendars/%s/events" % 'primary' + if nextPageToken: + params['pageToken'] = nextPageToken + + content = gs_pool._do_request(cr, uid, url, params, headers, type='GET', context=context) + + google_events_dict = {} + + for google_event in content['items']: + google_events_dict[google_event['id']] = google_event + + if content.get('nextPageToken', False): + google_events_dict.update(self.get_event_dict(cr,uid,token,content['nextPageToken'],context=context)) + return google_events_dict + + def update_to_google(self, cr, uid, oe_event, google_event, context): + calendar_event = self.pool['calendar.event'] + gs_pool = self.pool.get('google.service') + + url = "/calendar/v3/calendars/%s/events/%s?fields=%s&access_token=%s" % ('primary', google_event['id'],'id,updated', self.get_token(cr,uid,context)) + headers = {'Content-type': 'application/json', 'Accept': 'text/plain'} + data = self.generate_data(cr,uid ,oe_event, context) + data['sequence'] = google_event.get('sequence', 0) + data_json = simplejson.dumps(data) + + content = gs_pool._do_request(cr, uid, url, data_json, headers, type='PATCH', context=context) + + update_date = datetime.strptime(content['updated'],"%Y-%m-%dT%H:%M:%S.%fz") + calendar_event.write(cr, uid, [oe_event.id], {'oe_update_date':update_date}) + + if context['curr_attendee']: + self.pool.get('calendar.attendee').write(cr,uid,[context['curr_attendee']], {'oe_synchro_date':update_date},context) + + def update_an_event(self, cr, uid,event, context=None): + gs_pool = self.pool.get('google.service') + + data = self.generate_data(cr, uid,event, context=context) + + url = "/calendar/v3/calendars/%s/events/%s" % ('primary', event.google_internal_event_id) + headers = {} + data['access_token'] = self.get_token(cr,uid,context) + + response = gs_pool._do_request(cr, uid, url, data, headers, type='GET', context=context) + #TO_CHECK : , if http fail, no event, do DELETE ? + return response + + def update_recurrent_event_exclu(self, cr, uid,instance_id,event_ori_google_id,event_new, context=None): + gs_pool = self.pool.get('google.service') + + data = self.generate_data(cr, uid,event_new, context=context) + + data['recurringEventId'] = event_ori_google_id + data['originalStartTime'] = event_new.recurrent_id_date + + url = "/calendar/v3/calendars/%s/events/%s?access_token=%s" % ('primary', instance_id,self.get_token(cr,uid,context)) + headers = { 'Content-type': 'application/json'} + + data['sequence'] = self.get_sequence(cr, uid, instance_id, context) + + data_json = simplejson.dumps(data) + return gs_pool._do_request(cr, uid, url, data_json, headers, type='PUT', context=context) + + def update_from_google(self, cr, uid, event, single_event_dict, type, context): + if context is None: + context= [] + + calendar_event = self.pool['calendar.event'] + res_partner_obj = self.pool['res.partner'] + calendar_attendee_obj = self.pool['calendar.attendee'] + user_obj = self.pool.get('res.users') + myPartnerID = user_obj.browse(cr,uid,uid,context).partner_id.id + attendee_record = [] + partner_record = [(4,myPartnerID)] + result = {} + + if single_event_dict.get('attendees',False): + for google_attendee in single_event_dict['attendees']: + if type == "write": + for oe_attendee in event['attendee_ids']: + if oe_attendee.email == google_attendee['email']: + calendar_attendee_obj.write(cr, uid,[oe_attendee.id] ,{'state' : google_attendee['responseStatus']},context=context) + google_attendee['found'] = True + continue + + if google_attendee.get('found',False): + continue + attendee_id = res_partner_obj.search(cr, uid,[('email', '=', google_attendee['email'])], context=context) + if not attendee_id: + attendee_id = [res_partner_obj.create(cr, uid,{'email': google_attendee['email'],'Customer': False, 'name': google_attendee.get("displayName",False) or google_attendee['email'] }, context=context)] + attendee = res_partner_obj.read(cr, uid, attendee_id[0], ['email'], context=context) + partner_record.append((4, attendee.get('id'))) + attendee['partner_id'] = attendee.pop('id') + attendee['state'] = google_attendee['responseStatus'] + attendee_record.append((0, 0, attendee)) + UTC = pytz.timezone('UTC') + if single_event_dict.get('start') and single_event_dict.get('end'): # If not cancelled + if single_event_dict['start'].get('dateTime',False) and single_event_dict['end'].get('dateTime',False): + date = parser.parse(single_event_dict['start']['dateTime']) + date_deadline = parser.parse(single_event_dict['end']['dateTime']) + delta = date_deadline.astimezone(UTC) - date.astimezone(UTC) + date = str(date.astimezone(UTC))[:-6] + date_deadline = str(date_deadline.astimezone(UTC))[:-6] + allday = False + else: + date = (single_event_dict['start']['date'] + ' 00:00:00') + date_deadline = (single_event_dict['end']['date'] + ' 00:00:00') + d_start = datetime.strptime(date, "%Y-%m-%d %H:%M:%S") + d_end = datetime.strptime(date_deadline, "%Y-%m-%d %H:%M:%S") + delta = (d_end - d_start) + allday = True + + result['duration'] = (delta.seconds / 60) / 60.0 + delta.days *24 + update_date = datetime.strptime(single_event_dict['updated'],"%Y-%m-%dT%H:%M:%S.%fz") + result.update({ + 'date': date, + 'date_deadline': date_deadline, + 'allday': allday + }) + result.update({ + 'attendee_ids': attendee_record, + 'partner_ids': list(set(partner_record)), + + 'name': single_event_dict.get('summary','Event'), + 'description': single_event_dict.get('description',False), + 'location':single_event_dict.get('location',False), + 'class':single_event_dict.get('visibility','public'), + 'oe_update_date':update_date, +# 'google_internal_event_id': single_event_dict.get('id',False), + }) + + if single_event_dict.get("recurrence",False): + rrule = [rule for rule in single_event_dict["recurrence"] if rule.startswith("RRULE:")][0][6:] + result['rrule']=rrule + + if type == "write": + res = calendar_event.write(cr, uid, event['id'], result, context=context) + elif type == "copy": + result['recurrence'] = True + res = calendar_event.write(cr, uid, [event['id']], result, context=context) + + elif type == "create": + res = calendar_event.create(cr, uid, result, context=context) + + if context['curr_attendee']: + self.pool.get('calendar.attendee').write(cr,uid,[context['curr_attendee']], {'oe_synchro_date':update_date,'google_internal_event_id': single_event_dict.get('id',False)},context) + return res + + def synchronize_events(self, cr, uid, ids, context=None): + gc_obj = self.pool.get('google.calendar') + + self.create_new_events(cr, uid, context=context) + + self.bind_recurring_events_to_google(cr, uid, context) + cr.commit() + + res = self.update_events(cr, uid, context) + + return { + "status" : res and "need_refresh" or "no_new_event_form_google", + "url" : '' + } + + def create_new_events(self, cr, uid, context): + gc_pool = self.pool.get('google.calendar') + + calendar_event = self.pool['calendar.event'] + att_obj = self.pool['calendar.attendee'] + user_obj = self.pool['res.users'] + myPartnerID = user_obj.browse(cr,uid,uid,context=context).partner_id.id + + context_norecurrent = context.copy() + context_norecurrent['virtual_id'] = False + + my_att_ids = att_obj.search(cr, uid,[('partner_id', '=', myPartnerID),('google_internal_event_id', '=', False)], context=context_norecurrent) + for att in att_obj.browse(cr,uid,my_att_ids,context=context): + if not att.event_id.recurrent_id or att.event_id.recurrent_id == 0: + response = self.create_an_event(cr,uid,att.event_id,context=context) + update_date = datetime.strptime(response['updated'],"%Y-%m-%dT%H:%M:%S.%fz") + calendar_event.write(cr, uid, att.event_id.id, {'oe_update_date':update_date}) + att_obj.write(cr, uid, [att.id], {'google_internal_event_id': response['id'], 'oe_synchro_date':update_date}) + cr.commit() + return True + + def get_empty_synchro_summarize(self) : + return { + #OPENERP + 'OE_event' : False, + 'OE_found' : False, + 'OE_event_id' : False, + 'OE_isRecurrence':False, + 'OE_isInstance':False, + 'OE_update':False, + 'OE_status':False, + 'OE_attendee_id': False, + 'OE_synchro':False, + + #GOOGLE + 'GG_event' : False, + 'GG_found' : False, + 'GG_isRecurrence':False, + 'GG_isInstance':False, + 'GG_update':False, + 'GG_status':False, + + #TO_DO_IN_GOOGLE + 'td_action':'', # create, update, delete, None + #If 'td_action' in (create , update), + # If td_source == OE + # We create in google the event based on OpenERP + # If td_source == GG + # We create in OpenERP the event based on Gmail + # + #If 'td_action' in (delete), + # If td_source == OE + # We delete in OpenERP the event + # If td_source == GG + # We delete in Gmail the event + # If td_source == ALL + # We delete in openERP AND in Gmail the event + 'td_source': '', # OE, GG, ALL + 'td_comment':'' + + } + + def update_events(self, cr, uid, context): + if context is None: + context = {} + + calendar_event = self.pool['calendar.event'] + user_obj = self.pool['res.users'] + att_obj = self.pool['calendar.attendee'] + myPartnerID = user_obj.browse(cr,uid,uid,context=context).partner_id.id + + context_novirtual = context.copy() + context_novirtual['virtual_id'] = False + context_novirtual['active_test'] = False + + all_event_from_google = self.get_event_dict(cr,uid,context=context) + all_new_event_from_google = all_event_from_google.copy() + + # Select all events from OpenERP which have been already synchronized in gmail + my_att_ids = att_obj.search(cr, uid,[('partner_id', '=', myPartnerID),('google_internal_event_id', '!=', False)], context=context_novirtual) + event_to_synchronize = {} + for att in att_obj.browse(cr,uid,my_att_ids,context=context): + event = att.event_id + + base_event_id = att.google_internal_event_id.split('_')[0] + + if base_event_id not in event_to_synchronize: + event_to_synchronize[base_event_id] = {} + + if att.google_internal_event_id not in event_to_synchronize[base_event_id]: + event_to_synchronize[base_event_id][att.google_internal_event_id] = self.get_empty_synchro_summarize() + + event_to_synchronize[base_event_id][att.google_internal_event_id]['OE_attendee_id'] = att.id + event_to_synchronize[base_event_id][att.google_internal_event_id]['OE_event'] = event + event_to_synchronize[base_event_id][att.google_internal_event_id]['OE_found'] = True + event_to_synchronize[base_event_id][att.google_internal_event_id]['OE_event_id'] = event.id + event_to_synchronize[base_event_id][att.google_internal_event_id]['OE_isRecurrence'] = event.recurrency + event_to_synchronize[base_event_id][att.google_internal_event_id]['OE_isInstance'] = bool(event.recurrent_id and event.recurrent_id > 0) + event_to_synchronize[base_event_id][att.google_internal_event_id]['OE_update'] = event.oe_update_date + event_to_synchronize[base_event_id][att.google_internal_event_id]['OE_status'] = event.active + event_to_synchronize[base_event_id][att.google_internal_event_id]['OE_synchro'] = att.oe_synchro_date + + + for event in all_event_from_google.values(): + event_id = event.get('id') + base_event_id = event_id.split('_')[0] + + if base_event_id not in event_to_synchronize: + event_to_synchronize[base_event_id] = {} + + if event_id not in event_to_synchronize[base_event_id]: + event_to_synchronize[base_event_id][event_id] = self.get_empty_synchro_summarize() + + event_to_synchronize[base_event_id][event_id]['GG_event'] = event + event_to_synchronize[base_event_id][event_id]['GG_found'] = True + event_to_synchronize[base_event_id][event_id]['GG_isRecurrence'] = bool(event.get('recurrence','')) + event_to_synchronize[base_event_id][event_id]['GG_isInstance'] = bool(event.get('recurringEventId',0)) + event_to_synchronize[base_event_id][event_id]['GG_update'] = event.get('updated',None) # if deleted, no date without browse event + if event_to_synchronize[base_event_id][event_id]['GG_update']: + event_to_synchronize[base_event_id][event_id]['GG_update'] =event_to_synchronize[base_event_id][event_id]['GG_update'].replace('T',' ').replace('Z','') + event_to_synchronize[base_event_id][event_id]['GG_status'] = (event.get('status') != 'cancelled') + + + ###################### + # PRE-PROCESSING # + ###################### + + for base_event in event_to_synchronize: + for current_event in event_to_synchronize[base_event]: + event = event_to_synchronize[base_event][current_event] + + #If event are already in Gmail and in OpenERP + if event['OE_found'] and event['GG_found']: + #If the event has been deleted from one side, we delete on other side ! + if event['OE_status'] != event['GG_status']: + event['td_action'] = "DELETE" + event['td_source'] = (event['OE_status'] and "OE") or (event['GG_status'] and "GG") + #If event is not deleted ! + elif event['OE_status'] and event['GG_status']: + if event['OE_update'].split('.')[0] != event['GG_update'].split('.')[0]: + if event['OE_update'] < event['GG_update']: + event['td_source'] = 'GG' + elif event['OE_update'] > event['GG_update']: + event['td_source'] = 'OE' + + + if event['td_action'] != "None": + if event['%s_isRecurrence' % event['td_source']]: + if event['%s_status' % event['td_source']]: + event['td_action'] = "UPDATE" + event['td_comment'] = 'Only need to update, because i\'m active' + else: + event['td_action'] = "EXCLUDE" + event['td_comment'] = 'Need to Exclude (Me = First event from recurrence) from recurrence' + + elif event['%s_isInstance' % event['td_source']]: + event['td_action'] = "UPDATE" + event['td_comment'] = 'Only need to update, because already an exclu' + else: + event['td_action'] = "UPDATE" + event['td_comment'] = 'Simply Update... I\'m a single event' + + else: + if not event['OE_synchro'] or event['OE_synchro'].split('.')[0] < event['OE_update'].split('.')[0]: + event['td_source'] = 'OE' + event['td_action'] = "UPDATE" + event['td_comment'] = 'Event already updated by another user, but not synchro with my google calendar' + + else: + event['td_action'] = "None" + event['td_comment'] = 'Not update needed' + else: + event['td_action'] = "None" + event['td_comment'] = "Both are already deleted" + # New in openERP... Create on create_events of synchronize function + elif event['OE_found'] and not event['GG_found']: + #Has been deleted from gmail + if event['OE_status']: + event['td_source'] = 'OE' + event['td_action'] = 'DELETE' + event['td_comment'] = 'Removed from GOOGLE ?' + else: + event['td_action'] = "None" + event['td_comment'] = "Already Deleted in gmail and unlinked in OpenERP" + elif event['GG_found'] and not event['OE_found']: + event['td_source'] = 'GG' + if not event['GG_status'] and not event['GG_isInstance']: + # don't need to make something... because event has been created and deleted before the synchronization + event['td_action'] = 'None' + event['td_comment'] = 'Nothing to do... Create and Delete directly' + + else: + if event['GG_isInstance']: + if event['%s_status' % event['td_source']]: + event['td_action'] = "EXCLUDE" + event['td_comment'] = 'Need to create the new exclu' + else: + event['td_action'] = "EXCLUDE" + event['td_comment'] = 'Need to copy and Exclude' + else: + event['td_action'] = "CREATE" + event['td_comment'] = 'New EVENT CREATE from GMAIL' + + ###################### + # DO ACTION # + ###################### + for base_event in event_to_synchronize: + event_to_synchronize[base_event] = sorted(event_to_synchronize[base_event].iteritems(),key=operator.itemgetter(0)) + for current_event in event_to_synchronize[base_event]: + cr.commit() + event = current_event[1] + ############# + ### DEBUG ### + ############# +# if event['td_action'] and event['td_action'] != 'None': +# print " Real Event %s (%s)" % (current_event[0],event['OE_event_id']) +# print " Found OE:%5s vs GG: %5s" % (event['OE_found'],event['GG_found']) +# print " Recurrence OE:%5s vs GG: %5s" % (event['OE_isRecurrence'],event['GG_isRecurrence']) +# print " Instance OE:%5s vs GG: %5s" % (event['OE_isInstance'],event['GG_isInstance']) +# print " Synchro OE: %10s " % (event['OE_synchro']) +# print " Update OE: %10s " % (event['OE_update']) +# print " Update GG: %10s " % (event['GG_update']) +# print " Status OE:%5s vs GG: %5s" % (event['OE_status'],event['GG_status']) +# print " Action %s" % (event['td_action']) +# print " Source %s" % (event['td_source']) +# print " comment %s" % (event['td_comment']) + + context['curr_attendee'] = event.get('OE_attendee_id',False) + + actToDo = event['td_action'] + actSrc = event['td_source'] + if not actToDo: + raise ("#!? WHAT I NEED TO DO ????") + else: + if actToDo == 'None': + continue + elif actToDo == 'CREATE': + context_tmp = context.copy() + context_tmp['NewMeeting'] = True + if actSrc == 'GG': + res = self.update_from_google(cr, uid, False, event['GG_event'], "create", context=context_tmp) + event['OE_event_id'] = res + meeting = calendar_event.browse(cr,uid,res,context=context) + attendee_record_id = att_obj.search(cr, uid, [('partner_id','=', myPartnerID), ('event_id','=',res)], context=context) + self.pool.get('calendar.attendee').write(cr,uid,attendee_record_id, {'oe_synchro_date':meeting.oe_update_date,'google_internal_event_id': event['GG_event']['id']},context=context_tmp) + elif actSrc == 'OE': + raise "Should be never here, creation for OE is done before update !" + #TODO Add to batch + elif actToDo == 'UPDATE': + if actSrc == 'GG': + self.update_from_google(cr, uid, event['OE_event'], event['GG_event'], 'write', context) + elif actSrc == 'OE': + self.update_to_google(cr, uid, event['OE_event'], event['GG_event'], context) + elif actToDo == 'EXCLUDE' : + if actSrc == 'OE': + self.delete_an_event(cr,uid,current_event[0],context=context) + elif actSrc == 'GG': + new_google_event_id = event['GG_event']['id'].split('_')[1] + if 'T' in new_google_event_id: + new_google_event_id = new_google_event_id.replace('T','')[:-1] + else: + new_google_event_id = new_google_event_id + "000000" + + if event['GG_status']: + parent_event = {} + parent_event['id'] = "%s-%s" % (event_to_synchronize[base_event][0][1].get('OE_event_id') , new_google_event_id) + res = self.update_from_google(cr, uid, parent_event, event['GG_event'], "copy", context) + else: + if event_to_synchronize[base_event][0][1].get('OE_event_id'): + parent_oe_id = event_to_synchronize[base_event][0][1].get('OE_event_id') + calendar_event.unlink(cr,uid,"%s-%s" % (parent_oe_id,new_google_event_id),unlink_level=1,context=context) + + elif actToDo == 'DELETE': + if actSrc == 'GG': + self.delete_an_event(cr,uid,current_event[0],context=context) + elif actSrc == 'OE': + calendar_event.unlink(cr,uid,event['OE_event_id'],unlink_level=0,context=context) + return True + + def bind_recurring_events_to_google(self, cr, uid, context): + calendar_event = self.pool['calendar.event'] + att_obj = self.pool.get('calendar.attendee') + user_obj = self.pool['res.users'] + myPartnerID = user_obj.browse(cr,uid,uid,context=context).partner_id.id + + context_norecurrent = context.copy() + context_norecurrent['virtual_id'] = False + context_norecurrent['active_test'] = False + + my_att_ids = att_obj.search(cr, uid,[('partner_id', '=', myPartnerID),('google_internal_event_id', '=', False)], context=context_norecurrent) + for att in att_obj.browse(cr,uid,my_att_ids,context=context): + if att.event_id.recurrent_id and att.event_id.recurrent_id > 0: + new_google_internal_event_id = False + source_event_record = calendar_event.browse(cr, uid, att.event_id.recurrent_id, context) + source_attendee_record_id = att_obj.search(cr, uid, [('partner_id','=', myPartnerID), ('event_id','=',source_event_record.id)], context=context) + source_attendee_record = att_obj.browse(cr, uid, source_attendee_record_id, context) + if source_attendee_record: + source_attendee_record = source_attendee_record[0] + + if att.event_id.recurrent_id_date and source_event_record.allday and source_attendee_record.google_internal_event_id: + new_google_internal_event_id = source_attendee_record.google_internal_event_id +'_'+ att.event_id.recurrent_id_date.split(' ')[0].replace('-','') + elif event.recurrent_id_date and source_attendee_record.google_internal_event_id: + new_google_internal_event_id = source_attendee_record.google_internal_event_id +'_'+ att.event_id.recurrent_id_date.replace('-','').replace(' ','T').replace(':','') + 'Z' + + if new_google_internal_event_id: + #TODO WARNING, NEED TO CHECK THAT EVENT and ALL instance NOT DELETE IN GMAIL BEFORE ! + res = self.update_recurrent_event_exclu(cr,uid,new_google_internal_event_id,source_attendee_record.google_internal_event_id,att.event_id,context=context) + att_obj.write(cr, uid, [att.event_id.id], {'google_internal_event_id': new_google_internal_event_id}) + + def check_and_sync(self, cr, uid, oe_event, google_event, context): + if datetime.strptime(oe_event.oe_update_date,"%Y-%m-%d %H:%M:%S.%f") > datetime.strptime(google_event['updated'],"%Y-%m-%dT%H:%M:%S.%fz"): + self.update_to_google(cr, uid, oe_event, google_event, context) + elif datetime.strptime(oe_event.oe_update_date,"%Y-%m-%d %H:%M:%S.%f") < datetime.strptime(google_event['updated'],"%Y-%m-%dT%H:%M:%S.%fz"): + self.update_from_google(cr, uid, oe_event, google_event, 'write', context) + + def get_sequence(self,cr,uid,instance_id,context=None): + gs_pool = self.pool.get('google.service') + + params = { + 'fields': 'sequence', + 'access_token' : self.get_token(cr,uid,context) + } + + headers = {'Content-type': 'application/json'} + + url = "/calendar/v3/calendars/%s/events/%s" % ('primary',instance_id) + + content = gs_pool._do_request(cr, uid, url, params, headers, type='GET', context=context) + return content.get('sequence',0) +################################# +## MANAGE CONNEXION TO GMAIL ## +################################# + + def get_token(self,cr,uid,context=None): + current_user = self.pool.get('res.users').browse(cr,uid,uid,context=context) + + if datetime.strptime(current_user.google_calendar_token_validity.split('.')[0], "%Y-%m-%d %H:%M:%S") < (datetime.now() + timedelta(minutes=1)): + self.do_refresh_token(cr,uid,context=context) + current_user.refresh() + + return current_user.google_calendar_token + + def do_refresh_token(self,cr,uid,context=None): + current_user = self.pool.get('res.users').browse(cr,uid,uid,context=context) + gs_pool = self.pool.get('google.service') + + refresh = current_user.google_calendar_rtoken + all_token = gs_pool._refresh_google_token_json(cr, uid, current_user.google_calendar_rtoken,self.STR_SERVICE,context=context) + + vals = {} + vals['google_%s_token_validity' % self.STR_SERVICE] = datetime.now() + timedelta(seconds=all_token.get('expires_in')) + vals['google_%s_token' % self.STR_SERVICE] = all_token.get('access_token') + + self.pool.get('res.users').write(cr,SUPERUSER_ID,uid,vals,context=context) + + def need_authorize(self,cr,uid,context=None): + current_user = self.pool.get('res.users').browse(cr,uid,uid,context=context) + return current_user.google_calendar_rtoken == False + + def get_calendar_scope(self,RO=False): + readonly = RO and '.readonly' or '' + return 'https://www.googleapis.com/auth/calendar%s' % (readonly) + + def authorize_google_uri(self,cr,uid,from_url='http://www.openerp.com',context=None): + url = self.pool.get('google.service')._get_authorize_uri(cr,uid,from_url,self.STR_SERVICE,scope=self.get_calendar_scope(),context=context) + return url + + def can_authorize_google(self,cr,uid,context=None): + return self.pool['res.users'].has_group(cr, uid, 'base.group_erp_manager') + + def set_all_tokens(self,cr,uid,authorization_code,context=None): + gs_pool = self.pool.get('google.service') + all_token = gs_pool._get_google_token_json(cr, uid, authorization_code,self.STR_SERVICE,context=context) + + vals = {} + vals['google_%s_rtoken' % self.STR_SERVICE] = all_token.get('refresh_token') + vals['google_%s_token_validity' % self.STR_SERVICE] = datetime.now() + timedelta(seconds=all_token.get('expires_in')) + vals['google_%s_token' % self.STR_SERVICE] = all_token.get('access_token') + self.pool.get('res.users').write(cr,SUPERUSER_ID,uid,vals,context=context) + + +class res_users(osv.Model): + _inherit = 'res.users' + + _columns = { + 'google_calendar_rtoken': fields.char('Refresh Token'), + 'google_calendar_token': fields.char('User token'), + 'google_calendar_token_validity': fields.datetime('Token Validity'), + } + + +class calendar_event(osv.Model): + _inherit = "calendar.event" + + def write(self, cr, uid, ids, vals, context=None): + if context is None: + context= {} + sync_fields = set(['name', 'description', 'date', 'date_closed', 'date_deadline', 'attendee_ids', 'location', 'class']) + if (set(vals.keys()) & sync_fields) and 'oe_update_date' not in vals.keys() and 'NewMeeting' not in context: + vals['oe_update_date'] = datetime.now() + + return super(calendar_event, self).write(cr, uid, ids, vals, context=context) + + def copy(self, cr, uid, id, default=None, context=None): + default = default or {} + default['attendee_ids'] = False + if default.get('write_type', False): + del default['write_type'] + elif default.get('recurrent_id', False): + default['oe_update_date'] = datetime.now() + else: + default['oe_update_date'] = False + return super(calendar_event, self).copy(cr, uid, id, default, context) + + _columns = { + 'oe_update_date': fields.datetime('OpenERP Update Date'), + } + + +class calendar_attendee(osv.Model): + _inherit = 'calendar.attendee' + + _columns = { + 'google_internal_event_id': fields.char('Google Calendar Event Id', size=256), + 'oe_synchro_date': fields.datetime('OpenERP Synchro Date'), + } + + _sql_constraints = [('google_id_uniq','unique(google_internal_event_id,partner_id,event_id)', 'Google ID should be unique!')] + + def write(self, cr, uid, ids, vals, context=None): + if context is None: + context = {} + + for id in ids: + ref = vals.get('event_id',self.browse(cr,uid,id,context=context).event_id.id) + + # If attendees are updated, we need to specify that next synchro need an action + # Except if it come from an update_from_google + if not context.get('curr_attendee', False) and not context.get('NewMeeting', False): + self.pool.get('calendar.event').write(cr, uid, ref, {'oe_update_date':datetime.now()},context) + + return super(calendar_attendee, self).write(cr, uid, ids, vals, context=context) + diff --git a/addons/google_calendar/res_config.py b/addons/google_calendar/res_config.py new file mode 100644 index 00000000000..4e62b0b6a81 --- /dev/null +++ b/addons/google_calendar/res_config.py @@ -0,0 +1,31 @@ +from openerp.osv import fields, osv + +class calendar_config_settings(osv.TransientModel): + _inherit = 'base.config.settings' + + _columns = { + 'google_cal_sync': fields.boolean("Show tutorial to know how to get my 'Client ID' and my 'Client Secret'"), + 'cal_client_id': fields.char("Client_id"), + 'cal_client_secret': fields.char("Client_key"), + 'server_uri': fields.char('URI for tuto') + } + + def set_calset(self,cr,uid,ids,context=None) : + params = self.pool['ir.config_parameter'] + myself = self.browse(cr,uid,ids[0],context=context) + params.set_param(cr, uid, 'google_calendar_client_id', myself.cal_client_id, context=None) + params.set_param(cr, uid, 'google_calendar_client_secret', myself.cal_client_secret, context=None) + + + def get_default_all(self,cr,uid,ids,context=None): + params = self.pool.get('ir.config_parameter') + + cal_client_id = params.get_param(cr, uid, 'google_calendar_client_id',default='',context=context) + cal_client_secret = params.get_param(cr, uid, 'google_calendar_client_secret',default='',context=context) + server_uri= "%s/google_account/authentication" % params.get_param(cr, uid, 'web.base.url',default="http://yourcompany.my.openerp.com",context=context) + return dict(cal_client_id=cal_client_id,cal_client_secret=cal_client_secret,server_uri=server_uri) + + + + + diff --git a/addons/google_calendar/res_config_view.xml b/addons/google_calendar/res_config_view.xml new file mode 100644 index 00000000000..ee52565b289 --- /dev/null +++ b/addons/google_calendar/res_config_view.xml @@ -0,0 +1,87 @@ + + + + + + Calendar_settings_grgrgrgt + base.config.settings + + +
+
+
+
+ + +
+
+
+ +
+
+
+
+ +
+
+
+ + + + API Configuration + ir.actions.act_window + base.config.settings + form + inline + + + + +
+
diff --git a/addons/google_calendar/security/ir.model.access.csv b/addons/google_calendar/security/ir.model.access.csv new file mode 100644 index 00000000000..e4a591d5616 --- /dev/null +++ b/addons/google_calendar/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_google_calendar_all,access_google_calendar_all,model_google_calendar,,1,0,0,0 +access_google_calendar,access_google_calendar,model_google_calendar,base.group_system,1,1,1,1 diff --git a/addons/google_calendar/static/description/an_event.png b/addons/google_calendar/static/description/an_event.png new file mode 100644 index 00000000000..8cffaf9ecc0 Binary files /dev/null and b/addons/google_calendar/static/description/an_event.png differ diff --git a/addons/google_calendar/static/description/calendar_in_action.png b/addons/google_calendar/static/description/calendar_in_action.png new file mode 100644 index 00000000000..e03c217b806 Binary files /dev/null and b/addons/google_calendar/static/description/calendar_in_action.png differ diff --git a/addons/google_calendar/static/description/coworker.png b/addons/google_calendar/static/description/coworker.png new file mode 100644 index 00000000000..e432095c044 Binary files /dev/null and b/addons/google_calendar/static/description/coworker.png differ diff --git a/addons/google_calendar/static/description/create_quick.png b/addons/google_calendar/static/description/create_quick.png new file mode 100644 index 00000000000..a877ed2dcba Binary files /dev/null and b/addons/google_calendar/static/description/create_quick.png differ diff --git a/addons/google_calendar/static/description/email.png b/addons/google_calendar/static/description/email.png new file mode 100644 index 00000000000..b7ea5a0d9f9 Binary files /dev/null and b/addons/google_calendar/static/description/email.png differ diff --git a/addons/google_calendar/static/description/icon.png b/addons/google_calendar/static/description/icon.png new file mode 100644 index 00000000000..581f1f5311b Binary files /dev/null and b/addons/google_calendar/static/description/icon.png differ diff --git a/addons/google_calendar/static/description/index.html b/addons/google_calendar/static/description/index.html new file mode 100644 index 00000000000..745b825b309 --- /dev/null +++ b/addons/google_calendar/static/description/index.html @@ -0,0 +1,116 @@ +
+
+

Google Calendar

+

Get your meetings, yours holidays, ... Get your calendar anywhere and never forget an event.

+
+ +
+
+
+ +
+
+

Keep an eye on your events

+
+

+ See easily the purpose of the meeting, the start time and also the attendee(s)... All that without click on anything... +

+
+
+ +
+
+
+ +
+
+

Create so easily an event

+
+ +
+
+

+ In just one click you can create an event...
+ You can drag and drop your event if you want moved it to another timing.
+ You can shrink or extend the event if you need to change the start's hours or the duration of your meeting. +

+
+
+
+ +
+
+

Create recurrent event

+
+

+ You can also create recurrent events with only one event.
+ You need to create an event each monday of the week ? With only one it's possible, you could specify the recurrence and if one of this event is moved, or deleted, it's not a problem, you can untie your event from the others recurrences. +

+
+
+ +
+ +
+
+ +
+
+

See all events you wants

+
+ +
+
+

+ See in your calendar, the event from others peoples where your are attendee, but also their events by simply adding your favorites coworkers.
+ Every coworker will have their own color in your calendar, and every attendee will have their avatar in the event...
+

+
+ +
+
+ +
+
+

Get an email

+
+

+ You will receive an email at creation of an event where you are attendee, but also when this event is updated for some fields as date start, ... +

+
+
+ +
+ +
+
+ +
+
+

Be notified

+
+ +
+
+

+ You can ask to have a alarm of type 'notification' in your Open ERP.
+ You will have a notification in you OpenERP which ever the page you are. +

+
+ +
+
+
+
+

Google Calendar

+
+

+ With the plugin Google_calendar, you can synchronize your OpenERP calendar with Google Calendar. +

+
+
+ +
+ +
+
diff --git a/addons/google_calendar/static/description/notification.png b/addons/google_calendar/static/description/notification.png new file mode 100644 index 00000000000..199d7868206 Binary files /dev/null and b/addons/google_calendar/static/description/notification.png differ diff --git a/addons/google_calendar/static/description/recurrent.png b/addons/google_calendar/static/description/recurrent.png new file mode 100644 index 00000000000..35b6609e15a Binary files /dev/null and b/addons/google_calendar/static/description/recurrent.png differ diff --git a/addons/google_calendar/static/description/the_calendar.png b/addons/google_calendar/static/description/the_calendar.png new file mode 100644 index 00000000000..87cd4c01545 Binary files /dev/null and b/addons/google_calendar/static/description/the_calendar.png differ diff --git a/addons/google_calendar/static/src/css/Makefile b/addons/google_calendar/static/src/css/Makefile new file mode 100755 index 00000000000..2071c694b4c --- /dev/null +++ b/addons/google_calendar/static/src/css/Makefile @@ -0,0 +1,4 @@ +google_calendar.css: google_calendar.sass + sass --trace -t expanded google_calendar.sass google_calendar.css + + \ No newline at end of file diff --git a/addons/google_calendar/static/src/css/google_calendar.css b/addons/google_calendar/static/src/css/google_calendar.css new file mode 100644 index 00000000000..06203243737 --- /dev/null +++ b/addons/google_calendar/static/src/css/google_calendar.css @@ -0,0 +1,10 @@ +@charset "utf-8"; +.openerp .oe_cal_sync_button { + margin: 20 0 20 0; +} + +img.calendar_img_tuto { + margin-left : 50px; + margin-bottom : 10px; + border: 2px solid grey; +} diff --git a/addons/google_calendar/static/src/css/google_calendar.sass b/addons/google_calendar/static/src/css/google_calendar.sass new file mode 100644 index 00000000000..8a07766e740 --- /dev/null +++ b/addons/google_calendar/static/src/css/google_calendar.sass @@ -0,0 +1,6 @@ +@charset "utf-8" + +.openerp + .oe_cal_sync_button + margin: 20 0 20 0 + text-align:center \ No newline at end of file diff --git a/addons/google_calendar/static/src/img/calendar_32.png b/addons/google_calendar/static/src/img/calendar_32.png new file mode 100644 index 00000000000..40dd085f4eb Binary files /dev/null and b/addons/google_calendar/static/src/img/calendar_32.png differ diff --git a/addons/google_calendar/static/src/img/setup_01.png b/addons/google_calendar/static/src/img/setup_01.png new file mode 100644 index 00000000000..0684df35e73 Binary files /dev/null and b/addons/google_calendar/static/src/img/setup_01.png differ diff --git a/addons/google_calendar/static/src/img/setup_02.png b/addons/google_calendar/static/src/img/setup_02.png new file mode 100644 index 00000000000..0aeeaa44a37 Binary files /dev/null and b/addons/google_calendar/static/src/img/setup_02.png differ diff --git a/addons/google_calendar/static/src/img/setup_03.png b/addons/google_calendar/static/src/img/setup_03.png new file mode 100644 index 00000000000..ad2fb61d3e9 Binary files /dev/null and b/addons/google_calendar/static/src/img/setup_03.png differ diff --git a/addons/google_calendar/static/src/img/setup_04.png b/addons/google_calendar/static/src/img/setup_04.png new file mode 100644 index 00000000000..61341c4b7d3 Binary files /dev/null and b/addons/google_calendar/static/src/img/setup_04.png differ diff --git a/addons/google_calendar/static/src/img/setup_05.png b/addons/google_calendar/static/src/img/setup_05.png new file mode 100644 index 00000000000..0401703b547 Binary files /dev/null and b/addons/google_calendar/static/src/img/setup_05.png differ diff --git a/addons/google_calendar/static/src/img/setup_06.png b/addons/google_calendar/static/src/img/setup_06.png new file mode 100644 index 00000000000..c8aa076da6d Binary files /dev/null and b/addons/google_calendar/static/src/img/setup_06.png differ diff --git a/addons/google_calendar/static/src/img/setup_07.png b/addons/google_calendar/static/src/img/setup_07.png new file mode 100644 index 00000000000..cd1b10edd02 Binary files /dev/null and b/addons/google_calendar/static/src/img/setup_07.png differ diff --git a/addons/google_calendar/static/src/img/setup_08.png b/addons/google_calendar/static/src/img/setup_08.png new file mode 100644 index 00000000000..c66cdbb2d9c Binary files /dev/null and b/addons/google_calendar/static/src/img/setup_08.png differ diff --git a/addons/google_calendar/static/src/img/setup_09.png b/addons/google_calendar/static/src/img/setup_09.png new file mode 100644 index 00000000000..e537775fc1c Binary files /dev/null and b/addons/google_calendar/static/src/img/setup_09.png differ diff --git a/addons/google_calendar/static/src/js/calendar_sync.js b/addons/google_calendar/static/src/js/calendar_sync.js new file mode 100644 index 00000000000..fdc4aeffb77 --- /dev/null +++ b/addons/google_calendar/static/src/js/calendar_sync.js @@ -0,0 +1,59 @@ +openerp.google_calendar = function(instance) { + var _t = instance.web._t, + _lt = instance.web._lt; + var QWeb = instance.web.qweb; + + instance.web_calendar.CalendarView.include({ + view_loading: function(r) { + var self = this; + this.$el.on('click', 'div.oe_cal_sync_button', function() { + self.sync_calendar(r); + }); + return this._super(r); + }, + sync_calendar: function(res,button) { + var self = this; + var context = instance.web.pyeval.eval('context'); + //$('div.oe_cal_sync_button').hide(); + $('div.oe_cal_sync_button').prop('disabled',true); + + self.rpc('/google_calendar/sync_data', { + arch: res.arch, + fields: res.fields, + model:res.model, + fromurl: window.location.href, + local_context:context + }).done(function(o) { + if (o.status == "need_auth") { + alert(_t("You will be redirected on gmail to authorize your OpenErp to access your calendar !")); + instance.web.redirect(o.url); + } + else if (o.status == "need_config_from_admin") { + + if (!_.isUndefined(o.action) && parseInt(o.action)) { + if (confirm(_t("An admin need to configure Google Synchronization before to use it, do you want to configure it now ? !"))) { + self.do_action(o.action); + } + } + else { + alert(_t("An admin need to configure Google Synchronization before to use it !")); + } + } + else if (o.status == "need_refresh"){ + self.$calendar.fullCalendar('refetchEvents'); + } + + }).always(function(o) { $('div.oe_cal_sync_button').prop('disabled',false); }); + } + }); + + instance.web_calendar.CalendarView.include({ + extraSideBar: function() { + this._super(); + if (this.dataset.model == "calendar.event") { + this.$el.find('.oe_calendar_filter').prepend(QWeb.render('GoogleCalendar.buttonSynchro')); + } + } + }); + +}; diff --git a/addons/google_calendar/static/src/xml/web_calendar.xml b/addons/google_calendar/static/src/xml/web_calendar.xml new file mode 100644 index 00000000000..b9a15c17fdc --- /dev/null +++ b/addons/google_calendar/static/src/xml/web_calendar.xml @@ -0,0 +1,14 @@ + \ No newline at end of file diff --git a/addons/google_drive/__openerp__.py b/addons/google_drive/__openerp__.py index 9e6c73d2649..8f135c5f9d1 100644 --- a/addons/google_drive/__openerp__.py +++ b/addons/google_drive/__openerp__.py @@ -39,7 +39,7 @@ 'demo': [ 'google_drive_demo.xml' ], - 'depends': ['base_setup', 'google_base_account'], + 'depends': ['base_setup', 'google_account'], 'description': """ Integrate google document to OpenERP record. ============================================ diff --git a/addons/google_drive/google_drive.py b/addons/google_drive/google_drive.py index b69c7ddd173..f3607094040 100644 --- a/addons/google_drive/google_drive.py +++ b/addons/google_drive/google_drive.py @@ -120,7 +120,7 @@ class config(osv.Model): res['url'] = content['alternateLink'] key = self._get_key_from_url(res['url']) request_url = "https://www.googleapis.com/drive/v2/files/%s/permissions?emailMessage=This+is+a+drive+file+created+by+OpenERP&sendNotificationEmails=false&access_token=%s" % (key, access_token) - data = {'role': 'reader', 'type': 'anyone', 'value': '', 'withLink': True} + data = {'role': 'writer', 'type': 'anyone', 'value': '', 'withLink': True} try: req = urllib2.Request(request_url, json.dumps(data), headers) urllib2.urlopen(req) @@ -133,7 +133,7 @@ class config(osv.Model): req = urllib2.Request(request_url, json.dumps(data), headers) urllib2.urlopen(req) except urllib2.HTTPError: - raise self.pool.get('res.config.settings').get_config_warning(cr, _("The permission 'writer' for your email '%s' has not been written on the document. Is this email a valid Google Account ?" % user.email), context=context) + pass return res def get_google_drive_config(self, cr, uid, res_model, res_id, context=None): diff --git a/addons/google_drive/i18n/ar.po b/addons/google_drive/i18n/ar.po index b37b44d1c5b..44fc332556f 100644 --- a/addons/google_drive/i18n/ar.po +++ b/addons/google_drive/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/cs.po b/addons/google_drive/i18n/cs.po index 2cec76e90a7..457c7c632dd 100644 --- a/addons/google_drive/i18n/cs.po +++ b/addons/google_drive/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/de.po b/addons/google_drive/i18n/de.po index a25a623aea9..0c31038ada3 100644 --- a/addons/google_drive/i18n/de.po +++ b/addons/google_drive/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/es.po b/addons/google_drive/i18n/es.po index 09b4695fe3f..5880e2d0918 100644 --- a/addons/google_drive/i18n/es.po +++ b/addons/google_drive/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/fr.po b/addons/google_drive/i18n/fr.po index 467ad95c398..0716fd15930 100644 --- a/addons/google_drive/i18n/fr.po +++ b/addons/google_drive/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/hr.po b/addons/google_drive/i18n/hr.po index 1d43727f387..2f1fc46920a 100644 --- a/addons/google_drive/i18n/hr.po +++ b/addons/google_drive/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/hu.po b/addons/google_drive/i18n/hu.po index 572186abfa5..8905167ffa8 100644 --- a/addons/google_drive/i18n/hu.po +++ b/addons/google_drive/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/it.po b/addons/google_drive/i18n/it.po index d80bbe011a7..83e73d02f0d 100644 --- a/addons/google_drive/i18n/it.po +++ b/addons/google_drive/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/ln.po b/addons/google_drive/i18n/ln.po index ca98c2033f8..3a32d143ae2 100644 --- a/addons/google_drive/i18n/ln.po +++ b/addons/google_drive/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/mk.po b/addons/google_drive/i18n/mk.po index f03110d9ff0..3d94260dcd0 100644 --- a/addons/google_drive/i18n/mk.po +++ b/addons/google_drive/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/mn.po b/addons/google_drive/i18n/mn.po index 07bb29cd241..c2ddfeafac8 100644 --- a/addons/google_drive/i18n/mn.po +++ b/addons/google_drive/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/nl.po b/addons/google_drive/i18n/nl.po index ded046116bf..bf3273d0643 100644 --- a/addons/google_drive/i18n/nl.po +++ b/addons/google_drive/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/pl.po b/addons/google_drive/i18n/pl.po index 220ea5f7bd0..099b7057bee 100644 --- a/addons/google_drive/i18n/pl.po +++ b/addons/google_drive/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/pt.po b/addons/google_drive/i18n/pt.po index 9f915cefcae..b9fbcfec3e4 100644 --- a/addons/google_drive/i18n/pt.po +++ b/addons/google_drive/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/pt_BR.po b/addons/google_drive/i18n/pt_BR.po index 98127ea0a0d..a44450ea10c 100644 --- a/addons/google_drive/i18n/pt_BR.po +++ b/addons/google_drive/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/ro.po b/addons/google_drive/i18n/ro.po index e14d22168e6..bdd33c56c52 100644 --- a/addons/google_drive/i18n/ro.po +++ b/addons/google_drive/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/ru.po b/addons/google_drive/i18n/ru.po index 712922d3c95..f4411db13f9 100644 --- a/addons/google_drive/i18n/ru.po +++ b/addons/google_drive/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/sl.po b/addons/google_drive/i18n/sl.po index 64595e98a0a..17df9566eb0 100644 --- a/addons/google_drive/i18n/sl.po +++ b/addons/google_drive/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/sv.po b/addons/google_drive/i18n/sv.po index 6f8714bcaea..c28417e0043 100644 --- a/addons/google_drive/i18n/sv.po +++ b/addons/google_drive/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/tr.po b/addons/google_drive/i18n/tr.po index a9d937b8fb2..be8f1ea0e85 100644 --- a/addons/google_drive/i18n/tr.po +++ b/addons/google_drive/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/zh_CN.po b/addons/google_drive/i18n/zh_CN.po index fc012d5f50a..fe1f7876eb3 100644 --- a/addons/google_drive/i18n/zh_CN.po +++ b/addons/google_drive/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:39+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:41+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/hr/hr_data.xml b/addons/hr/hr_data.xml index 1e9d7668f02..c9b784c485d 100644 --- a/addons/hr/hr_data.xml +++ b/addons/hr/hr_data.xml @@ -16,7 +16,7 @@ Leave Management (keep track of employee leaves), Expense Management (manage emp Administrator - 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 + diff --git a/addons/hr/hr_demo.xml b/addons/hr/hr_demo.xml index 41b09c3aea3..b5dff795676 100644 --- a/addons/hr/hr_demo.xml +++ b/addons/hr/hr_demo.xml @@ -99,7 +99,7 @@ Grand-Rosière +3281813700 pieter@openerp.com - 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 + @@ -110,7 +110,7 @@ Grand-Rosière +3281813700 antoine@openerp.com - /9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/wAALCADmAJMBAREA/8QAHQAAAQQDAQEAAAAAAAAAAAAAAAQGBwgBAwUCCf/EAEAQAAEDAwIEAwYEBQIGAQUAAAECAwQABREGIQcSMUETUWEIFCJxgZEyQqGxFSNSwfAkchYzYoLR4Rc0c5Ki8f/aAAgBAQAAPwCEXGmWYiz4YB6nA61iKGRFUhSwkY2yQMUztXW6EorltPkSPzpG6VevoaaZrFFFZAycCsUUUUUV7YDanUpdUUIJwpQGcDzxSl2OwISn25CVOJd5SjzSRsR+1IzRRU0upCmilDyCDnIJ/vXHlSCEBlCEE46qwcbU07+UuOKXIlJKEDZAO6leg9OlNo0UUUUUUUUUUUUUUVIb9mk5Kmprg36EnFc+5Rp0KGVvSEgYwCNyPp2poyXA48pQzjO2fKtVFL7TFZdK5ElQ8Fr8nNhTisHCRgelI3lBbhUEhI8hXiiiiiiisgZ6CsVnBIzisUVN0tKMEkjPkO1N/VEXxbY4TzDKCcY9evyqMjWK3QmUvyW2lr8NClAKWR+EedbnJSUs+Aw0lk/hWtJyVD5+p8qR0UUUUUUUrtiYq5ITKdLST+FXLzAH1Hl0H1rfdYhtt05XY+WichBOyk9xn+9bn7ehcBcy2rLrYf8ABI6LAUAU7dx1Hz/XVGtL8kIU3jw1N+IXB0CckKJ8sEH5gZFZbtyOX4mZSiCRzITlJweoqYQ0hX5Rygbk1xdWyi3a5BaZ5llBAPYf5tUSnrQnJOBvmtqscoQlHxnAwM7f+zUpcFuEsrV8p25XQLYs0E5lLBwSQOYoB88fvXK406Vtem58JdtBQmYhTnh/0pzhJx2yMHFR5RRRRRRWQcHNbnZch5hDDrqltoOUg9qwFJMZSSohQOw7KH+f3pQzcHmreuMhRSSrqBvynqM/MDt9a8i5TUgJS+tIA6Cp3DaAccmaZHEy6hmEqC20nnc2UvskeXzqM63Q0qVISlAWpatkhI3Ksbfriu7pKyO3LUbFvCFqkc+VJB/CR5n51d+PpyPo/gfbrKygtPzjzyP6yt1JUQe+cfDVZPaKtTke6txveBIdjvojOLJH/MUnOB5gYx9Kj2fpibHRcWnY5Eu3rS2tDR5grYlR+w5vvTbNYoooorOKFApUQRgjrR0O9KXobzcJmYUHwncgH1H+f5sSmqxbg5G1YOd+bGOu3/8AahziJOQ/djHbXzBCipZ/6j2+g/emtSu0uOMzm3G1+GQcc22wOxxnvg1Yz2UtItXfVrs5BbdbbaGVr655sHPmScH6GrS8Ureu4rtq2sBEee2AQoAKcIIbT9CM/aqle1Ha5Vq4gQS6SpUgtXAHHY7DoMbBOKdOttMTZet5uotPRR4ztviXARm0/wDObUhTanB/3AfPnqtGqLYuFNcdEZcdpazhtQ/B6fL/ADyrjUUUVkAk4Aya3x1xwhTchtfTKVIxkH1z1Hp+1YlvPSHfeHlcylHHMdyf/PXvWxmXyRlMORmXgTkFaTlPyIIrWt4mOhlLjoQCSpsqyjPYgfX/ADNaasQpfMhQ2HN3zUCX9p5m9TESEkOeMonPcE7GkNe2vxAAbk1d32NrQqBaZbr7CUqRGZeSkHdSllZAI/2kVPOsYrMnSaUrKkvolJknk/rB+EfQEfaoB9q2xLcladvHgNOcqVROflzzq5QpA+pSofWt/CK/L0/q62Wm6crTFwt6o1pnLyfESleWEK27HmbI8ljyrr8dODNm1MF3GG0LZcA2tx5jk5krcxkKAGOYK6HB8j1O9G9TWeVZrq/EksKZKFnCTnpntnqK5VFZTjO9e2uVLiStPOjO4BxkdxXZ1TEgQ3oMu0+KliQwHOV3BwoHBx1BB2OOxyO1cdtC3SrGyUjKj2A869vstNthbcltzJxygEKx59MfrmtFGD5VY4tjlwB1OKYHFLTrshDVzioBW2gh3A3UBuP71GFOvhbpmTqfUzcVtpSozQ8SSsJzyo7/AFNfQD2c7QmLapVxeirabmPczIUN1JSMJP1+Ij05alGVF/iAdZdaACWyeQjopfxb/LGPrUNceoridCe8spUty3zosptJ68iVf+FHP0pv8RuH0k6XEm2JbXYZKhOhOJCvFtcnGFJGN/DVufQjtgYc/BLiMzrW0vWrUSogvEJoNoUk/wD1CU5HNj5/alHHH2ftM6/tjs+LH9xviM8r7fR7/ck7Z9e/6ilGsuC+qdMXURLiz4bLiyhmRjLTihvy8w6Kxvjr6Uy2bBLavnuE1hbfItIcCgRsTj/CNvI0q1VZYlkcSlEgSedSwlII5kpxsT6g1xJD8chBjs+CtOQo8xPON+3bbFeVSueD7qtsK5F8zS/zJGMEeoO3yx6mu6W4cfRQXIjFT0hf8h9BCgkjcpPcHBH/AOPl14ERKVPBS0eIhvC1o3+JIIyNt+lKFWyQt6QIg94aZcUkOJIwoA4yPuPvSbwnF/ERv02Tj+1WUQgAAFINI7nHMmOWUt8yd8+RqHL9pWTHmyXkYEcKUrP9Pf61aj2ZuGVmVZY8uS26UPhDjjK3uUO5A/EBuQfLIHY96tfYIUeOwlTTaQAMJ+H8I7AfSugtKW+ZacJKzlRpt680zH1BpG425xoJcdYUltSTuO4rTw4Ycb0qxb5zQWhLSUr5jkc2ACPvUfcTuDbb17TqLTDr0J8qSp5lgDC1D82DtzYzv379SacvDGDNfgBxep5zilAgxl/CE4OCnlOceXp2pdqvhrpm6l+TNjOvmQjw3ud1SiTn4VJ3+EgntjqaoP7R9gvWguIj9onIWuKUBUV07+M2R15sfLPqKiNch1aita1OKIIJXv1+daaK9+IvkKAohJxkDYHHTNeaV264SYC1KjqThWMpUMg/Tv3+9JCcknGKtElI/pHSsOp5hgkgHqMUyOI9wtlrsjzBcb98dSQhsH4txj7b1KHsy8TrTF8KBebiw0+6lICiQEoA7Dy7Vc+xSY0q2tvRXEONq6KSrNLHEhYwemQftWSAUkEbHbFR/wAEJ7lw0/NQ66tww7g/HUVDGVJWf8+1SBTY1PaG0SW7rFcUxISolS0ucmdjtnyO/WlOmbpEuUIcz63lFahl0Y+JJwoEflUCMFPpt51H/tP8MoPEXhxcY6GG/wCNRAJFuex8SVAY5M/0qxgj5HtVBtBcJ9U61gzX7DFEh+Hgux+blcKd9052P4SMZ61pVwp1sq4e5xrJNeXzlBHgKSpBHUKSRlP7etI9c8O9U6LQhV/t64oUEkZH9QJTv03we/Y00qxRRVopDrUdhx99aUNNJK1LVsEgDc/aow1jxILq1QdOkDOQqS4QB0/KD+5+1Rm485LmeLMfWtbix4jijzH5+tWE0FwHt2o9ORr5p/VkV2cElZiuLAC/kR0PoafmnNS644ZXWJZrkiU1b0PcqyolbZwcZSsDp03HSrTaN1dEvUFhQdCnF4KgTukEbE+e9OgLCiAjfzNR3wSdbb/40icyv9LqeaAVf0khX7lVLdd6j1TFipe0nbYUsBRSoyXCArtkY7DI3/sc1FcSHxe1Ihki/tHxApRjlpbbbSl9U8+DkJAO4J9Kemj+HWtLExzq1VDceWtLjzJYK2lqAKSTnB3TgHp9O72mW268qDlD4RgJCHSkpG2+43rg6d0rbdKNOfwW2qZUVLWApOFbqKyM+QVkjturzp5WeREmR0yGW20ukfzBy4Uk9we9MziLw8t+t4F7tF5j88KY2jwFADmbdSk8q0ntgk/Taqx6w9lnRmkbZLul/wBe+6xUNqKVuNhAScbDqSTkEd+tVIcACyEnIB2PnWKkfTHA7ijqSwxL5Z9Ky34ExHiMO8yU86ckZwTnBxUq3eH7/aZUFRwJDK2if9wIz+tK/Z64cw5fAzVlwVpyzz9Us6gTbULnwUSi03yNcobS4CAVLdxkDJyPKmLJ0TZESXkTbY0Hdgrly2AemwTgD6VH3u8CLeVx7VIusSYlzkbMZwqPNnYJAGfXrTka1DxYi3RenWZl8uS0Ml5UObHK1htKedSileSAEgk4PQZp26O9omXpGVbVwbK5IQhhPv7Mh0AF4KO7RAylJTy9e5PbFTxbPbS4fripVcLBqBh7HxobbbWAfQ84z+lJYPtccPUT5CbHo7Uzrsl/x1oajtErXy4JwHO+BXi6+0tM5FiHwt1Y0hQOPEglIx1+29IrV7TcpopbuGhNUIQkYy1EJP709rV7Vug0p5b3btRWvHVci2rwPny5p4WP2h+EF4WluNrOC0pRACZWY5yf/uctdb/5i4VvpeSrWtnHgq5HOd3HIfXPSo51r7S3DDSFx5oNyN8eKMLagK8T6c34R8s1APEn2v8AX1/8WJpaJE07DVslwJD0gj/cr4QfkPrTQ01we44cWp6LrKt11dakDm/id8fU03y9inn+JSf9iTTG1hoS86Uul5tN4QG7hapHhONpGUOJBIK0K7jYHp0P0rjabs8q+3mPbIfIX31hKQtQSDn1NfVjQD0ax6GsdmkeC09Ct7LC0s/gBSgA436bVT4kDfOKlr2VXmDddYWBSmUOSPc7rGSsn+Y4gqQtWPJJbj5x/WK4PHey2V2+Ku+m0l2LJW4JDiR/LDgPxJHcHmKgRjbGPlAXDSAtjiSp5DaEvGQosqX+ELCvPtUr8UbJK1nck6oYYk2C7JbLMh9l5SPFTjBUCDkZSSD5g/eDY3DyTqPinZND2tK8vNpDz6cq5G+ZSlOY7AJPTzx51O3FH2OoFu0NMvehr5d5lzhsF82+chDhkhIypKC2lJCsZwMKycDbOakX2MrLFi8A7XeoQYKpanzICWgHEuIeWj4ldVAgA79Pl06/F/TkWXBTNB5VupAUAgkE7nO2/ln6U3OFXCPTupbW87N1HcETUFSAzDUlpKRjY/EkqI6Ht9KYNjuXEXQE646TS5fF3pF2Q4ytwh2M4wEkcnIRzHKlJVkZBB7YBPf1yqbNuTdh4h6RtMyVIaSpbngJUnKh0CvxNqGd+VQI86rOrRutpesLzwx0lCn3Bh2c3JMNsDBCUqLK1qOAnCHTkkgb79BU98MfYsmSWW5vEPUfuWSCbfawFrA8lPKHKD6BKh61Zbh7wY4aaCId03pSC3MA2mSQX3wcdlryU57hOBT+WpKEFajsOtVV9vHTtub04zqpmK21PYeaS86lP/PbUVJKVb/FjCdj2+VN72MuG9mRoCVrydb2p1wekqRG8VAWGmm8HmTnooq79dvU1PDFgvN2aTcGpJaQ8MpRvsBt/aqykbZGfrSeZHcLrMqHMlQJsZXiR5UdfK40r9QpJ2ykggjY+jlRxH1jKtIsd00pbdQeIrPvttcEV9Zx+NbS/hUvzwoZpmT0TrNJVcP+DtUQ2nFeIVTrLIbx3JStCVpI+RNYl8VPj8BdpuLrQV093dGAMeaPT9amT2R7N/HL3f8AiHItC4EiW6mFBadQQWWWwFHGRkcyj+lWhQCEgHGcdqg7h1Fa4acTNY8PHf8AT2S+81/05zqSEla8NyYyCSPiSvwylAz8Jz33dkxm2aitv+nktOoT8SRzYKTt8Kh2I327Uk0lY/4atTafDCg58Kx8KvlmpIisoDTZdSFuAZ5lbn6H603NVWyHJXzCEyV9lKSN6h7gnDZHtR8QVtISA1BtxOB0V7uRj7GrHVhSgElR6AZrjT54W/4KVgNhWFEdetRn7QGnn9b6bXZkJbU2t1KlAnpyhWP1I6edOng3pqHpLQdrsMZALQKuoG53Uf8APSnhZo6I9tZaBStIyUH/AKSSU/oRVHhnvQR59KVWRzwLtEWjAUHU4J6ZyMf2q1gDjtsjDmACm0A8pwMkdv0rc86+iMpa5C0gJ+IZ6Drn9KT8Im1OW6ZcHUqC5UlbiSoblOcJP2SKekx9EaOp1eSAOg6n0pua00tpTiFZP4TqC2RLpFCgtIdHxNnupChhSFY7gg0xHuAkGMla9P671db3SMITKkonNIG22HUFeNh0WOlcdfBribFfDsHiqw+QSR49ueRj0wmQRj6V07ZpTj3bOVLOttLykJBx7xHex18sE/rSy66N4zX0tibxE07ZUpBClWuxrcWR83XcfpTl4T8MrFw7jz12+TPuVzubiXbhcp7ocfkKAwASAAlI3wkDbPenxXKu88tp5GSCBhRIPVO//gfem/GU0iUFKAUHBsc75FbZsYh5wNpzzYyT50osoUmJGjKJCmwU5BzglJH96UNaRtSGwlTk1wjbmVJVk/baqZUHpWFg8ux36g+R7frVleHF6RdNKwnHHkrUE8i8HoR2/aurqha5UaFaWif9YpSnlg4w2nBUPqVJHyJp7WSMiLAbaSjkwBtj0pW+lKm1cwBwD1qO4Ei5QZ8hxptSW0uZ5D6/2p7WC5oucRbgHKttZbWn1FdGiiig0zL46Pf3FAFr8nKD+tabQj+ctZUSAOYZ3wNv/YpbzKLzuMp5+XI9ANv3rbp50GeErI/Nue5pzZqidFZHr0qROC10THui7a6sht5BU2nO3ONyfrnFTJLnMQ5sOfKOGmVEOkA5CFY3x5ApTT4g3KHMa8Rl0FOM5Nc24X9lCloaQtxLZw4UDm/bpSS43G3tW5UtMN5Pj7hRaIzjpuaUaGhuMW96U6hTZlueIlB7Jxt/enDRRWFEJSVHoBmtMp0tILnMkISkk57+VM64h2ZIccTlCs7gdzWWkuxm1OED+YAceWN/tWX3QhhS15Odsn071AHtSa4n2DTkKFBluRm5UxkreZcUhwISsKO43GwH3qpquKfEkrUoa81KnJJwLm9gZ/7qnoVnqcCgDJxSqz3WNZLzBuT6jlt0BI8ycjH6g/Spi1VfuWzFUZclx19P8lJb5idgQcd85xSrhz7y7DDT9zmRVqJCgEpUlJ/pwc+fY7VJelkx7IHYDssyH3F8+Qk5UT5+Xau057rIlhEk7pSSloq+HbGTjucmugMY26VmiivKjhafixkEAeZpHIYdkuhKyQ0Acgdz0rQ5ARyyQCASObIHQ4/9Vyng2hS0JQojmGBnqMdPvTW1LdEtMOsMrPMTygBOQBt+u+1VA9rK5uyfdmln4Q78IzkAb9PtVeqtZyHbHlmsp2CgADnvQoYOP8NcjUbLz0aOIxHjJfQUbZ3JwP3qX9Gqiv215VwZdhz3ORrmW4cFPXIHfOf08zUkWPTL7UdDUENrab5lBOwJBJJyfr+1ehAv72r0T2W3WWUsg8mAckEnHp0rroRqCYOeXGdQ+pKQtQHUFQUpP6AZ9KURp94gw4q5jLjbDbobWlIJUc5IPqN8H6UtvGq0RlrDTLyuQFSQEZ58YyPMd/18qU6f1MxcZJjuBTS1kFoKGCQRkenypx0EA9RWEjlAA6UnmPIjNLWSnmIzvTeuam23HHUkcpJO4/N8/rUQ328i6XSQyyUNIQg/EobEevke1VD9pG8JuGrm4jTnMiOk5wMJJPcfb9aiurWhSubOa5l8vlqssfxrlNbYBGyScqV8kjc/Sol1hxLudwkLYsylQYg2C8DxV+pPb6femi3fLuiU1JNylrcaWHE87ylDIORsTV8tK6ntHEHhdb5TsRLyVRyog/8AMYcGyiCNxvtselcvSEjW0eW43ClOvxAtKGA6vCypSsJAV36Hr5U+0an1Lb5KEz2pCXyj8CEjfcdCNj1rtWrWWpJmFRbbMX8S0AOtgAlPU7/In6GnCLvf34SfebK04Fcqh8Q8sg4+eK2uRrxLQZyrewxyfE2y4oFSsnJHTboK5NrtrsiUu3uNOoa5McyF5KSADkb/AA4JOPlT6LpStlGcHGVJJ3/zfP0pQkgpBB2NYX2xnOegNcy5S0NNuqeUhxGU+GAOnzqIOImpXZxRbIil+M6o48M4OMDJV5DHeo+1NIdsulHDIKPeH1fhB+I7DYb/AC+5qoHENTx1C547hcUoc+Sc9T0+Qxj6U26sLxB1azpe2pKQHp74IjtE7Jx+dXoPLv8Ac1Al0uEy5zXJs99b77h+JSv2HkPSktFTL7M+t3LFeXbIt0NtyyVNqV06YWn6gDf0PnVxNIOYAchlDpb/AJgbQrKk/iz9tvWnsm4olTGXpEcLLasdBjA9P+0V14rinXkpYQUNlSlpSE9VKyVfua7sdvkRjAB+e+PWthGRiuLd3G7fPjPtONpceWGvDOwOc4/WtlrfacdWt5YMgKOT1G/TH0wPpSwyit5DbPKQRkknoKR3S4tRBkrBe5TkDr0OKjrVV+kvRU+G94SHhkkkZWT0A8/X6Uw0Oe7yXZa0OuuuuBvwyMkgq2SkDsRnp2pqcRrTcCJMq5OIakkKPhY+CMgHqe3QffaqhaxuKLnqOXJZz4AXyNb/AJU7A/Xr9a49LLtc592mGXcZTkl8jHOs9vIeQpHRRW+BJehTGpcdZQ60sKSodiKvvwPLmp9FQrkiU634zYCnGVcpOd8EfMmpOg2W5w49sjMPPKAUPHUeruMZ6eeD96flqjOtt87rylZGAnGAMV0K0SXw1sQoFQPKcZGaZWqQ6bmyh9/xWEJUV+iglOCB8lfcV4t0+RAIQgg+ICG8nJwMnf1wKXfxLwWlOc5LnLylHNjcbnOfr9BUf6s1ShqNKejvASClPL8OV5P5Rv5K233J7U3NJ2O96lmMuR43N4DfguOqPIyx3yTjrg42327dalqzaUgWrldgAyJoRyKnOkhCE+SBnby2yfWqo+2TxEgW9D2gNPv+NKcXzXOSPxY7IPlsenYeu9VPNFFFFFZq2vsS68iM2qTpSY+pKkKK20kbYPXB8/8AxVv7aHnWXEeMk8gRuDlSQSckfQGu3DmxpTa1sOBSUHCj9M1skPtMMqedWENpGSo9BSVyfHMR2RzAtMqIWoHpj9+tRJrbW9ot1zZZTOQ2t54ZWpPM2EZ5SsjOwI648jUZW3jExDkXCK66tTaXlKZWocx5NiR26gnb1xWtq86o1fcy1AMt9pxakseCk86kncKVgYzuR9qmDQvDFxCVS9SpLjviFSWfE6gj8yhvttgJx8+1SUxb4sVktnw0R0n4GUpCG0DsMDr9arT7UftHwNLsSNK6PkNyr2FFt5aRluHtg8xGxWD+Xt37ZopcJkqfNemzX3JEl9ZW64s5UtR6kmtFFFFFFFd3Q2pp+kdRxr1biPFZO6T0UO4NW+4Ke0fp5+AqJeluQ5Ia/mFY5knJPNg+ucjy6VIFr4v6ajBh5N3jiLKTkgLThIPKOnXO/wBK9Xvj7pO1QGi1cW5o5DhCDk42ASR8iTvUY6h413XUNuesOl7bIfbdAacdaCwVHuE7fIDrtn68ax8FeK2povx2x2ApzmSZV0k+GEgqJADe6sd/w9zUw8NfZmsVlkfxHVtyXfZyslSEjw2snrnuofapxslltNkje7Wm3xobXQpaQBn5nqaxqK+WfTloeu99ucS2wGBlyRJdCEJ9MnqT2A3PaqTe0h7VkjUTbmnOGi5Vvt24euygW33wRjDSerY6/Efi8gnG9UlKUpRUolSicknqTWKKKKKKKKKenBWZHh8Rbb72yl6M8otOoUMhST2x36dK+gsPRGjbhATjS1pdbcayMxG84OM4OM52G/pXCHBfQcm9tSY9hiMqa5VFnH8p05/MPLbGKmDS8GDaLaiJCszNtRgEpjsBKVHpn4R+9dsEEZ/fatM+ZEgQ3ps+UxEispK3XnnAhDaR3Uo7AepqtfGL2vtH6bMi2aGi/wDE9ySFJEoqKITS9wDzfidAO/w4BHRdUt4k8RNX8RLyq6arvL81fMS0xzFLDA8m0dE/Pqe5NNSiiiiiiiiiildpnv2y4MzYxHiNKCgFDIPoavHwO4/6DudkjQrvfGbBcWkJQtu4HkbVgDJDh+Hz6kH0qTXuL3CuNID0zXenD8JAUzPbcCuh/IT9jXB1L7VPB7TsUpiXm4X55HwhiBFKv/3c5EY+RNQzr72177KCo+idKxLaggj3q4uF9zfoQhPKlJHqViq56/4ja416+l3V2prhdQhZW2y4vlZbUe6Wk4Qk/ICmqaxRRRRRRRRRRRRWRRRWKKKKKKKKKKKKKKKKKKKKKKKKKKKK/9k= + @@ -123,7 +123,7 @@ +3281813700 +32486571630 john@openerp.com - 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 + @@ -135,7 +135,7 @@ Grand-Rosière +3281813700 michael@openerp.com - /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBhQSEBQUEhQVFRUVFRQUFRQVFRQUFBQUFxUVFBcVFRQYHCYeFxkjHBQUHy8gJCcpLCwsFR4xNTAqNSYrLCkBCQoKDgwOGg8PGikfHCQpLCwsLCksLCwsKiwpLCkpLCwpLCkpKSksKSwsLCksLCwpKSksKSksKSkpKSksKSksKf/AABEIALsBDQMBIgACEQEDEQH/xAAcAAAABwEBAAAAAAAAAAAAAAAAAQIEBQYHAwj/xABDEAABAwIEAwYEBAQDBQkAAAABAAIRAwQFEiExBkFREyJhcYGRB6GxwTJSYvAUctHhI0LxFSQzotIWF0NzgpKTssL/xAAZAQACAwEAAAAAAAAAAAAAAAAABAECAwX/xAAmEQACAgEEAQUAAwEAAAAAAAAAAQIRAwQSITFBExQiMmFRcaEF/9oADAMBAAIRAxEAPwC1QicEuERXIOu3wc4QhLhFCsYsTCW1qACUAoJCASLisGNJPIc12hQXE9VoaCTqNm9fRTFW6LrkrWL3pNTK0RJ8zJ8eiiMZwxzyMxAaGFzo0J/m+wS/4wl7S3eTr+adNPoi4iu8lJxJhzthz10JPiAfkuljTTSQtqF8SGo2FNzmt/DSbq8/mPr8lL291QcMlOnlAMkx3nRsPDkoGjc5cjnNIYBmDfzlgIHnLgo+0xJ9NznjchwAHVwInxiU88bkcaLY5xmsatYvJAA0AJ2A5eSaGoOUFNH5nHXffqV2oYY93+U+ELalFcstsvtknYY+ym1zXUmknaoJD2+30QocRNBjKD0dGU+RH0PIpi/AqgEwfZNjYO6H2UbcbLVE0BnEtGraloy9oNde67zDhz8lVa/Elcktc9zm7EO/qog2z26wQu7QSASNR81SOKMf0JyJSlj9So0MccwAgAgSAOh3XZ+H5gC093LmBO8zq33TG1tJcCNJ+XKVb8GsCaIa5uramh8DossklDopGO9lEr0JBPOVO4Y1zKBpM0dVOZ5OmUQABPlr6pzj+HinVJABjw0B6pXDrgHFz3AA9TqVMslxslKSexkthuBtptESXcztpv6BRHEVWnmiAXbGOQHjvKtlxf0hSIzDM7Zo/EVn+I2jmvMj1P8ARY4nulbLZUoqkXr4U3sdpSnQ94CdjsdOi0mFiXBGIdle052dLZHInULbgkdXGsl/yOaSW7GIhHCVCEJUaEgIJSOEEiIQhKyoFqAEQgWpcIQosmhnCIrplRFqDRnNBLhDKpMxMJQCOEYCARxu62RjndASqFUqdu/M86b+fICVb+JyRbuDdJgE9Ad/34rP6lzD4brA8hKYwx4sN1He5LRUnRo8OQCb4naMq0879hBHpr9IQqtJcQ4RO3OPDxUbj17/AIbA3aTPj12TmOLclQtqJ1Eg7+8L8jRswZWj1lcbTDH1KmVokj3kqY4fwXtHZnfhBmOvgr98PeFgKtSs8QHVDkb0aOZTOXOscXQlgxOb/CMwPgJzacP56xG/mrNZ8Cl2gbA6laJa2LANk9psAXHlnnJ22dNRhDhIo9t8NxGqW74XMPT2V9YV0CiLb8mbyfiKEz4UUP8AMAUVX4QWxbAJCv6C1VryyjnfhGTVfhA5hlha6Dp5J/R4XfbsdLQZ20mOa0pIqUQ7cSiTk/IRkl4MUxLgt9TRo/UfUqs4twhc026MLRP4tdfVejv4VvRJqWTCILQVMck4hJY5do8sHDarHSBJ/M77SuNw2oDNXY/P1C9MYhwhb1RqwA9QIVB46+G2a2qdkO80Z2eY1j1Gi3hqvklJGUtNFp7GZNhZDrhkaHMCI1A6LerKrmptPgPosE4HYXXYBGzXO6aiNCt5so0jYgEeBhV13Eki+ljtTHMIQlQhlXPscCAQRo4QAiEISkIUAJKJKIQQSNsqItXREQguznCOErKjyqSgjKjypQCOEAVzja6yUAPzOHy1WdtJNRusayT+91dfiNWhtIeLj6wAFQg45pnXYJ/AviW2WrJG/mREgbDqoq5pAwHCYEDU6eXXVPqtYuAPSfmuL2CQcuswPumYOjn5oX2T2B2kMjyV6wCrkMchyVGwq5ALWjc7nz5DxVvtWQR+/dJZuezbCq6L7bV5anVN6r+FXOkFTdF8pIYnHyOg5dWOTYFLBV0xdxHIRrmyeaUFspGTQpBEjVyAIijSHFQ3QCk3umAt1XaVyrOWM3aLx7MIo8N/w+O3DWiGECq0fpqa+neDlo9nRhrfD+kJtjloP9p0X/movB82uBH1KkmtVsuRzpv+DeENtghABGGo4WJoJARwjhCFACSEISoQhACUISoQhADUBCEqEIUktiUISoRwpIEgJWVGAjAUAikfElsNpO8XBZ6JJWk/Eq3mgx3R/wAiFmuZdDT/AEN48ocsqQF0zbHeOSbTsurNh+9VuLZoktgTodJ3OoHRX/D2SB/qs7wOmS/U8/dabglt3RP7CTzumUwof0GRspe1qGE2p0k7o00kNvofMdK67LjTYU4DVdCcjqzZLSGpS3j0YMNBBBaEAREI0FDQCYXCsE4XOoFjNFovkp+P6XlseraoPsP6J1C5Y9T/AN7tz4VfoF3hZeENoSAhCXCEKCRMIAJQCOEAIQIS4QhACIQhKhDKoJGsI4S8qEKwNHOEMqXCOEEUJhCEqEYCgCq/EVn+5z0e1ZQWzIWwceU5sn+bT85WRmmZXQ0z+JqlwIYU8s6ZeY8fdN3M/onnD4mqAExLqxefZcMDwjKRI6K7WdLKFH4bZwNVJMqCFy5y3M3gqRI0NVI0aarb8WZSGZx9BuVW8Y+JD9WsaWDYbSfVEMbZTJJUaPWxGmwwXCUl+NUxpmCxyvxFUqcxr01PnKjLriipTcWkktic06kxyAkpmOnbFJZIx7Nwdj1Ma5wulLiGnH42nprqvOVfierEEb7OkmOfTkuVvj1eQZO+vILT2j7sy9zB8bT0p/ttuaJ5SnlC8DlhuHcQPdBJOgE68p1V84ex6WCefyCVmpQHFCE1wX3tAgaoUAMV03UDxBxkKIMFVU2+EQ9PXZev4lvVcqlyFhWIfFKrnytPhO0fvRNB8SKxMOqadfHomPb5JKxZ5cUXVm04pTDnU3/lJHuP7LnCzHC+M6gLS9xLZEAnWOa02jUDmhw1DgCPI6pXJBw7G4SUlwGAhCVCELMuJARwlAI4QQIhCEuEMqgkRCEJcIFBI1QhKQhWARCOEqEIUlQoQCVCKoYBPQKCUR+N4Wbii+m0gE7E7T4rKcf4frWpGdsgmMwkj100VkxDGqzrgtpuLYMaHmpOnjTn/wCFXAdIiSFriyOL/Bp49qMuaHOOWN9eoUlgrf4epneZ8Ij5lOMawlrXkMEDVd+FMLzuOeXN6O7w8xK6LyRcLEckHfBOf94bRsz/AJ4+gTep8RCdqTf/AJD/ANKlKnANvVHdBYfDUKu4p8OjSJy94eoP3WUfQfZhNZ10c6vFfbVAHsLZmC0sdEeZBThj7apEm6JMbUGO+YqKq1sF7J8vL2wHcwdYMQuto8MZUdSquc5rIykatkgSCfX3TXp46uIs55bqRbBbWjZ7SpWY3qW0Gn27Upnc1cMH4bioSOraf1BVIdZ1qhOYPzEd3nJ5eSbW+AXD3BraFXNtrTf9Yj1Vo4I+ZE+rJ9It91e20TTqEno4MH/6TEYm0CcpjlADh/ykrrjmAGlRaHMJeGgS1pmfMclX7BjtRBHuJPgqqEGrRKyZIumWK3xim4wHAHoe6fYrQeEcLfUAdJI89Fn+GYY6q3vsBH6hP1UrwviVzZ4g2hh7W1W1qQeaNVzuzpkFwLgd2jb3S08akmovoajOUeWuzV7zCy2mT+ULFcf4npmo7M4mDsPBa3ipxl1Iw2yAcwgtHakyRH4jt7LArdlSkaoDAHtd2bpY2qZkmW5mnJoNSNSjS4Ytu2Vz55bejsMToPM9k49dj91KWbrWoQBlaehEKMw83FzcU2QX94AgjuhvMkRA0lWDiDDHUMopw0k6ANbr5iE1lUY0k/8ARTG5SttKh4/CmvhlNwk6DULXMLo5aNNpMlrGg+YCyd+Mi2YC+2ZUcWh0vENHkQ3dQ93x88kGnTFH/wAupUb9D9km8E8vQw88Mb/TeyEAFhtpxdei+o0mXVVzKj6UNeGO7ry2QTHKSt0hKZsLxVb7GMWVZLoSjhKhCFgaiYQhKhCFBIlHCPKjUEoagIoS0IWhUTlQhKhHCCBMJFZvdK6gIObIIUFl2UrDcBzXb50EuM+ZXLGBTovgukkge+iuYo/4gjcsJ+io+OYDVLzUIkTA8EQbQ/am+SOxihIafEhOeG6eSU7xW3DabfIH16pphtXXQptO40JT+xbLB/eCsLrIPbsqrY1dQrXY3YIhLyRDbrggcW4Fp1pkaqmngjLdPoBoymiHtcAMziHkFvUxp4arZqbQQo3FsEpVqlOrnfTq0swp1KboIDozBzSC14MDRwK2xtxXYu8m7hoy2nQ/hjFSlt+ZsH3UnR4sAGVuf+UElX11E7VDSrDxZkd6kSCfQJA7Jmrbcg/pFM/eVR8+TaORV9Sr2VrWuP8AwiAd3VP6bruPh1RDsz4J58gp2rxFl0FGr6M/uo+rxA9x/wCBWPiQ0fUqPkug3OT5XBXeObTs6DKVszvPc1pI0hvMz0HPwlR3wys81zcXUd1xFGkeXZ0+6SD4kEp9j2NXF2P4SjQ7E1O4+u57DUZTJ7+RrZgkSNxurdhOENoU2U6bcrWANA8lrKe3Fs8spGG7JvdpV5LDTaHMhZAMEe3EsR7NkxVpVQ3SS19Maj/1B49FsNuO6qNxSbm2vmXVtQ7dppmjcUmlrXlgOem9pcRJaS8R+soTpf2jKH2fmiEtcaaxxD2Bj9iXMAPvCejC6Vy8Ed49QNApMY/aXAH8RRqUnc21qLhB6ZwC0+hUxYYtY0hFOpTb8llUrGZZIpdCKeHNDAwtBAEQQCPZRWJcE2VUE1LaloCZDcp9wpSvxBQLzlfm6BoJnTloo3FMQq1qb6dGhUGcFvaPhjWzzgmT7KI70+HRlJxatqymcB8HsrV33jicjKxbbtbtlZ3Zd16ei0+EzwTCm21vTotiGNA8zzPqZT6FGbI8krDFBQjQmEISoQhZGoUIoSoRwoJEwhCVCCAGsIQlQihaFQQhCMI0ECYRo4RwgCJxS+NFzHgSGkyP0O/uE6NSldUyGnceoK63dCRMSRy/MOYUO3DHU356P4DBifcKEbppr9Kri1Y5HscCCzu+nIqFwzEBnHnEK1cZW8MLuojzWb29QNrjwd/on8Ed0WK6ie2RqWHjmpSnWynMVCYHcywH9ynNzdckvJcmkXfJMux/kCgzEJ5qEYNNN04tcOe7wWUkhiHBPUrwHmluvQmVDBerihc4c1oku+azoulBsOtjDQoK94mzPyM1cdkxvqnaOLaevinnBVpTD3l4l7XRry8lZR4tg2l0TuC2Taepac7tS47qz0aAISHZS3ku9u4QrxjyI5cjkrqjs0QFC48/IWu5Hu/cfdTcqJ4ks+0t3jm0Zh5t1WmTmNGOGW2aZF0rkHmnHbDoPYKHwmkHNBlSVSy03Sqs6klEXbXGersNG/dPoUTg5HaPHMAeyl1LFn2FCEI0cKCBMIJUIQgBMIQjhCEAFCEJUIQgLGwCEJSKFcqFCEI0FJAIRgIgjlQyQQo28uzR3acpMhwEgeB6KTlEoLxlRReJqjq9JxpglrAXOdsIHKeZ8Fljv+I0nmQd+n+i9B4lTmi9o5tcPDULAMRphtaDpDjC6OjfaFNW91MvOBXoyEcxr8l3r1dRruJ81TsPxWHE8iMoPUjqp03usDeBqpnjplceVUTltiMc1OWWOiI0VFs60kydzp/ZSXZkNJjTdYyxoZhl4LZccUtaNSoI4y+6fkpnu8z9lQcVxM1nuYX5WsPeMxPSOZU1g2PUremMpEkiAZnp6K/tqV+TNatOVLovDcJbSZLXQdp9NVnmK8VPtbpz26hxEgEbjSfkpx/EhdqXabQJ38ue6pWPUs5eY2fuTvpJ8lbBhTl8wz6hqFx7LfZ/GinlAeXA+LSfmJViwf4nUqh/ECOoP2WA12BpP7/YS7XEHUjLDBKan/z4NfCzGOsk/srPV1nxFTqNkOHuivcaDqbm04JII8BpzK80W3Ft1EB8eIaJ/or5w9jlRlCHEkkTJ3nySeTSTx9s0WbFKVJMmsJxp1J5pvkOBIhWY48MmukjSVmpuw+qHkyTBHWZAI+/up+7aXuo0mfiqEDy6n019llPEkzeOfci78NMzNdVP+c6fyjT6ypqFxsLbs6TGflaB7Bd0q+wsKEEcIQqhYUI0IQQAIRJSCCAoQKCMIAaIi5ESklyuSLzIsy5l6Q6opoqdi9DtE3NVINZTQDrtUO1TI10k3CKCx8agIhYZxvahtd50128wTstfucSZTaX1HNY0alziGgeZKofFeGtr0nlu57zSPcJrTPZO2YZo7oNIoNs4ERqeYA2BUhZ1358pMuk/wDt3068lB0KhDuhB1H9lMsdGoAJ3B+3qunkRzcTJnDKnfaHEcvTVXS9oA2tQDeNBzKy9l/FVrv067akaQtF4bv2uaM7tdNOqUzQapj2GalaMnrWdXtHDsyXDSAOuskjRIZb1xqWO9PqBzWjCtTN7UaNQTJ5DQbHw/qrRSo0njVo8NBotJ6pxXRXHpIyvkyvCr1jW6udMz3hEc4IK73tVjzvmBHgCDlLZ033WjVeHaD92j6Sl2vAti7V9KfUt9oWHrxbscWm4rsx6tg4dmEHrm9No6T9U1HC7nHunT9S2q5+EtlvSq1Wzr+KY8ITah8OKAMPc945ZnfYaLb3bj5Kw0qa4RldpgBYT3m+sbTP2UrdurBgFKk9wAEuOjeZ5+e60+lwtaUWyGNAG5O65Y5csZScTADhAIHLosnqXJ9WRPSqC7MmwK1e64aTplcS8REAala5wFYGvUfdPGgllLymC4e0e6omA2dS4f2Q1fVcYfpIpAk6n5+q27C7FtGkymwQ1gACpq8ngw00KVjqEUJSC5w2FCCVCJABQhCNBQQEgjQhBIUIoSkcIAjCVzc5G4rk8rQswOeuTnIOcuLnKyKBuqLi6sk1HpvUerJAdXV1B8S8VNtKcnvPP4GdfE9ApCpViZWOcWYq6tcOcfwyWt8ANkzp8PqS56ItWkRvEfEFe5eXVnkjk0aMb5NWusb/AITR+lv0CxGsJgeK26e6PIfRO6tJRikU43szrirCXU6pexvdOpI681HW+JnrrC0jEbYPYQf34LLcStDTquEbE6eC0081kW1nOz4tsrR3fWB/m5nkVNYBjMDISZ0gzCqrnmJXW0dqNfFbyxpxoxjcHuRbKlw6lWfUOofGo1238uSs2E4tmaJd4jxCotOv2xaDENBMk6bGf34Kdw6/lgzFrRJZoNQ0cx1kfdJ5cVoYwZmpFur41oS3ZsDTx8Ez/wC2US0kyOmv7CjBZlw5tBjTmNOvl9Ui44da5pdqJaAIO5ETmHTQpZY4eR15Z9xO4+JRkgaxz5fvZO6/xJAY2Yk79QI5quHhBoLYzHvAE7AiZkdFJVOB20yZOadydQZPL6eivLFgIjqdSx/Sx99w6CdNxGg6g+aacTXLnURTkEx1jXf7EKXsbOnSAkAHqB7aqKp4eH31KkQXB9QaCAIBzazy8lSKV2vBabk1T7Zdvhbw32NuK1TWpUAA01awbDzO6vKRQohrQAIHRdVz8knOTky8UoqkFCCNCFQsFCCNBABQjQQhBAEEcIKAChEjQhAEKSuL3Lo5cnLRGjObnLhUK6PXByujM5VHJvUeuj03eVYCH4gxQMbkH4ng+g5lZfjDOniSrPilUuunyZiQPKFX70d538h+662mhtRlKdNMgbShmrUxyL2A+rgtmY7QLJLHSpTj87P/ALBaxQOg9FGrd0FVJh1hoqRxRhbi7OIjXz66q8VtioLFRofRL4ZOMrMs0VKJnNxRgiea5CrB+qn+IqY7um8fVVu5EOK6+N7kJxXO1kna1gZ8B7qStLjLqJ2cARyOhB8tiofCho7yT0vIBhVmuaFp/GVIulpjGV7GnvGAXT1ADt/spuzcH97o5xA6A9fdZ1TqHKTOpIB8ldsBqE555THo1h2SGbGkrQ7p8rk6ZOUTGadCQQPKZn3KRSqOnKR+Jg9PbyTN9U6a/uJTqxdEx1A9IJSbR0osPEG5mtaSc0axsDuD8gqljdyab2vBh3dgj8Q3n1mTKsuI7k8xlg81Rsaqk1SCef7+q3wK2UyK02a/wJx8LkClXIFUaNdsKm8Dpngequy812FUtdLTBGxHLxHj4r0Jw7cuqWtF7zLnMBJ6lK6rCoO4+SYt+SRQQRhJlgIQjQQQFCNAIIACJGgggJBBGgk//9k= + @@ -147,19 +147,19 @@ Grand-Rosière +3281813700 liam@openerp.com - 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 + - Devid Simpson + David Samson Grand-Rosière +3281813700 - devid@openerp.com - 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 + david@openerp.com + @@ -172,7 +172,7 @@ Grand-Rosière +3281813700 gilles@openerp.com - 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 + @@ -184,7 +184,7 @@ Grand-Rosière +3281813700 jack@openerp.com - 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 + @@ -196,7 +196,7 @@ Grand-Rosière +3281813700 martin@openerp.com - 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 + @@ -208,7 +208,7 @@ Grand-Rosière +3281813700 jimmy@openerp.com - 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 + @@ -220,7 +220,7 @@ Auderghem +3281813700 famke@openerp.com - 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 + @@ -232,7 +232,7 @@ Grand-Rosière +3281813700 ashley@openerp.com - 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 + @@ -241,7 +241,7 @@ Grand-Rosière +3282823500 - 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 + @@ -251,7 +251,7 @@ Auderghem +3282823500 jve@openerp.com - /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBhQSEBUUEhQWFBUUFRQVFRYYFxYUFRcWFhcVFBQVFRQXHCYeFxokHBYUHy8gIycpLCwsFR4xNTAqNSYrLCkBCQoKDgwOGg8PGC0cHB8sLCkpLCksKSksKSwsLDQsKSwpLCwuLCwsLCkpLCwsLCwpKSwsLCwsLCwsLCksLCwsLP/AABEIAQAAxQMBIgACEQEDEQH/xAAcAAABBAMBAAAAAAAAAAAAAAACAAEDBAUGBwj/xAA9EAABAgQEAwUGBQQBBAMAAAABAhEAAyExBBJBUQVhcQYigZGhBxMyscHwI0JS0eEzYnLxFBVDkrIWJML/xAAaAQACAwEBAAAAAAAAAAAAAAAAAQIDBAYF/8QALREAAgECAgoCAgIDAAAAAAAAAAECAxEhMQUSEzI0UnGBkbFBUSJhBDMkQqH/2gAMAwEAAhEDEQA/AOjFRfxhwTAm56w4jPSpQ1I/isl8DDBh3gRBCLNlDlXgQQMOIYQ8GyhyrwA8PDQ2asGyhyrwAYhEwwMc27fe1FMk+5wpzrSoe8UwyBNcyM36jSotBsocq8AdJMwA1P39/KATikksCHpRw9d44JP9peLmAgLIF2YFt2pblGDw/H58mbnRNUFO+Z3Jfcm4sawtnT5V4HZnpzPVuTwBnfiZBfLmPRyB6g+Rjzlw/t9iJc4TM7qF3/NzVqTesbNg/bTPTOKpkmWpJQlIylQPdKiCSSX+MvQQbOnyrwGJ21odo4nh/bDiDMdWUouEhkU1BKgcx8RpHVezfaOXjJKZks0VmDG7pbN8xTmIap0+VeBYmXaHaFCh7KHKvAhQmh4UGyhyrwAzQmh4UGyhyrwAzQmh4UGyhyrwMFUKEqFHG6UjFfyppL69IsjkUDcw4hjeHEdjS3I9EVhCCECIIRYA4h4Qh4AFGI452glYVGeaoDLVvzFJpQal/lFrjPEfcSVzLlI7orVVgKVuRHnztV2lm4mcfeqcCzJKGfVn6X6QmxpFnjHtKxa5k7LNUETCQnRSEOWSkp5Fn1jVMyiXfxESz5YBfT7rFnDy0i7EdHBiI7FeXNqyqHRQp5gXHMesZLCS0rT3mUCG5g6V+vnFWdLQ9CGPMunbwixJk5AWvemo+lvSAZUm4BlEaVbQve33yiWZgSnLvT1+xAnEEliXuUK5G4P3QjnFqRxNnKq/pOxY0PQ/IQADOwTHMKPcbb+EbP2Q7RKwBKi5lqUl0/JSebFQ5gN01s478RKvyqCQocyCkuPD0i1j8UMmQ7MTz0PpCGegez/aSTikBUtaSakodlgPqnyrGWjzb2Y7WzMJOStNWJCgTQhmPpHeOzPamVjJYUgjMwzJ2P0ixMrasZuFChQxChQoUAChQoeGAK4aHXDRxelOKn29ItjkUDeCEMbw4jrqW5HoiDCEEIEQQiwQ8PDQ8AGG7U45MqQpS8pyh2IJdrOBUh2jzpiZ6p01UyhUpRUWYCpeg25R3z2lZRwzEFTjugBm+IqCQPXyePOhLOzxFkkXkyX1YvYpPoRFiXIUD3UuDcMwP8+sVOHJUtQAck0A+7R1Ls12XSkBU3vFrXEVTnqlsIaxpnC+xM7EVSnIPExm5vs3xAS4UFHZ2VoKG2gvtHS5EpgwDRZ9yYz7WRo2aOFYvsfOlnvS1Urb7+sQJ7MTlAd0kfEw/beO++7e4eK6cIlPwpAh7ZkdkmcJxXZmdLHeSWoXag+6RTxaVh8w0A8o77Ml7geUarxzs9LUSyaKqRsdxy5RKNb7E6P0chlq1s3zjfPZbxpMrGJStWQTBlBc5c2gOznwrGr8X4X7pVAWL9CRQ9D/ABFTBglVC1m5HSNCd8TO4tOx6sQtxBRqHs47SHFSClZPvJTJU9zsr72jb4tRUPChQoAFChQoYArhQlwo4vSnFT7ekWRyKBvBCGN4cR11Lcj0RFhCCECIKLBDw8MIIQAaL7ZMSE8NKdVzZaR4OonyBHjHD8PkPUerAv4ktHXfbmg/8fDnT3qwepRT0Co4xJDKERZJG9dk+Ed8KFB96x0rDSwAG0jV+yeDaSlRuQ/QaCNqkGkedN3kejCNol/DxkQA0UMNaLiUmHEUgSIjmpaJsrmIZwiTQIgmWtGF4iirxmV2jG4tLxUyaZz7tVhQogb18e6HjV/+JlHMOPIxuPbNGXKRrmB8Bm+T+UagcSVG73J+X0EbKW6ZKyxN/wDZRjEy50wEsVhIHg/7iOwgx564IpQnSimiiodbtWPQMgukPsIuhK90UTjazJIUKFFhWKFCh4YALhQ64aOL0pxU+3pFkciibwQhjeHEddS3I9ERY4goYQUWCEIIQwh4ANF9seGzcOCm+Ccg9MyVp+ojh2Cw2ebLSfzEP0eO7+0ZUybJmYdITkUhJcgklQVmDF6fC0cl4Dw9sUAQxS9OgimU1jb4LoweF/k6JhJiZaNkpHkAIqzZuKxQbDp90j9ZLKPQaCLmG4b71OU/DQkbtp0i1j+LJkZU2JolIDknQJSKkxijgbn9GJE7iOHoWULZmCx6fWM1wzjk8rRnBYuFOG8uRpWMKe005cz3aZS3JbvKCdwaJBa2+ojKYSbOSVBSSCj4klnHNxQjmIsbazRWkpZM3hJSQ+sUuJ41MqWVM7aRVwfEQpD6tGKxHFFLJADgfT5Qa6DVZguIdq8QKhKW/Sx8OZMYr/5BjHCzKdBuyVBvONhV2jkyj3j3v8FkeCmr4Rfl8YRNDBiCKEVBhtr5QJP4ZqvGQnESAtLm52NlCkaFgwxPJx9/ekdNncPyLVl+BYdtAdaRz33OWZMejrLev8RZSwKquJsXYmRnxkgXGZ/JzHd0iOLezjDf/eli2VJPpHa4tpZN/spq5pfoUNDwouKRQoUKGAC4UOuFHF6U4qfb0iyORRN4cQjeHEddS3I9ERY4goYQ4iwQQh4YQ8AGE7RBPdCg+YAeSn+TxzPiGB91xAlmdDh9dB6AR1bjISPdlVgoh+qT+0aR23QkTpSkt8JDgXsYx1MJM208YIyPBT3IuTuBIWcxSCrc384o8BV3RGxSg4iiKL3+jFS+DBP5dqu9Q9YbHJSlPdHes9W+dYy65bRheKzGuQOWsSllYI5kWAog7wHDJaVqWkkjvO1O9yL86xJwxPdPjFWV3Z45/OIxJzRLxXgiZq8ywcwIqR0BsNvkIpo7OqE4TEKy2zJAZCgAzt+q1Y26V3hziOYgi8WNtopSS+DC4uTQRpXC+znvsQskOELISNCol6/2hx1cRu2NnfOK/AsOUSZqzQKmKVm/sSb+h8oksIkGryI+x2GB4pNaokoyPuQwPq/lHSI5J7KuJKnY/EKT8Cs6z0UslMdbjVSVomWq7yFChQotKhQoUKAAViFCXCji9KcVPt6RbHIpGHENBCOupbkeiIDiHENBCLBDiHhhBCAChxxBMhTaFKn2AUHPk8al2p4cFYfMgURlPlQ+YPpG+FL+Mco432gmyJ03DDKZZJSHBcJVoK84zVlimaqDwcTK8EXboI2zCm0ajwlNAeUbPhVUjKnY1MtT512jWcbLImKJSVBVQaN0L2jM4qdoIhRLc11h5ji7EfA8XLCSFAuKVoRrYxhMbipalqKSaGjAmvhryjPYng4XY1Zuo2MVBwwSwwEStgLWu7mX4dMJQnN8TB/LWJsTaMbgcQbRdxJ7rwk/gizWuLKYlvDrAdpOJnDYCdTuiWUo55vwwT4l/GB4hPQFgzFBKM6QSSwuNT5eMar7SO10qZKGHkrC3KSspqkBNQHFCSW8otir2KZStdmd9hOBIlT5pHxKSkH/ABBJ+cdWBjTvZTw4yuGS8wqsqX4KNPSNxjcsjCwoUMIeABxChoeAAJkKHmQo4rSnFT7ekXRyKJghDaw4jr6W5HoiDHghDCCEWCHh4aCEACjRO2vY1U2Z76V8RZxu0b5CKYjKKkrMlGTi7o5xwNZHdVQpdJGxFDGx4RekYTtOUyMfSgmoSvlmcpU3kD4mL2CnxhnGzsboyurkXHFTUkKQWQPjo6mOoeH4eAsAnEgEhLApCQ5uK3brGWmoCk1rGFVwAZnFOjwIuiovN2MqvBzSSlE+WQADUOavsTtGJ4giahiZsovlpVu8dxpS8P8A9IFWVfXKH82iqrgVauz6/tEm/wBDUbf7f8LHAlzJqsxACaVD1OoqIznE15UARFgEhCQLARQ4rjnPIRFfZTJmie0rEth0o1XMHkkEn1yxoHDeGrnTEoQkkqIFo3biuJRiJ6gsZpaO4P8AL85B0ag6iOn9iOzkmXhZSkgE5fiYOa6xrprCxiqPG5nuC4T3WHlS/wBEtKfIARehQo0FIoeGhxCAeFChQABMhQlwo4rSvFz7ekWxyKcOIGCEdfS3I9ERYQghAiCEWCHEEIEQQgAeHENGJ7T8bGFwy5n5myoFKqNr7X8IANT9oi0TJ6EpUCtCDmY1Qp3S/Oppt1jF8C425yLooevMRgcHjFKnErJKlHMSS5JNTaJsXgu9mFH1Gh3jDN3k7m2mvxR0zCzcwibJzjSezfaIpWJc6itDor+eUbvLTmPXWEizAYogFy/GJsThQBQvFFc7IFFRhyBWzIsdisoNY5/2g7Q1MqUe9+ZQrkG/+Ww8es/GePqxGcSSRKTRc0V1bJL3Ud7CMFJw6QTlBSXcBVX0OYm/1fVocUUVJBYVASkABhYGt+bir7x1v2f40KwwQTVJJA5G31jkhmPYUJrQM+4I6j06RvHYfFkT5Y/VmSrxc/MRog8TNJYHTIUKFGggKCEDBCEAoeGhQABMhQpkKOK0pxU+3pFscilBCB1ghHX0tyPREWEIIQIghFghxBCBghAA8cy9q/ECZkuU4ZCSsvUZlUFOQHrHTY457RJ4PEF1DAISeuUfJ4hPIazNZw87LiAKeFtPWNzkgFIjnswNNB2+3aOhcPGaWD0jHVWKNlJ/iXcT2eTNRQfekQYfG4vDDKUmegWYtMHLZfoYznCcYB3VRkJuU0EJEmarM7fkBhhsQVbZD5O8U14LGY9zPBwuGFVB/wAVYFSCfyj7rG8ScONo0ztr2gSs+4Q7IUCpQLglvhAFxU+IiaxISlZGA4likrKUS0GXKQMqUNQbqLH4j4384VywzVO1gxqGL+HlpESByFQHo7ZmYnTX9onKGG4LVCU/MuwNS8TyM7d8wJiu81Mw1oR0bfS9DF7hXE1SVpUn8pBr8ooKcsFMCKgMANNvlCnLYUua5bsXZy2n3rDQHZOGdsMPOUlAUyyBQgs5o2ZmvGcjgOGxmVaWLsoFmyl9xsY7pw/iCJyApCgoa7g7EaGNEJXzKmrFqCEDBRMQoUKFAAMyGhTIUcVpXip9vSLY5FKCECbw4jr6W5HoiIUEIGCEWCChxDQ7wAJSmDmgFSTQeJjiXbLFibjpxSQQVAJL0okBx5E+UbF227WGapUqWWkouR/3FA6kF8r2DVYnZtGKgp35E+DCv3pFM5XwJpFHEDv9dqDyjfezCnlgHaNLXLJKXYWenl0jcuzacpCfKMtRmqlkbHKwuojIYZDQMuXGP7QdoBhZYIAUtRZKSfNR5QkSZU7Y9ozJT7qWxWtKsxeqRanO8aGlZuLhgasGNWH38oZSlLKiouonPmsSXJfryAix7xwVB3o5sz7CuW+383JWM0ncZLJcu+pFTTdX38okTKAuAoEUIBob62hBTMX7qhV/Jhv0G8VZswlwxSLgakkfm2DEUhkQytwAkgmjEhzdqM+zvanOKOIxABo4LtWrkXf5ecHMxelTokEPrRm6Cph8PJYOSCok/wB1qN0vEhBYZKviNToQH8njK8M4vNlLzS1KQWc1AcUpQVuIxp5hRo1S1dC2z+cXf+PkTYOL1fvVp0D+fSC4HT+zHbaXOQETlBE4ULhkq2INgd7RtQMcClJGp6FiTX6WjcOyHbYySJU8lUstlNSUdNcvLTTaLYz+yLidOhQEuYFAFJBBDgioI3EFFpAGZChTIUcVpXi59vSLY5FI3hxAm8EI6+luR6IiEIcRVx3EZclGeaoJTzuTsBcmNK4v7RlHu4dOQH866qbcJFB4vE20gSubjxjj8nDJeaqp+FIqtXQbczSOdcf7XTsRT4JX6ATUf3n83yjD4jGLWorWoqLuSqpPMnUbCAlqKlq1o37sPERTKbZJIp8QmW2JtyApz1ijmIVdv2v4xc4uAFIHJR01J/YRSUnX7P7RFDLKxs7VY07rGxbwHhG59nB7wIWNmPUXjSkKCgxtVnoCdr3o0X8B2gm4Y/hsUmuRQJHJi7jziucdYtpz1czo/FeJjDyVLLEgd1LgFRJAAHnHNuIYtU6apUyql2GwFG6QXFeJTMTM95MYOlkMO6BcAbPu94pFaU/ES4Nkhy2hIsk1asOMbCnO5aHfFGcaNehIoL/dIIzBmORyoBiKZUuzurW9oppJW4IypJILUL3ZSteg53aLSAlLh8rVrcXADWsD/wCIiViseeQSHckBnbKNCWGgqOZYxQmTiaJzUtcVrW8STZhKqk3r1Nz4Q8mSwBGYljuKt+zQxAIktUu+pJZmHpE6jo+gBYMKljXxhLSRomwbcVoX1v6i0WMFIUtbPQEOwFg1qfPUiAZLw/CfmYufgfQBhnLDy5xamAAMQHf4SR1uG8YtTJfdYGtHDkMA1A2wiKXJbTSvm1360hAQJAI1Fw3yLneI1IDXfq7p6K+kWpgsEi29Sd+n8CGWh6tVq6A3FaUgAyPZ3tbOwqgk9+Ua5TVumx6U5ax0jhPaSRiAPdrGb9BYLHJtfCOOKFcpGU8y79POFLQx1ejG0WRnYi4ndJkKOedkuPT1CYlUxSggS8uarPme/TeFHIaUd/5U+3pEorA3UxDjsciTLVMmFkpDn6AcyaRMY577ReJlU5EgFkoAWrmtT5X6D/2jr6btTXREPkwXGuPrxM0rUSkBwlAskbDfQk6+EUZCa/7O3+oaXRzerDycPFjSl+bAN4c/nFbZYABlq49LbA71EDK1LXPjQbtRvpEhQSOfTpZ9NbQEh3c6fz+8AGtY3ELmLSXpQNYMND4PFtNR9LuRcP4esPxDDhMx0pbMlJZmuND5m8DJDWFDTepHPq3rD+Ak7sNJAqNBzqbgdaRMhQDqUXULJua1DkW5uRCCGehAFbNXQOS4tcRKkBJaxsNK7geVeUAgcxUAPgSH5rIoaU7txV9YGVLADJYC7DbT/fKDChuG+nPe5iRz+kU01cOK+bPAAg+7/l0DPdn1qeUEUqf4Q5NbM16De8Ryylw4IAd2Z9XYHqa84POxFz+5blTT1hAClBo5FybgO30b5warXfuNyrTz1MAwZgGDU8Henj6wZLly9dvJq9C8AAsHLoew8Lqd+kZjh8r3YoLsT1ZwD0flU8oDhfDKJmVscqWzXso71tZ/neChQubmpZ605nnz8IABUkHagZ/I6fdIiVfMKa8/WCXNLsC4swAdt67/AF8pk4Yt8LVcVILWAFHgAiTNAbnQWBeju3SFNSDzrvta94kQwou7bkM9mLdf4gZhDli+hFaC1Tv+0AEGVyQXKiRf9/CHKQCaZam70uOlYnQAEuE3e7BjeoIECqS5Lamoq+hsd39dIAMn2UUAZgZqS77PMZtoUW+zcts7jRA8iuHjkdJcTLt6RJG6G8ch7QYkzcXPWG/qFIfZHcHS0de18Y4nh5hIJN8xvu5qTHYL+uPREFmDhk79RXT7eLpQq7dGbe4ApoPOKMsvcsK1sObbmL6lEAfXw86fK8RZIrTlnrycEUfryLcvGDkFki1CSz7X0g5mUoLvQswoKa/OGSHYGxBDvflABjeMo74DhyGZ3NCdhWh6RHIU41CXYNctdRb9tIfjSFlYVkdNgaBjUkcnv4Q8hFHcJJCSX1bqx+cCG0laxMZjB8xpvb9PJ9ojq5YpPMtVqEloJSSW+Ek946GrsNCNd4iOUM6CGZ20JofNoCJYyHVreTVFxex8IBaqbZqm96+dhS1IeWlLAAEaHSwcE8rbRLOUas4ctXZLu+2lOR5wARS001rU7UoxGpoYSpbs2lb6nx1b1gveUN62oPB//JNOsPLND3XJ3O1Q1q0bxgAQ7pKXTZqaFWvWo6NF/B4TOxVVFQLsSHLUq3P6tEODw5UpnAAPeIFUgPQHWw6xsCZgSAALBgl6Afual4AAlDNRg/6gALb+lIhxCCB3lE83qH5DwiWYAWIAatAQSbgC1q+kAnEJA6ixINByIMICIy9d6GoILav1Hr4RLImAsAD1JJGgFYUpIs1HL0PzGnPlE6yCGAAFBsddb7N1hgRk92qgz8z0fyitlsUBROjOdQWIFLteJTMCU2Icjukj5kaeMJMsAABPIsWPMgiAAMNOYnMTTqOteu+8CqcnMasXrSlAX+h8KRYUkC7l7Fq2a71q2kMhI1FK89K63v56wAZfsur43YUR/wDv1hRT7Kzipc9mA/D2I/OSz/eusKOS0kv8mXb0iSyOgvXxji0hPxNUZlN0ct0/kx2aapgTs58qxxCTPHuRXm1tWqfXyjr1/XHoiCLAIZ3NGo1Lu/3vE2XNROgFT8g9v9RXwyDctuX35eEW0qYAh6UpZqEsBESQxkhqdXYuT02H1h/eU3NrX3ECVaCnja4FfKkSnD91jVmb/dxTeARHxZjhkmjgpPOue7jciMZIJsK7B1cie6PmIzKJYWgBbMoMU1SKWLp2L+ERI4AACUqNywoW8ymtdtTABilqSTZSamopzDVf1hpc1mIXuWIPk3V9vGMhP4OoA/iUFnSpjoGYFh/MR/8AR1ue+mjklj5Nl3+UMCsFmoKySAdNK1FOn8xZE46qdhRxoH0OtBt0ixL4OofnTUA60FNMtRTX/aPDF1qmuvw1c2oKQgIiylj4i5s1L6trQ220hsNhnKUhBJJNzy9NyeXOMgnhsxR+JNrZm1fdntFnByPdpO5HeVfugNkGjb+UADyMCmWgjQFyRYlzVxZnp4nWLKZZJD/DSrnWgYHVmu0Agkl2IY3YEaMzXtsbwwWGoL6X38/4hAAmWxqKNTkLfPaHXLFWLjmCOZtb+YXu6gUIvY02+sJSjp+qlAKcwL1cnrAA4BU7pNX6PzrZg14aZIAAdNQx/VqXu5vSEqWAL6VYJAubUL0beHCMqtgXZjozaWsB4wwBmyqEAhOnOjAgBqa/xDSyXskgGtC926wap4u4bus7kudmdiG8aRFLkErIA5l9Rro+j0g+LiG7pB0fcE+ZuKiK+OmqDISaqYXpvR9vqmLYWAlwnSxub1G8YvD5lKKmv3bltSfEv93iSBm1dj5SUJWAR+Ryaue/y6w0H2VQHmMNJd7/AJ7jSFHH6T4mXb0iayNu4h/Tmf4TP/Uxw+Q5CQBZn1tX5x3PESyUqDXCh5giOP4fg81s3upgsKoWbCtGeOsVWGpH8ll9kELDCjBjY2et/D6RLlYFOZuQ8y5YbRIjhc4f9tfXLMB9BEkzh80AfhTK7IXfc06wtrDmXkkQJuyQ9Xv8uVfWJJqHlhPLSqulLaQ8vATSotLmsLfhr7x8qROOGzCQfdTC/wAQyrHN7ekG1hzLyBHJJo/pSvN7f7idK72UevVrcniWXglA/wBJVrZFMKNdukJGEmju+7XU3yq+ZFBWFtYcy8gRf8ckClTYUNbsSSdDtBIGVLHM526ActWg/wDgzFCkteYOB3VVY3zEDeHTgJhFUzcw/tVzeHtIcy8gFmLGr110YFyXoNmO8NJmlu9mABe45OwAqIGZgJv6JjP+hTcyx+cGMJOVeWpxbuK6XbpeFtIcy8gEucRUZk1FfhcXVexp4PEoSMqnN71cEnvGrtApw8wsFS5liaS1AeIILm0OrCrytkWCSH7irAhtOkG1hzLyBDPnBNCkkM7OQQ1XFC9h5GJcLNlFNSpwO8GAZwXBe5AYRXXgZqiT7uYC4zAJLFIcDLyZqcjuImk8PUouZUwafAp3ezNat4NrDmQBSsNKIZKmFGfu3Ac5SXb76AiQE0Zw9h5X+/rAL4bNTTKrLWmVZL+IpqPCC9zPllwFlh+hRs/Itq3h4Paw+15EOKfqpoa1NfkPlEBnEqChYvv1qIuJM5J/oqUOaGLbOE7eNDDjDZyc0lYKv7T4F/u0LaQ5kBQTMFCpKVMSQS1dGcCpYRdQFFSlZS47oINKhiGN7i2sQpkTULLS5hGncOvhUU61trE0sz8yzkW1D8JerFg4ejD7vXUnrYJq3ULK9wOJTC2QS2KqBVCHUXDt/kH2cdYgxxDhNjlzaAAGmZ9fDeAkpmuVZJlFOB7tTufibu2FB5bQ83BTVVMtelPdkO1tOcKnqxea8gZjspM/qAaBBpaucwoLsnhpife5krBOS6VAfntTp6Qo5nSUk/5MrP69Iksj/9k= + @@ -261,7 +261,7 @@ Grand-Rosière +3282823500 jep@openerp.com - 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 + @@ -271,7 +271,7 @@ Grand-Rosière +3282823500 jod@openerp.com - /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBhQSEBQUEBQUFRUUFRQUFBUUFBQUFhQXFxgWFBUVFBQXHCYeFxkkGhUVHy8gIycpLC0sFR4xNTAqNSYrLCkBCQoKDgwOGg8PFywkHBwqKSkqKSksKSwsLCkpKSwpKSksKSkpKSwsKSkpKSkpLCkpKSksKSkpKSwpKSwsLCwpKf/AABEIAQQAwgMBIgACEQEDEQH/xAAcAAABBQEBAQAAAAAAAAAAAAABAAIDBAUGBwj/xAA+EAABAwIDBQUGBAUDBQEAAAABAAIRAyEEMUEFElFhcQYigZGhEzJCscHwB1LR4RQVI2JyssLxJDNDguKS/8QAGQEBAAMBAQAAAAAAAAAAAAAAAAECAwQF/8QAJhEBAAIBBAEDBQEBAAAAAAAAAAECEQMSITFBBDJhEyJCUcFxI//aAAwDAQACEQMRAD8A83hEBEBGFRcIToShGEChKEYRhAIRhGEYRIQktvZPZapWG+4inTtDnAy7kxvxfJdBR7I4Zo75qOvmXMZe3wgEx4+qjI4WEgu4/keCNt2oMripMyJyIVrC9lMDvd41jyJAjLg3r93TI8+Rhep0dhYFmVHem0ubUd0z6cFG/AYJ1vYszGTCPkROt0yPMIQhej4ns1hHghrHNiDNLenKfiJB8tVg4vsSZPsKgf8A2PBY/wDQ9bJkctCSuYzZdWkYq03N6ix6HIqqQpDEoToShA2EoToQhQGpJ0IQgEJJySIQQnAJAJwCkABGEQEYRIQjCICMIha2TgxVrNa6d2ZdGYaLkrew+yMN7ZzgXOptiKbyCS+xgkR3Yc3neFX2LRDKL6riBvWHGARPnfyWX2Xxzqj6zjlvGD1IJ15DyUJdlVx5NxbQcAIyA0FvRU2PeQXSbi9zrx8imRvCBynmLOiZTi6H2ndgjTgNDnHHnyUAjEuENBmPdJib3AuJiQoquOJIhxygRxtJt9OJQqnu2tcWPP1BtpZRvYJPQZ6QAeEjP7ugl/jqvvBz72s4+M/eis09r1SPecYOsTExBn5dVTY+CM8sgIgicgeaayuBE2zzHP8ATrkgvHbTyc7cMom59AfXil/OnERvC1r3mMxObf3WW/ei3GJyA4ffJRj4pGUQeeufVB01Pa26DvSWmQfiBnjxPVZeL2JRrDepxTcfy5STaWaDp5LKNYtsJAIkkER0jLNTUseZ3rTIiJB6+nogobQ2FUo3cN5v52neb4xl4rOhdXT23G8CQRMQbGLz1nnwWXtWgxxL6Td3PebNuO83lGY5KcjJhCE6EoUhsIQnwhCINSTkEEQCcAkAjCJJFKEQEQSMJQp8HR3qjW8SAiWnt+r7DAgCzvZwePfuZPTeWZ2IoxRLj8Tj6WS/ECsdyN43eGx0k/ULT2RSDcPTa3ukNF+ZGnO6jwjy0WOdp1MHqb8PVJ1Tee2/9swORtdPNSWuhwMNAga3vrn55Jlal3oiLjdvkYABgeN0SjfmQTPeF+kifVCq0uceYuBaLDThF09rIDpOTj8zYD795RvqXufhniZIEQoSY9pBbc717wDqYE8EH9OJm2ZuZMKRrbtIjObi+YJ58PNNe+0AC7r3jjYRqgjc838iQCToZ5C5TXgTY6ax4g+SfUqTMETaNTkLTPX7KiqgwM8rxOdxEDmiEWUHOWzy5fNQlwEzwPpfPQQnvMkEwInQAxzAvqq7wIzN79RcmfvVSD7QZEiLGPCJ1UDsRqLxe+Xj6+aFarl0HISTkqz32Pl4qBaqATLcjccuR5jJNhNoGWzzP0T4Vg1KE6EoQMhJOhJBCEUUYRAQnAJIgIkgFe2R/wB0HgCfSPqqYV7Zebug0nWUGZ25YSxjuDgDnqNdNFvbMqf02Otk03mAfdjyVPtLhzUw9SIsQ4WnLeNj0J9Fb2eQ2jTGoYLW1Av5wo8I8rzWSRED3Gm3p6IvaQ10/ERBj15ZqH2sCJBuLnOQIOmSbUqHdGfxAExu2AvOuSJTPw0F5mLjI2nIfOfBMqaZzunOYBAPK565KH+Ic7elwkxrzBNrxnopg7dcDvADd0JPw5+o8SoBbQdDI/MYyHA5c5UVVp72d3DTre1lNTrtAbJuLujd/NyJA/4KipuaQbjMAXnjPLh5qEq9VvvXMcb8OGWaiNt2RwmLHMzHkdFdrtEWkSL3EZZeQz5Ks1tmm13HgeZN0QpucJBHHiM7a9TkoajsiTOZAEWz/VSVsKYEXvyIvefvgq1SiWgeP7AKwjrgESMx6eHiqjnQIH39yrBfMi8WUDwkoWMDiAd5mrb+djby81ZhYmwqv9Z4OZLvqfot1SGwlCMJIk2Ek5JBBCICQCIQKEUYSQGFe2b8XQfPRVsPRL3taM3ODR4mF2+wn4Wvv4b2RYWyA8hveOU74uHcj+yzveK8N9HQtqRMx1Dl8TjWtmTaLgxfXLrfwUOyalOs4spvI3WmRY2yAAnIQPRZfbzY+IoVA192H3XNyPXgVR7F7IqVMQNwkbufC+YPHRTFoxlnNJi2127djNMBxJiZkkT1A8lMdmUhaAbEjeJMcLSfvyVzG4V1M9/ugwC4Tum+X1hRuYSLgGIPAAHS+d+PFItnlE1mOJRfwNPds1oI5Dw00Q9g2fdAkGYaJjL5j1UpbNwC0EEOztxy8DZN9jYgZi4sbDW3MNnwUIVjh90nutEZ5X8Iy/VDcAyA7wv5yfpZSveW31yO9mZzN9FFXLBZz2NmD77Zvr3Z4RCJJ7RfutMcQDIHGRbxlRP3TbdHhYZaqB22KLf/ACX4RPpaf3QbtehIh5ANzIiD/wAc0Qe/Ct0ka5mZ8R9yqGJwJbqHAcbHSw8Z9Faftqkbh7dJzuOMfead/GMd7rh148ZUjEqDiIiMxeL5qpUaIEa8PvktvFYQPzzOULJxWHczO4ynIjqFOUM/Yzf+of1d8it5YuwMN33vP90dCbfVbasg1JGEoUAQgnJIIAE6EkQpSQRASARQWdm1N2tTccg9s+a9C2PsxlGi91TWTPif0XmwXfbTxLquCp7ubxTJ8Rf1BXPrx1L0vQ2zE0/yXJ/iDtH2lZrWvD2Umb0zq4m3WwWr+FmzRDnamTKxtvdnvZURWcSd5wDuAgOMfJdp+G+BNPD7zhBqd4CMhp+qzmcUVtX/AKy39p4YFhBC4/G9nyJNNxbxg2jpku7xzO6ei4faYmd48dZHkVnWcT20xExzDl9ourUzHtTyEibZLPrbTxJze7TXhkeoWhjdl73u1GjpLfkVi1dm1WZPt1ldEW+XPNMT7S/qOneJM53N09mEPkpMNinAw4StWk0G6ra0wvWkSxTgyFFUw5hdFUoDgo/4UAKsXTNHJ18M7mq289mR8/1XVVvZ6kDqsrFBnEFaRaWVqwGB22cj6/rqtUVmvFiDeP8AlYWNwQFIuF53cuoVvB4N5pgz3ufDmtInLC9MNChRDRDeqfCqUsWZh4IPnKuK7I2EkYSQCEkYSUiBOAQATgiSRCQRCAhegdhKja1L2biA6kciJlrjIt1kLz8LR2HtY4esHi4ycOLdfHVUvXdDbQ1Nl8vSO1XZ2m/DOpxDC5rjBNnBwgwdInzUuzAGMa0ZAAJuL2qyrh2mm4GXN18boUn281xWd8e7lsC4hcx2g7G060mXN47piVu4SqtB9EOURBb7XjuO7B0WhwBdvH3XEl0QsnZnZtlMOFUudmW7sggxnvEC3LJetbZ2U1wNo5yuUxHZ0k90OPVafUtHEqfTpPOHF0MBUmAJiLzIz4rpMBsYyJ1XR7J7IlneqeDRkOvFaDtnwbcVWZTDmamzN0GdFym2sWGEyeUBeibfobod0BXA7Uwkm7RyMT1SOJTbpzdDEtquLQ182tLZMkNAEm5lwsFbZg6clsua4WLXCCOoK1cFgAxwe0br9DAMdJt4qSpskOfvvku1Op5dFtN4xwwjTnyxsRhCwNzLS8fVaVPJWNoUp3RoDPkCPqo4WmnOYy59aMWwaknJQtGRiSKUIGwkikiEITghCKlIohBEICigE4INHYVUiuy9r28Cu/o1LDw5LzvZX/daeEnyF129GtLei5Nft2+n6b1B60GVbWWDh8SIlaeGxIOqwiXZaMwmrUic0KVMDhxTzUssfaW1S0GBc2F1OcM9szw13125KI0p6LP2bjKYa0Pe0Pde5uVtYOmJzmL2V68k12ub7XWa7wC5EskQRIXX9o277Hk6LiGY/dfuv1Ej5Ktu1scLNLCBOqUBCs04hQ1nRKonDDxnvRwUCkrOlxPNRrv04xWHl6s5vJIIpK7M1JFIoGpIpIIUUAnKQkQgiEBCmw2HdUe1jAXOcYaBmSoguw/DbBb1d9Qj3GFrf8ncPAHzSZwtWu6cK2B2QylXaxzt+puu392NxloLZzce9mpsFXglrs2mD1EhQdlWmpi8W5wvTd7PLXeJP+n1Um1qXsq4f8L7HgDlPl8lw2ndPL0tsUj7Wvh3cDOh/RauGeVk4F4zkH5HotqkFk13RhLVxFlBgqAed4ieEz9UMXiGtzi0eJ4KHD7VDrNMnkcuqRGZUmTO0PZCjiQ0uEObkbeSxf5zUwXckuAGZJPgSb+a6HFYnu997Wjm4D7C5jalNlZ4DarHATMOH3C2WrumEVbtZ7VhbHvZ8ljbRoBzQ5ubb/qpccKDXbrajeFspyzyUP8AFMMtDgTunIg6HyUTCszMLmBxXcuq+LxljGeSL+60HKWieqoaqNOu6ymrqbahCUIpLueYCCISKAIFFBAEUkkEKKaE5SEnBNJUNTHNGs9FIshel9kMAcPRbve8477hw3hYdYhcl+H2DbWqh9QAgElo/wAY06keS9I+LqqW/Tq9PT8lR2zGUqlU0xHtne2PMwGu+Q81i7ZwYqMc06/YhdZ7HebBzb7p+axMXSgkOEH59Fx3rMTl2RDktl44iQ6ZYYPPgeWq6LCbVAFuvVYO2MEWO9ozMe8OLcyjhcUHtG6Re8C3SFSVOpapoCs7vG3Dqnv7IYUSQHga7lRwnnY2UWz2u4ff1TsRinsGSROGsSz6vZrBgzvVmn+6o48dSVlVuz9GT/UfGnf+dlLtDalUmGsnwlZDnVibgdIWu5r9WI8Iq+x6e+Qwlw1Jk+F1bZhmshrQAI0RpggXUJeXu3W5nM/lAzKrM7pY3tk3aGM1MhgO6XAGAYsCdExlQHIrdwzhSbugS0iCDBnrOa57aWzxd+HBbF3UvhPHcIuw8sui6dOIrGHHq0tblKUlg/ztzY+JpEibGFew22qb8zunn+q1w48r6SDagORB6JKEkgiggSSSSCuXAZqniNpgWbfmsqpiCcyVE56vhXKzXxxOd1E+qoHFAuUj1L8JawvxG/6ln7eS9CxNnTovI/wqxobidw/EQPBwLfnur12q6QQdPsrG/b0vTc0W6DpEqPamz/aMsYcLgxl+vRVcHX3bHJbNN1vqq4zDWftlwGIcTvMcIc33hnbiOIK5fHYd9F+9TmJkt48SF0vaTtjgHVxRbV/qSQHtBLWn8rnDME8FSqUi4Qd13HdId4x7w8lzTWayvMReD9jbea4AtgmDI1nWeC6RlVjxcDhpdec4zZoDt6k4sd5g9eKFPb1ekIcN6LS10+majET0yxNZ5d3tB7GtiAPBYeLrt0+i5iv2r3vfcRyIIVLGdqhHdl3DQeZTZMp3Q0dsbSDRAzNgNSeSk2JRgSfecfv75rkX7S3Xh9Yy4/CL7reJBynhnquw2PimVADTIPT6jRbRTbCsWiZ+VzH1Yaeh/RV8C6Gm0TfqOIUG2sQLN8T00+qr7NdxM8OQVl8cOT29S3KrwMg8kdHDe/VUGV1s9rG/1Xf4s/3Bc8uis8PL1YxeV6lji090kdCtHDdoHj3ocOdj5rABUjSrMnW0NuMdnLfUeiv06rXe6Qei4hr1NSxJBsYUbVsuzSXMjbNT83yQUbZMqxKaUEldBBBEIDVBqdnMaaWIYQYm3jmPUBe9txIqMZWb7rgN7lOvgvnJjogjSCvc/wAO8d7XDOByMHpvXI8w7zWWpDt9JfEzDSxjSw8s5Hz6LmPxN7Tvo7PDKRLXVXbhcMw25Inw9V25w1t12Wh4Lj+2XZY16LqYzmW6wRkRy/dZw77xurO3t4dhCd8Obm0gjqDK9Tq9uxjHUvbsbTe1pDqm8BvuhsCTE3Djc/Frp52dkvpvh3ccDEOs13R2RWqymYuwyfeYcnDix2RK2mImHmae7TtnDsNoVmES10uvl397xb9f2XNYjGFy2uzu0wyKboh3uPjdM/lfzWfi6lOnVc9rd4ky0RLWnVxmxMzA0zPBc9tLnh3fUi0ZU6OwnP71TutiQHfF4cPmsraWLZTdFKHOHxQIb0581a2ptOpUBDbTmSblZAwu60kiePCdBzV60x2x1NTxRn1CSSSZOpOq3OyNR7K4cJDYO9wiE3ZmwKmIeLBrczpA/Wy6ars9lLdpU8yAXnlo36+Cta0dM9HRnO6SBNRxcdfsBOwFLvkFWMPhjCs4fDQ4nksna43tUP6j54U/qufXQ9rD/Ud1aPJs/Vc8t69PK1vfIBHeQhJWZDvIhyaigl9qUlEkiF5FNlOCskkm5pIOzQJel/hBtYCoaTj70i/PvN9QR/7BeauC0ez+0DRxDHC1wJ4XBB8CAomMwvS220S+kGU1DisODEgHiOI1Cbs7GirTbUGT2g20Oo8DKtHJc71Ys5HtbsajUxVP2bGubWa/epkRJpxLgCLG/jBXMY78PGi+GqPZM9wkiOQORHVel/y5jqgqEd5s7pkxfMxMTzUWKoCZjPPgVJivEPI8NsupSLmVwT+VxzkdcrKpjcJF16N2twwGH3jmx7I1zO7E56nyXDY+IM/OFrW3Dl1KYt8OTxL72W/s/Yg3AH6d53U/YCycJQDq/wDa3vX14eq6nAsNR4baLE89VS88tNGsTGWl2XrDCNe5zA4kSBxDrNB6xCr0NnG5cO8TJIWlicKPatkTAEeCvswt/wB1l26orEcshuE9U91DdBWpWwigxbAGnkiXlHap01T/AJO9ICxIWnt981vCfMkrNhdMRw8S85tMmpIpQigJJwCUIGopQkpFwJwQanKUmpP/AESlJwsUDtExpTgU059UHtn4V7Y9rQNMm7bjxs71E+K7hzF4V+G+2fYYoA5HPobO+h8F7s4rG0Yl6GjbdWAAumlpjROb4JuIqBrXOcYABJ6ASfkqtXFfiRjIoCjTP9R5Du78LRInlJy/xK4w4emwb263eAjeIBd5m60NpY41ar6js3EW4DJrfAALBxlQklaxGHPa0XlXwfeqnK4K7HYmEh3l8guIpEtcCNF6F2WqNqAObykcDqs7x5baFsRtntfxGH77VpUMPCjxLe+tLDe6FR0TPChWp2Kytsd2i8j8p+S3sYLLne0tbdwziTpH1+iImcRMvGdqP3qzyOMeVlVIUj7kniSfNNq5LpeKiCdCTQiiACUIooGwgnwggtBElAIlSkCUQE1OCANyQqIhJ6CbA4k06jXj4TPUajyX0P2X2j7fCsdMkDdPUa+IXzg1eufhDtuWOouOnd6t/wDkj/8AJVLxxl0enti2P29Ka1ZvaEOOGqgHNpy8ytP7Ko4lkyDkfqP0WTtxl4y7Hb1Wqwf+PcHiQ4u+g8E2sbQoMNhyzHYym7NtT5FwB8iFYxC1xnEywraaxatZ74n5hQqtutzsdtL2dcD4XGD10WI6+Smw003B2ocD6pbHSNOLcW+cZ/j1Vxl0rWwjAQsXZz98A6wCugwgssHbbpn7Rb0XE9vsTu4YjKxjxt9V2m1HXtK84/E7Gd1rOMfU/QK1e2etO3Tl50AmV/qpAFFWNwt3kk0IkIhJwQNSRSUBQkkkhhYSKCBKsCigE6UAQqFEBMqoDkV0PYna5oYpjpgSD1jTxBcufenUKpa4OGYII8FEpicTl9QNeC0EGxEiPPRQ1c+qxuwm1vb4NvFkN8Ilp8reC2K0yLeqwl6tcTy4Dtn2dDMV/FMiKrBTqDLvtgtcOrRH/qOK5DHu0Xp/bgzhJ4VG/wC79V5biLuWtOnLqxi3BYZkXUWMqQrVMWVHGuupxhE2m1cZ+cf16p2ccTTaeQXS4U9391zHYx4dh6d82jgulpjOB8uqwdszlR2qJd+y8e/EXETiQ3h+w+hXr21nQQfkvDu1mJ38W8nSB9fqr07c/qbfZEMghV3XcrBNlWp5rV56WEnp0JrygCCcggakkkoQnKCSSkFP0SSRIBQ1cwkkiEkoNSSUj1T8HMU4+0act0+hEf6ivScUIARSWF+3paHthzfbQf8ASP5Fn+oLzTdukktKdM/Ue6DnuWbjSkkrSwjt6V+HNQ/wzerh6ldi2nL78AUklzvQ8MXtI7d3o0DvkvB9qPmtUP8Ac70MJJLSjk9V+KpUNvBR0Uklo40rk1xSSQJNSSQNlJJJEP/Z + @@ -281,7 +281,7 @@ Auderghem +3282823500 jog@openerp.com - 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 + @@ -290,17 +290,17 @@ Grand-Rosière +3282823500 - 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 + - Luigi Roni + Luigi Rondi Auderghem +3282823500 lur@openerp.com - /9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBhQSEBISEhQUFRUUFBcVFBcXFRYVGBUdFxQYFBUXFBUXHCYeGBkjGRUUIC8gJCcpLCwsFR4xNTAqNSYrLCkBCQoKDgwOFw8PGikcHBwpKSwpKSksKSwpLCkpKSkpLSkpKSkpNSkpKTUpKSkpKSkpKSwsLCwpLCkpLCkpKSkpKf/AABEIAKAAgAMBIgACEQEDEQH/xAAcAAABBQEBAQAAAAAAAAAAAAAGAgMEBQcBAAj/xABDEAABAgMEBggDAwkJAAAAAAABAAIDBBEFITFBBhJRYXGRBxMiMoGhscFC0fBSYoIWI0Nyg6Ky4fEUFSVTY3OSwtL/xAAYAQADAQEAAAAAAAAAAAAAAAACAwQBAP/EACMRAAICAgIBBQEBAAAAAAAAAAABAhESIQMxQRMUMlFhIgT/2gAMAwEAAhEDEQA/ANahBPhySGpQCUGPQyn2qPDUhq5GMWvLy8mIE8uFUekmmctJD88/tUqGNvcfDLxWZ2x04RnEiXhtYMi7tu87vJC5JBKLYW6fYxP9sKm0Ed/iDf1XfwoDmekKPGcTFdrVFCDQeFyuNH9Nmy8Zky6ESL2nVdTEUzuwCnm7kmVQePHKP2bykxMDwKrrC0hhTcPrIJqMwbnN4hWSqTTWiSqI0GdZqt7bcBmNidE0z7TeYS9QbFzqhsHILtmHP7Q37TeYXRGbtHMLhlm/ZbyCSZNn2G/8Qu2cNFi4GJ0heolhnmNToSWhLWoxnqoM6QNOf7I3qoRBjOFScerBwNM3HIeKI7ethsrLxI78GNrTacGjxNF81Wvbz48aJFiGpe4k765Ddktk/BsVZ60Iz4ry97i5zrySa+ZxVZFZQqxkGviuAY0mv1kiWW0CiO7TwG8bzySm0h6i30BTipz4B6lt91a02o3GgzAL7yq217G1G0GAS81Yx8TQ1oJpA+VjtewktrR7cnA4/W5fQkrNNiMa9pq1wBB4r5vs5gYRXEn+nojmzrcithasOO+G1t4ApS+84hdDkxl+MB8WfXZrq8spbpNNZTRPEMP/AFTn5Wzgwjg8YbT7J/qoH20zUl5Zf+WU6P0sM/swlt07nB/kn8B/9LvVRntuT6NIK4lFcXChQSkkLrngAk4DFEgWZH05aR0EOVacB1j+JuYOVT4hZZYVmOmYzWC5vxH1T2n9uGZm40Wtz39n9UGjfKiIdBZcQw57iGhrQK+ZKTJ+Snjjug/sKwocBoDGgXY5nxVpEYg8aZs12thxCa/aYaHe0gBEkG0NaHrpb/SyNeBcVUlsygLCVFntJS01c8MZuYXHxyCk2ba8OMCGvDxgaijm8QlNasK09Gd2k4g723+9UWaGTjHR4QiAOY86pBvHaw86qk0ss5zIjiLrrlD0YnaNNLixwI3X1BHiCt7Vkz06N+doXJn9A3wr80y/o/kj+h/ed81cWVM9ZBhvHxMafJS1akmiPKS8gu7o4kz8LxweU07o0lcnRh+0+YRavLcI/RvqT+xsrhXC5eCEwW1Uums6YUjMPBodQgHZW6vqrpqGukhhNmzFMm187/Jc+jF2fMM0NZ4H3gFq2gkq2JAo4AguPlcssDaxK/eBWkdHM9qw3A5OrzFUmXRbw/ILY2jUIOBoAQKXJ98ICHq5Epox3RXE5DDfxTU2+LqhoaONKjlVC3aKVFJiX2Ex7SCLnY76YL0DR6FDNQ0A7czxOaXBe9or5ZeCXEm6pcpfyEoK7BvTV4Aadg9PooQkoOpGdTB7NYb6EHniiHTi0GN1A44g0uQ/KRQWQX7CWHeDeK+FVkfiT8tZG9dH05ryMO/u1byRKs76J5/sRIJ+E63O71HmtEVvC7iQ8iqTPLy8uJjFkcFKam2p5gSwxbVWaTywiSUyw5wX/wAJI9FaBIjQg5rmnAgg+IoirQN7PkaCyjnnZEb719UVaJTghxtR1we2niDd5Eqstqz+qfMMpTVjvHLDyoo8Z51GvFQdUHx4qd7KoPF2ahNWcXFsRj3gA9toNA4bRvCkGUZq1MeI3G4g5C7Lah7QzSwRfzUQ0iDD7w2jejQyjCAbkPSotUstg9FkYj3AQorw34nOF2J7oOJpTmpsw4NurgPop+enWwmm8AAcAs+0g04aA4QjrO25D5peLm6R0pqG2UPSHaPWR2tBuaKeJN/snbHfWUI2UPI0+aH2NMZ51jUuqalEFkw9RjmY1BHHMeafOOMaIcrk2aR0ZT9JyH/qNLccwK+3mtiXz5oTP6kxAdkIjT50PkfJb0+eaM13C6TQHMtpklcUH+9WpD7WGSfYmiRDCfamWJ5pQo1iwvFcquF4R2CYb0rWL1c1FeBdFIieNKO9K+KCWwqw2jd7rVOlqK17obcdUGv4q09As0Apq7DX+EqVvZXFaB+KSxzXg0IoRleN6LH9IdGUbUupmbkN2nB7G8E/NVOpwVfFCM1sBycXon2tpFFjntvqNgw5KthsJOfz4Lg+v5BFujFiUAjRBf8AADlvO9OxUehUpN9i7JsbUZV3eIv3bk5Gki1us2/NW8QgApgdo0yF3HclyjaBUnZV2PNasSmF9R6j3C3GSmdeGx21oPksmiWY19COy4YOHuM1oeiUZxghh7zdikUcJD5PKJe1XAU62TcU/Dsw5lOsQTROtGa5EtUDBUGslhdR1ljEtRxTDppxzUcJTgaE7BXleto4zHSqe13xSTXtH900HohyYGo1hzvPCv8AXyUy2pmjdY7akoWjWkSTmTh8lNKLUiqMk4jk93Hb/r3VL1RIvKsp+LXs7BenLHsoxogb8Ivcd3zKu/zxqNsTyPZJ0Z0eDz1rx2R3QfiO07gi95pglMhhoDWgAAUAUWcIpVxo1oJN9ONdqYxF2R4kYE0rfuyHzUiCBTZRMSbddodq6tcGqygwKYoAkJg1xVzZFrGDED2G8Yg4OGYVWCuEpclYSdG0WfOtjQ2xGYOHLaDvClAIG6OLTqYkAmvxt9HeyPAEoIpmWe0qTDstqkw2NUhrQmAEVtmhN2jLhsGK4ZQ3nk0qxDUNdINpdTJuaD2op1BwxceQ81iWzjHosEOBDu7RA0cjrHlvdDjqos0kn+qglo7z7h4oPa24DmqYQUns6LFwoZc4AXucacSUe2TZogww0Y4vO07tyqdF7J1R1zhee5uGZ8fREJKKT8ICTsS5QI8IPdQ90Grt5GA4Z8lKjRchjgok1EDTDhjFzqng0a1T4oGciUYwaL8cgE2YkQ4ADzPyXIHavAr975VUpoQsJEUyZPecTuySTIjePEqY7C5N37UDCLnQVpZPQKE3uLTwLXVC2RZBoLLl1oQL8C5x8GFbHRLas6yshw95UhjDtVdDgDaeZXnzQbg4k8Vpxbtadqy7pHtPXm+rr2YLaHiaOd5URhGtKKASIlAAT3RkFiWmNtO1XurWJGcb+JvKOKBYMWtPddHc74W3N91IsWzOuiAU7Db3n28VXS0E3NF5N3ElH1k2eIMMNGOLjtKr+KoxukTYYoKfQTcUpyiizT7wwYn90ZlKAOQjWrshh7lUz4+vMmt7WsofFwp6KwnZkMbQZC5VdhisSI92ApTjfzp7oWEi+g1peabAAB4X3pxzk02JU92nHHlilOccsduSxhIae52weaRqOOJ9l50N32uQCU1tMUtmhv0VylZiI8/DDoPxOA9itRogDoqlezHiUuq1gO2gLnerUfoUcB7p4uwwXmlUliTZJMGJdEZj94ZObtBV8yCmGFdpBMasrFIxLdUfiNPSqwK25zrJh99Qzst91tOn84IUq6puoXHwFB5lfP8ABmKlxOZJ5o4fI4KtFIFYjn/YApxP8qouYhzRJlIRP2nH0AV9Di0BrkmSdsFipiLqjfkNp2KG0FoLnd52PyG4KWGXFzsactyqpyYJQgkK0Y1VaWbJ6rG0yFeJN5KrpGV6yKAcBeVfOZX+RosbCQ2S7Kg41JXNQ46x8gnXMp9EpqI92wcSgYYgs3ldaAEjUO3kmpp+qDTIV9gls1E2ztMJiWJ6qIQwHui9vI3LSNFOkyHHAZMUhvNBrXhpO+vdPksPhxqVocL88fdSIE0RjU5kitTd6Ke2ihxTP//Z + @@ -309,7 +309,7 @@ Grand-Rosière +3282823500 - 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 + @@ -318,7 +318,7 @@ Grand-Rosière +3282823500 - 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 + @@ -327,7 +327,7 @@ Auderghem +3282823500 - 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 + diff --git a/addons/hr/i18n/ar.po b/addons/hr/i18n/ar.po index b92e606a855..3326b16993f 100644 --- a/addons/hr/i18n/ar.po +++ b/addons/hr/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bg.po b/addons/hr/i18n/bg.po index 6446256198c..32807fb296b 100644 --- a/addons/hr/i18n/bg.po +++ b/addons/hr/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bn.po b/addons/hr/i18n/bn.po index 38e1f328257..06ed1a9fb38 100644 --- a/addons/hr/i18n/bn.po +++ b/addons/hr/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bs.po b/addons/hr/i18n/bs.po index 756d4dabd7a..e9854443f2a 100644 --- a/addons/hr/i18n/bs.po +++ b/addons/hr/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ca.po b/addons/hr/i18n/ca.po index 007bf374ccf..3f2798f8050 100644 --- a/addons/hr/i18n/ca.po +++ b/addons/hr/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/cs.po b/addons/hr/i18n/cs.po index 266050e9b9c..5b22be1f03a 100644 --- a/addons/hr/i18n/cs.po +++ b/addons/hr/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Language: Czech\n" #. module: hr diff --git a/addons/hr/i18n/da.po b/addons/hr/i18n/da.po index de7b71379b9..6134875800b 100644 --- a/addons/hr/i18n/da.po +++ b/addons/hr/i18n/da.po @@ -14,28 +14,28 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 msgid "Openerp user" -msgstr "" +msgstr "OpenERP bruger" #. module: hr #: field:hr.config.settings,module_hr_timesheet_sheet:0 msgid "Allow timesheets validation by managers" -msgstr "" +msgstr "Tillad validering af tidsskemaer af ledere" #. module: hr #: field:hr.job,requirements:0 msgid "Requirements" -msgstr "" +msgstr "Krav" #. module: hr #: model:process.transition,name:hr.process_transition_contactofemployee0 msgid "Link the employee to information" -msgstr "" +msgstr "Knyt den ansatte til information" #. module: hr #: field:hr.employee,sinid:0 @@ -50,7 +50,7 @@ msgstr "" #: model:ir.ui.menu,name:hr.menu_hr_root #: model:ir.ui.menu,name:hr.menu_human_resources_configuration msgid "Human Resources" -msgstr "" +msgstr "Personale (HR)" #. module: hr #: help:hr.employee,image_medium:0 @@ -63,23 +63,23 @@ msgstr "" #. module: hr #: view:hr.config.settings:0 msgid "Time Tracking" -msgstr "" +msgstr "Tids styring" #. module: hr #: view:hr.employee:0 #: view:hr.job:0 msgid "Group By..." -msgstr "" +msgstr "Gruppér efter..." #. module: hr #: model:ir.actions.act_window,name:hr.view_department_form_installer msgid "Create Your Departments" -msgstr "" +msgstr "Opret dine afdelinger" #. module: hr #: help:hr.job,no_of_employee:0 msgid "Number of employees currently occupying this job position." -msgstr "" +msgstr "Antal ansatte p.t. i denne stilling" #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 @@ -94,12 +94,12 @@ msgstr "" #: field:hr.job,department_id:0 #: model:ir.model,name:hr.model_hr_department msgid "Department" -msgstr "" +msgstr "Afdeling" #. module: hr #: field:hr.employee,work_email:0 msgid "Work Email" -msgstr "" +msgstr "Arbejds E-mail" #. module: hr #: help:hr.employee,image:0 @@ -116,7 +116,7 @@ msgstr "" #. module: hr #: view:hr.job:0 msgid "Jobs" -msgstr "" +msgstr "Job" #. module: hr #: view:hr.job:0 @@ -126,7 +126,7 @@ msgstr "" #. module: hr #: field:hr.job,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Ulæste beskeder" #. module: hr #: field:hr.department,company_id:0 @@ -134,7 +134,7 @@ msgstr "" #: view:hr.job:0 #: field:hr.job,company_id:0 msgid "Company" -msgstr "" +msgstr "Firma" #. module: hr #: field:hr.job,no_of_recruitment:0 @@ -149,7 +149,7 @@ msgstr "" #. module: hr #: constraint:hr.employee.category:0 msgid "Error! You cannot create recursive Categories." -msgstr "" +msgstr "Fejl ! Du kan ikke oprette rekursive kategorier." #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 @@ -159,13 +159,13 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Birth" -msgstr "" +msgstr "Fødsel" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "Ansatte koder" #. module: hr #: view:hr.job:0 @@ -175,32 +175,32 @@ msgstr "" #. module: hr #: model:process.transition,name:hr.process_transition_employeeuser0 msgid "Link a user to an employee" -msgstr "" +msgstr "Knyt en bruger til en ansat" #. module: hr #: field:hr.department,parent_id:0 msgid "Parent Department" -msgstr "" +msgstr "Hoved afdeling" #. module: hr #: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_config msgid "Leaves" -msgstr "" +msgstr "Ferier" #. module: hr #: selection:hr.employee,marital:0 msgid "Married" -msgstr "" +msgstr "Gift" #. module: hr #: field:hr.job,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Meddelelser" #. module: hr #: view:hr.config.settings:0 msgid "Talent Management" -msgstr "" +msgstr "Talent styring" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 @@ -210,22 +210,22 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Mobile:" -msgstr "" +msgstr "Mobiltelefon:" #. module: hr #: view:hr.employee:0 msgid "Position" -msgstr "" +msgstr "Stilling" #. module: hr #: help:hr.job,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Hvis afmærket, kræver nye beskeder din attention" #. module: hr #: field:hr.employee,color:0 msgid "Color Index" -msgstr "" +msgstr "Farve index" #. module: hr #: model:process.transition,note:hr.process_transition_employeeuser0 @@ -237,60 +237,60 @@ msgstr "" #. module: hr #: field:hr.employee,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Mellem størrelse foto" #. module: hr #: field:hr.employee,identification_id:0 msgid "Identification No" -msgstr "" +msgstr "Identifikations nr." #. module: hr #: selection:hr.employee,gender:0 msgid "Female" -msgstr "" +msgstr "Kvinde" #. module: hr #: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_new_config msgid "Attendance" -msgstr "" +msgstr "Tilstedeværelse" #. module: hr #: field:hr.employee,work_phone:0 msgid "Work Phone" -msgstr "" +msgstr "Arbejdstelefon" #. module: hr #: field:hr.employee.category,child_ids:0 msgid "Child Categories" -msgstr "" +msgstr "Underkatagorier" #. module: hr #: field:hr.job,description:0 #: model:ir.model,name:hr.model_hr_job msgid "Job Description" -msgstr "" +msgstr "Jobbeskrivelse" #. module: hr #: field:hr.employee,work_location:0 msgid "Office Location" -msgstr "" +msgstr "Kontor placering" #. module: hr #: field:hr.job,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Followers" #. module: hr #: view:hr.employee:0 #: model:ir.model,name:hr.model_hr_employee #: model:process.node,name:hr.process_node_employee0 msgid "Employee" -msgstr "" +msgstr "Ansat" #. module: hr #: model:process.node,note:hr.process_node_employeecontact0 msgid "Other information" -msgstr "" +msgstr "Anden information" #. module: hr #: help:hr.employee,image_small:0 @@ -303,17 +303,17 @@ msgstr "" #. module: hr #: field:hr.employee,birthday:0 msgid "Date of Birth" -msgstr "" +msgstr "Fødselsdato" #. module: hr #: help:hr.job,no_of_recruitment:0 msgid "Number of new employees you expect to recruit." -msgstr "" +msgstr "Antal ansatte du forventer at rekruttere." #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu msgid "Open HR Menu" -msgstr "" +msgstr "Åben HR menu" #. module: hr #: help:hr.job,message_summary:0 @@ -321,6 +321,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Indeholder chat sammendraget (antal beskeder). Dette sammendrag er i html " +"format for at kunne sættes ind i kanban views." #. module: hr #: help:hr.config.settings,module_account_analytic_analysis:0 @@ -332,24 +334,24 @@ msgstr "" #. module: hr #: view:board.board:0 msgid "Human Resources Dashboard" -msgstr "" +msgstr "HR Dashboard" #. module: hr #: view:hr.employee:0 #: field:hr.employee,job_id:0 #: view:hr.job:0 msgid "Job" -msgstr "" +msgstr "Job" #. module: hr #: field:hr.job,no_of_employee:0 msgid "Current Number of Employees" -msgstr "" +msgstr "Nuværende antal ansatte" #. module: hr #: field:hr.department,member_ids:0 msgid "Members" -msgstr "" +msgstr "Medlemmer" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_configuration diff --git a/addons/hr/i18n/de.po b/addons/hr/i18n/de.po index 6914ee88021..ede2f4b6cb8 100644 --- a/addons/hr/i18n/de.po +++ b/addons/hr/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/el.po b/addons/hr/i18n/el.po index fb8cf263fdc..05b35627315 100644 --- a/addons/hr/i18n/el.po +++ b/addons/hr/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/hr/i18n/en_AU.po b/addons/hr/i18n/en_AU.po index b7f52a6ca21..306c5c97b8d 100644 --- a/addons/hr/i18n/en_AU.po +++ b/addons/hr/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/en_GB.po b/addons/hr/i18n/en_GB.po index 304e64f3783..b88bc0acf6e 100644 --- a/addons/hr/i18n/en_GB.po +++ b/addons/hr/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es.po b/addons/hr/i18n/es.po index 1288c6e3b6c..b5811cbc61e 100644 --- a/addons/hr/i18n/es.po +++ b/addons/hr/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_AR.po b/addons/hr/i18n/es_AR.po index 49ada842483..f88f9c70a58 100644 --- a/addons/hr/i18n/es_AR.po +++ b/addons/hr/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_CL.po b/addons/hr/i18n/es_CL.po index 5c070a1bd41..92658a78f57 100644 --- a/addons/hr/i18n/es_CL.po +++ b/addons/hr/i18n/es_CL.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_CR.po b/addons/hr/i18n/es_CR.po index 5f3155c6374..4eb93f9b694 100644 --- a/addons/hr/i18n/es_CR.po +++ b/addons/hr/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: hr diff --git a/addons/hr/i18n/es_EC.po b/addons/hr/i18n/es_EC.po index 3659af5ae2c..ae98a81532e 100644 --- a/addons/hr/i18n/es_EC.po +++ b/addons/hr/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/et.po b/addons/hr/i18n/et.po index 89e0339191f..696c2cfedea 100644 --- a/addons/hr/i18n/et.po +++ b/addons/hr/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fi.po b/addons/hr/i18n/fi.po index 2bc6df5a947..2269bbe9480 100644 --- a/addons/hr/i18n/fi.po +++ b/addons/hr/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -25,7 +25,7 @@ msgstr "OpenERP-käyttäjä" #. module: hr #: field:hr.config.settings,module_hr_timesheet_sheet:0 msgid "Allow timesheets validation by managers" -msgstr "" +msgstr "Salli päälliköille tuntikorttien vahvistaminen" #. module: hr #: field:hr.job,requirements:0 @@ -35,7 +35,7 @@ msgstr "Vaatimukset" #. module: hr #: model:process.transition,name:hr.process_transition_contactofemployee0 msgid "Link the employee to information" -msgstr "Kytke työntekijä informaatioon" +msgstr "Yhdistä työntekijä informaatioon" #. module: hr #: field:hr.employee,sinid:0 @@ -50,7 +50,7 @@ msgstr "Vakuutustunnus" #: model:ir.ui.menu,name:hr.menu_hr_root #: model:ir.ui.menu,name:hr.menu_human_resources_configuration msgid "Human Resources" -msgstr "Henkilöstöjohtaminen" +msgstr "Henkilöstöhallinto" #. module: hr #: help:hr.employee,image_medium:0 @@ -63,13 +63,13 @@ msgstr "" #. module: hr #: view:hr.config.settings:0 msgid "Time Tracking" -msgstr "" +msgstr "Työajanseuranta" #. module: hr #: view:hr.employee:0 #: view:hr.job:0 msgid "Group By..." -msgstr "Ryhmittely.." +msgstr "Ryhmittely..." #. module: hr #: model:ir.actions.act_window,name:hr.view_department_form_installer @@ -79,12 +79,12 @@ msgstr "Luo osastot" #. module: hr #: help:hr.job,no_of_employee:0 msgid "Number of employees currently occupying this job position." -msgstr "" +msgstr "Tässä työtehtävässä parhaillaan olevien työntekijöiden lukumäärä." #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 msgid "Organize employees periodic evaluation" -msgstr "" +msgstr "Organisoi työntekijöiden säännöllinen arviointi" #. module: hr #: view:hr.department:0 @@ -107,26 +107,27 @@ msgid "" "This field holds the image used as photo for the employee, limited to " "1024x1024px." msgstr "" +"Tämä kenttä sisältää työntekijöistä valokuvan, koko rajoitettu 1024x1024px." #. module: hr #: help:hr.config.settings,module_hr_holidays:0 msgid "This installs the module hr_holidays." -msgstr "" +msgstr "Tämä asentaa moduulin hr_holidays." #. module: hr #: view:hr.job:0 msgid "Jobs" -msgstr "Tehtävät" +msgstr "Työt" #. module: hr #: view:hr.job:0 msgid "In Recruitment" -msgstr "Palkattavana" +msgstr "Käynnissä" #. module: hr #: field:hr.job,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Lukemattomia viestejä" #. module: hr #: field:hr.department,company_id:0 @@ -139,43 +140,43 @@ msgstr "Yritys" #. module: hr #: field:hr.job,no_of_recruitment:0 msgid "Expected in Recruitment" -msgstr "Odotettu palkaaminen" +msgstr "Vapaat työpaikat" #. module: hr #: field:res.users,employee_ids:0 msgid "Related employees" -msgstr "" +msgstr "Yhdistä työntekijöihin" #. module: hr #: constraint:hr.employee.category:0 msgid "Error! You cannot create recursive Categories." -msgstr "" +msgstr "Virhe, et voi luoda rekursiivisia ryhmiä." #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 msgid "This installs the module hr_recruitment." -msgstr "" +msgstr "Tämä asentaa moduulin hr_recruitment." #. module: hr #: view:hr.employee:0 msgid "Birth" -msgstr "" +msgstr "Syntymäaika" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "Henkilötunnisteet" #. module: hr #: view:hr.job:0 msgid "Launch Recruitement" -msgstr "" +msgstr "Käynnistä rekrytointi" #. module: hr #: model:process.transition,name:hr.process_transition_employeeuser0 msgid "Link a user to an employee" -msgstr "Kiinnitä käyttäjä työntekijään" +msgstr "Yhdistä käyttäjä työntekijään" #. module: hr #: field:hr.department,parent_id:0 @@ -185,7 +186,7 @@ msgstr "Ylempi osasto" #. module: hr #: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_config msgid "Leaves" -msgstr "Lomat" +msgstr "Poissaolot" #. module: hr #: selection:hr.employee,marital:0 @@ -195,22 +196,22 @@ msgstr "Naimisissa" #. module: hr #: field:hr.job,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Viestit" #. module: hr #: view:hr.config.settings:0 msgid "Talent Management" -msgstr "" +msgstr "Osaamisenhallinta" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 msgid "This installs the module hr_timesheet_sheet." -msgstr "" +msgstr "Tmä asentaa moduulin hr_timesheet_sheet." #. module: hr #: view:hr.employee:0 msgid "Mobile:" -msgstr "" +msgstr "Matkapuhelin:" #. module: hr #: view:hr.employee:0 @@ -220,7 +221,7 @@ msgstr "Asema" #. module: hr #: help:hr.job,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jos valittu, uudet viestit vaativat huomiosi." #. module: hr #: field:hr.employee,color:0 @@ -233,18 +234,18 @@ msgid "" "The Related user field on the Employee form allows to link the OpenERP user " "(and her rights) to the employee." msgstr "" -"Liittyvä käyttäjätunnuskenttä työntekijälomakkeella mahdollistaan OpenERP " -"käyttäjän (ja oikeuksien) liittämisen työntekijään." +"Työntekijälomakkeella oleva Yhdistä käyttäjään -kenttä sallii OpenERP-" +"käyttäjän (ja hänen käyttöoikeuksiensa) yhdistämisen mainittuun työntekijään." #. module: hr #: field:hr.employee,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Keskikokoinen kuva" #. module: hr #: field:hr.employee,identification_id:0 msgid "Identification No" -msgstr "Henkilöllisyyystunnus" +msgstr "Henkilötunnus" #. module: hr #: selection:hr.employee,gender:0 @@ -264,13 +265,13 @@ msgstr "Työpuhelin" #. module: hr #: field:hr.employee.category,child_ids:0 msgid "Child Categories" -msgstr "Alakategoriat" +msgstr "Aliryhmät" #. module: hr #: field:hr.job,description:0 #: model:ir.model,name:hr.model_hr_job msgid "Job Description" -msgstr "Työnkuvaus" +msgstr "Työnkuva" #. module: hr #: field:hr.employee,work_location:0 @@ -280,7 +281,7 @@ msgstr "Toimiston sijainti" #. module: hr #: field:hr.job,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seuraajat" #. module: hr #: view:hr.employee:0 @@ -301,6 +302,8 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Pienikokoinen kuva työntekijästä. Kuva muutetaan automaattisesti kokoon " +"64x64px kuvasuhde säilyttäen. Käytä tätä kun tarvitaan pientä kuvaa." #. module: hr #: field:hr.employee,birthday:0 @@ -310,12 +313,12 @@ msgstr "Syntymäaika" #. module: hr #: help:hr.job,no_of_recruitment:0 msgid "Number of new employees you expect to recruit." -msgstr "" +msgstr "Työntekijämäärä jonka oletat palkkaavasi." #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu msgid "Open HR Menu" -msgstr "" +msgstr "Avaa HR Valikko" #. module: hr #: help:hr.job,message_summary:0 @@ -323,6 +326,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sisältää viestien yhteenvedon (viestien määrän,...). Tämä yhteenveto on " +"valmiiksi html-muodossa, jotta se voidaan viedä kanban näkymään." #. module: hr #: help:hr.config.settings,module_account_analytic_analysis:0 @@ -330,11 +335,13 @@ msgid "" "This installs the module account_analytic_analysis, which will install sales " "management too." msgstr "" +"Tämä asentaa moduulin account_analytic_analysis, joka asentaa myynnin " +"halllinnan myös." #. module: hr #: view:board.board:0 msgid "Human Resources Dashboard" -msgstr "Henkilöstöhallinnon Työpöytä" +msgstr "Henkilöstöhallinnon työpöytä" #. module: hr #: view:hr.employee:0 @@ -346,7 +353,7 @@ msgstr "Tehtävä" #. module: hr #: field:hr.job,no_of_employee:0 msgid "Current Number of Employees" -msgstr "" +msgstr "Työntekijöiden lukumäärä nyt" #. module: hr #: field:hr.department,member_ids:0 @@ -366,12 +373,12 @@ msgstr "Työntekijälomake ja rakenne" #. module: hr #: field:hr.config.settings,module_hr_expense:0 msgid "Manage employees expenses" -msgstr "" +msgstr "Hallitse työntekijöiden kuluja" #. module: hr #: view:hr.employee:0 msgid "Tel:" -msgstr "" +msgstr "Puh.:" #. module: hr #: selection:hr.employee,marital:0 @@ -381,7 +388,7 @@ msgstr "Eronnut" #. module: hr #: field:hr.employee.category,parent_id:0 msgid "Parent Category" -msgstr "Yläkategoria" +msgstr "Ylempi ryhmä" #. module: hr #: view:hr.department:0 @@ -429,72 +436,74 @@ msgid "" "$('.oe_employee_picture').load(function() { if($(this).width() > " "$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 msgid "This installs the module hr_evaluation." -msgstr "" +msgstr "Tämä asentaa moduulin hr_evaluation." #. module: hr #: constraint:hr.employee:0 msgid "Error! You cannot create recursive hierarchy of Employee(s)." -msgstr "" +msgstr "Virhe! Et voi luoda rekursiivista työntekijähierarkiaa!" #. module: hr #: help:hr.config.settings,module_hr_attendance:0 msgid "This installs the module hr_attendance." -msgstr "" +msgstr "Tämä asentaa moduulin hr_attendance." #. module: hr #: field:hr.employee,image_small:0 msgid "Smal-sized photo" -msgstr "" +msgstr "Pienikokoinen kuva" #. module: hr #: view:hr.employee.category:0 #: model:ir.model,name:hr.model_hr_employee_category msgid "Employee Category" -msgstr "Työntekijäkategoria" +msgstr "Työntekijäryhmä" #. module: hr #: field:hr.employee,category_ids:0 msgid "Tags" -msgstr "" +msgstr "Tunnisteet" #. module: hr #: help:hr.config.settings,module_hr_contract:0 msgid "This installs the module hr_contract." -msgstr "" +msgstr "Tämä asentaa moduulin hr_contract." #. module: hr #: view:hr.employee:0 msgid "Related User" -msgstr "Liittyvä käyttäjä" +msgstr "Yhdistä käyttäjään" #. module: hr #: view:hr.config.settings:0 msgid "or" -msgstr "" +msgstr "tai" #. module: hr #: field:hr.employee.category,name:0 msgid "Category" -msgstr "Kategoria" +msgstr "Ryhmä" #. module: hr #: view:hr.job:0 msgid "Stop Recruitment" -msgstr "" +msgstr "Pysäytä rekrytointi" #. module: hr #: field:hr.config.settings,module_hr_attendance:0 msgid "Install attendances feature" -msgstr "" +msgstr "Asenna läsnäolot-ominaisuus" #. module: hr #: help:hr.employee,bank_account_id:0 msgid "Employee bank salary account" -msgstr "Työntekijän pankkitilinumero" +msgstr "Työntekijän palkanmaksun pankkitilinumero" #. module: hr #: field:hr.department,note:0 @@ -504,7 +513,7 @@ msgstr "Huomautus" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_employee_tree msgid "Employees Structure" -msgstr "Työntekijöiden rakenne" +msgstr "Henkilöstön rakenne" #. module: hr #: view:hr.employee:0 @@ -514,7 +523,7 @@ msgstr "Yhteystiedot" #. module: hr #: field:hr.config.settings,module_hr_holidays:0 msgid "Manage holidays, leaves and allocation requests" -msgstr "" +msgstr "Hallitse lomat, poissaolot ja varauspyynnöt" #. module: hr #: field:hr.department,child_ids:0 @@ -526,7 +535,7 @@ msgstr "Alaosastot" #: view:hr.job:0 #: field:hr.job,state:0 msgid "Status" -msgstr "Asema" +msgstr "Tila" #. module: hr #: field:hr.employee,otherid:0 @@ -536,17 +545,17 @@ msgstr "Muu tunniste" #. module: hr #: model:process.process,name:hr.process_process_employeecontractprocess0 msgid "Employee Contract" -msgstr "Työtekijän sopimus" +msgstr "Työsopimus" #. module: hr #: view:hr.config.settings:0 msgid "Contracts" -msgstr "" +msgstr "Sopimukset" #. module: hr #: help:hr.job,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Viesti- ja kommunikointihistoria" #. module: hr #: field:hr.employee,ssnid:0 @@ -556,12 +565,12 @@ msgstr "Henkilötunnus" #. module: hr #: field:hr.job,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "on seuraaja" #. module: hr #: field:hr.config.settings,module_hr_recruitment:0 msgid "Manage the recruitment process" -msgstr "" +msgstr "Hallitse rekrytointiprosessia" #. module: hr #: view:hr.employee:0 @@ -571,12 +580,12 @@ msgstr "Aktiivinen" #. module: hr #: view:hr.config.settings:0 msgid "Human Resources Management" -msgstr "" +msgstr "Henkilöstöhallinto (HR)" #. module: hr #: view:hr.config.settings:0 msgid "Install your country's payroll" -msgstr "" +msgstr "Asenna maasi palkanlaskenta" #. module: hr #: field:hr.employee,bank_account_id:0 @@ -591,14 +600,16 @@ msgstr "Yritykset" #. module: hr #: field:hr.job,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Yhteenveto" #. module: hr #: model:process.transition,note:hr.process_transition_contactofemployee0 msgid "" "In the Employee form, there are different kind of information like Contact " "information." -msgstr "Työntekijänäytöllä on esimerkiksi yhteystiedot" +msgstr "" +"Työntekijälomakkeelle merkitään erilaista informaatiota, esimerkiksi " +"yhteystiedot." #. module: hr #: model:ir.actions.act_window,help:hr.open_view_employee_list_my @@ -618,17 +629,17 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "HR Settings" -msgstr "" +msgstr "HR-asetukset" #. module: hr #: view:hr.employee:0 msgid "Citizenship & Other Info" -msgstr "" +msgstr "Kansalaisuus ja muuta tietoa" #. module: hr #: constraint:hr.department:0 msgid "Error! You cannot create recursive departments." -msgstr "" +msgstr "Virhe! Et voi luoda rekursiivisia osastoja." #. module: hr #: field:hr.employee,address_id:0 @@ -638,7 +649,7 @@ msgstr "Työosoite" #. module: hr #: view:hr.employee:0 msgid "Public Information" -msgstr "" +msgstr "Julkinen informaatio" #. module: hr #: field:hr.employee,marital:0 @@ -648,12 +659,12 @@ msgstr "Siviilisääty" #. module: hr #: model:ir.model,name:hr.model_ir_actions_act_window msgid "ir.actions.act_window" -msgstr "" +msgstr "ir.actions.act_window" #. module: hr #: field:hr.employee,last_login:0 msgid "Latest Connection" -msgstr "" +msgstr "Viimeisin yhteys" #. module: hr #: field:hr.employee,image:0 @@ -663,7 +674,7 @@ msgstr "Kuva" #. module: hr #: view:hr.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Peruuta" #. module: hr #: model:ir.actions.act_window,help:hr.open_module_tree_department @@ -678,17 +689,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi osaston.\n" +"

\n" +" OpenERP:in osastorakennetta käytetään kaikkien " +"työntekijöihin \n" +" yhdistettyjen dokumenttien hallintaan osastoilla: kulut, " +"tuntilomakkeet, \n" +" vapaat ja lomat, rekrytoinnit, jne.\n" +"

\n" +" " #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 msgid "This installs the module hr_timesheet." -msgstr "" +msgstr "Tämä asentaa moduulin hr_timesheet." #. module: hr #: help:hr.job,expected_employees:0 msgid "" "Expected number of employees for this job position after new recruitment." -msgstr "" +msgstr "Odotettu työntekijämäärä tähän työtehtävään rekrytoinnin päättyessä." #. module: hr #: model:ir.actions.act_window,help:hr.view_department_form_installer @@ -703,6 +724,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi uuden osaston.\n" +"

\n" +" OpenERP:in osastorakennetta käytetään kaikkien " +"työntekijöihin \n" +" yhdistettyjen dokumenttien hallintaan osastoilla: kulut, " +"tuntilomakkeet, \n" +" vapaat ja lomat, rekrytoinnit, jne.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 @@ -727,18 +758,18 @@ msgstr "Matkapuhelin (työ)" #. module: hr #: selection:hr.job,state:0 msgid "Recruitement in Progress" -msgstr "" +msgstr "Rekrytointi käsittelyssä" #. module: hr #: field:hr.config.settings,module_account_analytic_analysis:0 msgid "" "Allow invoicing based on timesheets (the sale application will be installed)" -msgstr "" +msgstr "Salli laskutus perustuen tuntikortteihin (myyntisovellus asennetaan)" #. module: hr #: view:hr.employee.category:0 msgid "Employees Categories" -msgstr "Työntekijöiden kategoriat" +msgstr "Työntekijäryhmät" #. module: hr #: field:hr.employee,address_home_id:0 @@ -748,12 +779,12 @@ msgstr "Kotiosoite" #. module: hr #: field:hr.config.settings,module_hr_timesheet:0 msgid "Manage timesheets" -msgstr "" +msgstr "Hallitse tuntikortteja" #. module: hr #: model:ir.actions.act_window,name:hr.open_payroll_modules msgid "Payroll" -msgstr "Palkanmaksu" +msgstr "Palkkahallinto" #. module: hr #: selection:hr.employee,marital:0 @@ -763,22 +794,22 @@ msgstr "Naimaton" #. module: hr #: field:hr.job,name:0 msgid "Job Name" -msgstr "Tehtävän nimi" +msgstr "Tehtävänimike" #. module: hr #: view:hr.job:0 msgid "In Position" -msgstr "Asemassa" +msgstr "Tehtävässä" #. module: hr #: help:hr.config.settings,module_hr_payroll:0 msgid "This installs the module hr_payroll." -msgstr "" +msgstr "Tämä asnetaa moduulin hr_payroll." #. module: hr #: field:hr.config.settings,module_hr_contract:0 msgid "Record contracts per employee" -msgstr "" +msgstr "Tallenna sopimistiedot työntekijälle" #. module: hr #: view:hr.department:0 @@ -788,22 +819,22 @@ msgstr "osasto" #. module: hr #: field:hr.employee,country_id:0 msgid "Nationality" -msgstr "Kansallisuus" +msgstr "Kansalaisuus" #. module: hr #: view:hr.config.settings:0 msgid "Additional Features" -msgstr "" +msgstr "Lisäominaisuudet" #. module: hr #: field:hr.employee,notes:0 msgid "Notes" -msgstr "Huomautukset" +msgstr "Muistiinpanot" #. module: hr #: model:ir.actions.act_window,name:hr.action2 msgid "Subordinate Hierarchy" -msgstr "" +msgstr "Alaishierarkkia" #. module: hr #: field:hr.employee,resource_id:0 @@ -846,23 +877,23 @@ msgstr "Osaston nimi" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_reporting_timesheet msgid "Reports" -msgstr "" +msgstr "Raportit" #. module: hr #: field:hr.config.settings,module_hr_payroll:0 msgid "Manage payroll" -msgstr "" +msgstr "Hallitse palkkoja" #. module: hr #: view:hr.config.settings:0 #: model:ir.actions.act_window,name:hr.action_human_resources_configuration msgid "Configure Human Resources" -msgstr "" +msgstr "Konfiguroi henkilöstöhallintoa" #. module: hr #: selection:hr.job,state:0 msgid "No Recruitment" -msgstr "" +msgstr "Ei rekrytointeja" #. module: hr #: help:hr.employee,ssnid:0 @@ -877,12 +908,12 @@ msgstr "OpenERP käyttäjätunnuksen luonti" #. module: hr #: field:hr.employee,login:0 msgid "Login" -msgstr "Kirjaudu" +msgstr "Kirjautuminen" #. module: hr #: field:hr.job,expected_employees:0 msgid "Total Forecasted Employees" -msgstr "" +msgstr "Ennuste yhteensä työntekijöitä" #. module: hr #: help:hr.job,state:0 @@ -890,11 +921,13 @@ msgid "" "By default 'In position', set it to 'In Recruitment' if recruitment process " "is going on for this job position." msgstr "" +"Oletuksena \"Tehtävässä\" asetetaan tilaan \"Käynnissä\", jos " +"rekrytointiprosessi on käynnissä tähän tehtävään." #. module: hr #: model:ir.model,name:hr.model_res_users msgid "Users" -msgstr "" +msgstr "Käyttäjät" #. module: hr #: model:ir.actions.act_window,name:hr.action_hr_job @@ -930,17 +963,17 @@ msgstr "Valmentaja" #. module: hr #: sql_constraint:hr.job:0 msgid "The name of the job position must be unique per company!" -msgstr "Tehtävänkuvauksen nimen tulee olla uniikki yrityskohtaisesti!" +msgstr "Tehtävänimikeen tulee olla ainutkertainen yrityskohtaisesti!" #. module: hr #: help:hr.config.settings,module_hr_expense:0 msgid "This installs the module hr_expense." -msgstr "" +msgstr "Tämä asentaa moduulin hr_expense." #. module: hr #: model:ir.model,name:hr.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr #: field:hr.department,manager_id:0 @@ -952,7 +985,7 @@ msgstr "Esimies" #. module: hr #: selection:hr.employee,marital:0 msgid "Widower" -msgstr "Leski (mies)" +msgstr "Leski" #. module: hr #: field:hr.employee,child_ids:0 @@ -962,7 +995,7 @@ msgstr "Alaiset" #. module: hr #: view:hr.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Käytä" #~ msgid "Error! You can not create recursive departments." #~ msgstr "Virhe! Et voi luoda itseään toistavia osastoja." diff --git a/addons/hr/i18n/fr.po b/addons/hr/i18n/fr.po index 9fad728a6a7..bdcd741ca00 100644 --- a/addons/hr/i18n/fr.po +++ b/addons/hr/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fr_BE.po b/addons/hr/i18n/fr_BE.po index 7ddf7b149a8..01464c2dc3b 100644 --- a/addons/hr/i18n/fr_BE.po +++ b/addons/hr/i18n/fr_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/gl.po b/addons/hr/i18n/gl.po index db705f72c83..96f7ca0cdd4 100644 --- a/addons/hr/i18n/gl.po +++ b/addons/hr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/gu.po b/addons/hr/i18n/gu.po index 205d1738adc..1d456eb54bb 100644 --- a/addons/hr/i18n/gu.po +++ b/addons/hr/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/he.po b/addons/hr/i18n/he.po new file mode 100644 index 00000000000..b91c14845a4 --- /dev/null +++ b/addons/hr/i18n/he.po @@ -0,0 +1,963 @@ +# Hebrew 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:04+0000\n" +"PO-Revision-Date: 2013-12-30 19:04+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Hebrew \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" + +#. module: hr +#: model:process.node,name:hr.process_node_openerpuser0 +msgid "Openerp user" +msgstr "" + +#. module: hr +#: field:hr.config.settings,module_hr_timesheet_sheet:0 +msgid "Allow timesheets validation by managers" +msgstr "" + +#. module: hr +#: field:hr.job,requirements:0 +msgid "Requirements" +msgstr "" + +#. module: hr +#: model:process.transition,name:hr.process_transition_contactofemployee0 +msgid "Link the employee to information" +msgstr "" + +#. module: hr +#: field:hr.employee,sinid:0 +msgid "SIN No" +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,name:hr.open_board_hr +#: model:ir.ui.menu,name:hr.menu_hr_dashboard +#: model:ir.ui.menu,name:hr.menu_hr_main +#: model:ir.ui.menu,name:hr.menu_hr_reporting +#: model:ir.ui.menu,name:hr.menu_hr_root +#: model:ir.ui.menu,name:hr.menu_human_resources_configuration +msgid "Human Resources" +msgstr "" + +#. module: hr +#: help:hr.employee,image_medium:0 +msgid "" +"Medium-sized photo of the employee. It is automatically resized as a " +"128x128px image, with aspect ratio preserved. Use this field in form views " +"or some kanban views." +msgstr "" + +#. module: hr +#: view:hr.config.settings:0 +msgid "Time Tracking" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +#: view:hr.job:0 +msgid "Group By..." +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,name:hr.view_department_form_installer +msgid "Create Your Departments" +msgstr "" + +#. module: hr +#: help:hr.job,no_of_employee:0 +msgid "Number of employees currently occupying this job position." +msgstr "" + +#. module: hr +#: field:hr.config.settings,module_hr_evaluation:0 +msgid "Organize employees periodic evaluation" +msgstr "" + +#. module: hr +#: view:hr.department:0 +#: view:hr.employee:0 +#: field:hr.employee,department_id:0 +#: view:hr.job:0 +#: field:hr.job,department_id:0 +#: model:ir.model,name:hr.model_hr_department +msgid "Department" +msgstr "" + +#. module: hr +#: field:hr.employee,work_email:0 +msgid "Work Email" +msgstr "" + +#. module: hr +#: help:hr.employee,image:0 +msgid "" +"This field holds the image used as photo for the employee, limited to " +"1024x1024px." +msgstr "" + +#. module: hr +#: help:hr.config.settings,module_hr_holidays:0 +msgid "This installs the module hr_holidays." +msgstr "" + +#. module: hr +#: view:hr.job:0 +msgid "Jobs" +msgstr "" + +#. module: hr +#: view:hr.job:0 +msgid "In Recruitment" +msgstr "" + +#. module: hr +#: field:hr.job,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: hr +#: field:hr.department,company_id:0 +#: view:hr.employee:0 +#: view:hr.job:0 +#: field:hr.job,company_id:0 +msgid "Company" +msgstr "" + +#. module: hr +#: field:hr.job,no_of_recruitment:0 +msgid "Expected in Recruitment" +msgstr "" + +#. module: hr +#: field:res.users,employee_ids:0 +msgid "Related employees" +msgstr "" + +#. module: hr +#: constraint:hr.employee.category:0 +msgid "Error! You cannot create recursive Categories." +msgstr "" + +#. module: hr +#: help:hr.config.settings,module_hr_recruitment:0 +msgid "This installs the module hr_recruitment." +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "Birth" +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,name:hr.open_view_categ_form +#: model:ir.ui.menu,name:hr.menu_view_employee_category_form +msgid "Employee Tags" +msgstr "" + +#. module: hr +#: view:hr.job:0 +msgid "Launch Recruitement" +msgstr "" + +#. module: hr +#: model:process.transition,name:hr.process_transition_employeeuser0 +msgid "Link a user to an employee" +msgstr "" + +#. module: hr +#: field:hr.department,parent_id:0 +msgid "Parent Department" +msgstr "" + +#. module: hr +#: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_config +msgid "Leaves" +msgstr "" + +#. module: hr +#: selection:hr.employee,marital:0 +msgid "Married" +msgstr "" + +#. module: hr +#: field:hr.job,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: hr +#: view:hr.config.settings:0 +msgid "Talent Management" +msgstr "" + +#. module: hr +#: help:hr.config.settings,module_hr_timesheet_sheet:0 +msgid "This installs the module hr_timesheet_sheet." +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "Mobile:" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "Position" +msgstr "" + +#. module: hr +#: help:hr.job,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: hr +#: field:hr.employee,color:0 +msgid "Color Index" +msgstr "" + +#. module: hr +#: model:process.transition,note:hr.process_transition_employeeuser0 +msgid "" +"The Related user field on the Employee form allows to link the OpenERP user " +"(and her rights) to the employee." +msgstr "" + +#. module: hr +#: field:hr.employee,image_medium:0 +msgid "Medium-sized photo" +msgstr "" + +#. module: hr +#: field:hr.employee,identification_id:0 +msgid "Identification No" +msgstr "" + +#. module: hr +#: selection:hr.employee,gender:0 +msgid "Female" +msgstr "" + +#. module: hr +#: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_new_config +msgid "Attendance" +msgstr "" + +#. module: hr +#: field:hr.employee,work_phone:0 +msgid "Work Phone" +msgstr "" + +#. module: hr +#: field:hr.employee.category,child_ids:0 +msgid "Child Categories" +msgstr "" + +#. module: hr +#: field:hr.job,description:0 +#: model:ir.model,name:hr.model_hr_job +msgid "Job Description" +msgstr "" + +#. module: hr +#: field:hr.employee,work_location:0 +msgid "Office Location" +msgstr "" + +#. module: hr +#: field:hr.job,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +#: model:ir.model,name:hr.model_hr_employee +#: model:process.node,name:hr.process_node_employee0 +msgid "Employee" +msgstr "" + +#. module: hr +#: model:process.node,note:hr.process_node_employeecontact0 +msgid "Other information" +msgstr "" + +#. module: hr +#: help:hr.employee,image_small:0 +msgid "" +"Small-sized photo of the employee. It is automatically resized as a 64x64px " +"image, with aspect ratio preserved. Use this field anywhere a small image is " +"required." +msgstr "" + +#. module: hr +#: field:hr.employee,birthday:0 +msgid "Date of Birth" +msgstr "" + +#. module: hr +#: help:hr.job,no_of_recruitment:0 +msgid "Number of new employees you expect to recruit." +msgstr "" + +#. module: hr +#: model:ir.actions.client,name:hr.action_client_hr_menu +msgid "Open HR Menu" +msgstr "" + +#. module: hr +#: help:hr.job,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: hr +#: help:hr.config.settings,module_account_analytic_analysis:0 +msgid "" +"This installs the module account_analytic_analysis, which will install sales " +"management too." +msgstr "" + +#. module: hr +#: view:board.board:0 +msgid "Human Resources Dashboard" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +#: field:hr.employee,job_id:0 +#: view:hr.job:0 +msgid "Job" +msgstr "" + +#. module: hr +#: field:hr.job,no_of_employee:0 +msgid "Current Number of Employees" +msgstr "" + +#. module: hr +#: field:hr.department,member_ids:0 +msgid "Members" +msgstr "" + +#. module: hr +#: model:ir.ui.menu,name:hr.menu_hr_configuration +msgid "Configuration" +msgstr "" + +#. module: hr +#: model:process.node,note:hr.process_node_employee0 +msgid "Employee form and structure" +msgstr "" + +#. module: hr +#: field:hr.config.settings,module_hr_expense:0 +msgid "Manage employees expenses" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "Tel:" +msgstr "" + +#. module: hr +#: selection:hr.employee,marital:0 +msgid "Divorced" +msgstr "" + +#. module: hr +#: field:hr.employee.category,parent_id:0 +msgid "Parent Category" +msgstr "" + +#. module: hr +#: view:hr.department:0 +#: model:ir.actions.act_window,name:hr.open_module_tree_department +#: model:ir.ui.menu,name:hr.menu_hr_department_tree +msgid "Departments" +msgstr "" + +#. module: hr +#: model:process.node,name:hr.process_node_employeecontact0 +msgid "Employee Contact" +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,help:hr.action_hr_job +msgid "" +"

\n" +" Click to define a new job position.\n" +"

\n" +" Job Positions are used to define jobs and their " +"requirements.\n" +" You can keep track of the number of employees you have per " +"job\n" +" position and follow the evolution according to what you " +"planned\n" +" for the future.\n" +"

\n" +" You can attach a survey to a job position. It will be used " +"in\n" +" the recruitment process to evaluate the applicants for this " +"job\n" +" position.\n" +"

\n" +" " +msgstr "" + +#. module: hr +#: selection:hr.employee,gender:0 +msgid "Male" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" +msgstr "" + +#. module: hr +#: help:hr.config.settings,module_hr_evaluation:0 +msgid "This installs the module hr_evaluation." +msgstr "" + +#. module: hr +#: constraint:hr.employee:0 +msgid "Error! You cannot create recursive hierarchy of Employee(s)." +msgstr "" + +#. module: hr +#: help:hr.config.settings,module_hr_attendance:0 +msgid "This installs the module hr_attendance." +msgstr "" + +#. module: hr +#: field:hr.employee,image_small:0 +msgid "Smal-sized photo" +msgstr "" + +#. module: hr +#: view:hr.employee.category:0 +#: model:ir.model,name:hr.model_hr_employee_category +msgid "Employee Category" +msgstr "" + +#. module: hr +#: field:hr.employee,category_ids:0 +msgid "Tags" +msgstr "" + +#. module: hr +#: help:hr.config.settings,module_hr_contract:0 +msgid "This installs the module hr_contract." +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "Related User" +msgstr "" + +#. module: hr +#: view:hr.config.settings:0 +msgid "or" +msgstr "" + +#. module: hr +#: field:hr.employee.category,name:0 +msgid "Category" +msgstr "" + +#. module: hr +#: view:hr.job:0 +msgid "Stop Recruitment" +msgstr "" + +#. module: hr +#: field:hr.config.settings,module_hr_attendance:0 +msgid "Install attendances feature" +msgstr "" + +#. module: hr +#: help:hr.employee,bank_account_id:0 +msgid "Employee bank salary account" +msgstr "" + +#. module: hr +#: field:hr.department,note:0 +msgid "Note" +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,name:hr.open_view_employee_tree +msgid "Employees Structure" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "Contact Information" +msgstr "" + +#. module: hr +#: field:hr.config.settings,module_hr_holidays:0 +msgid "Manage holidays, leaves and allocation requests" +msgstr "" + +#. module: hr +#: field:hr.department,child_ids:0 +msgid "Child Departments" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +#: view:hr.job:0 +#: field:hr.job,state:0 +msgid "Status" +msgstr "" + +#. module: hr +#: field:hr.employee,otherid:0 +msgid "Other Id" +msgstr "" + +#. module: hr +#: model:process.process,name:hr.process_process_employeecontractprocess0 +msgid "Employee Contract" +msgstr "" + +#. module: hr +#: view:hr.config.settings:0 +msgid "Contracts" +msgstr "" + +#. module: hr +#: help:hr.job,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: hr +#: field:hr.employee,ssnid:0 +msgid "SSN No" +msgstr "" + +#. module: hr +#: field:hr.job,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: hr +#: field:hr.config.settings,module_hr_recruitment:0 +msgid "Manage the recruitment process" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "Active" +msgstr "" + +#. module: hr +#: view:hr.config.settings:0 +msgid "Human Resources Management" +msgstr "" + +#. module: hr +#: view:hr.config.settings:0 +msgid "Install your country's payroll" +msgstr "" + +#. module: hr +#: field:hr.employee,bank_account_id:0 +msgid "Bank Account Number" +msgstr "" + +#. module: hr +#: view:hr.department:0 +msgid "Companies" +msgstr "" + +#. module: hr +#: field:hr.job,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: hr +#: model:process.transition,note:hr.process_transition_contactofemployee0 +msgid "" +"In the Employee form, there are different kind of information like Contact " +"information." +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,help:hr.open_view_employee_list_my +msgid "" +"

\n" +" Click to add a new employee.\n" +"

\n" +" With just a quick glance on the OpenERP employee screen, " +"you\n" +" can easily find all the information you need for each " +"person;\n" +" contact data, job position, availability, etc.\n" +"

\n" +" " +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "HR Settings" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "Citizenship & Other Info" +msgstr "" + +#. module: hr +#: constraint:hr.department:0 +msgid "Error! You cannot create recursive departments." +msgstr "" + +#. module: hr +#: field:hr.employee,address_id:0 +msgid "Working Address" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "Public Information" +msgstr "" + +#. module: hr +#: field:hr.employee,marital:0 +msgid "Marital Status" +msgstr "" + +#. module: hr +#: model:ir.model,name:hr.model_ir_actions_act_window +msgid "ir.actions.act_window" +msgstr "" + +#. module: hr +#: field:hr.employee,last_login:0 +msgid "Latest Connection" +msgstr "" + +#. module: hr +#: field:hr.employee,image:0 +msgid "Photo" +msgstr "" + +#. module: hr +#: view:hr.config.settings:0 +msgid "Cancel" +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,help:hr.open_module_tree_department +msgid "" +"

\n" +" Click to create a department.\n" +"

\n" +" OpenERP's department structure is used to manage all " +"documents\n" +" related to employees by departments: expenses, timesheets,\n" +" leaves and holidays, recruitments, etc.\n" +"

\n" +" " +msgstr "" + +#. module: hr +#: help:hr.config.settings,module_hr_timesheet:0 +msgid "This installs the module hr_timesheet." +msgstr "" + +#. module: hr +#: help:hr.job,expected_employees:0 +msgid "" +"Expected number of employees for this job position after new recruitment." +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,help:hr.view_department_form_installer +msgid "" +"

\n" +" Click to define a new department.\n" +"

\n" +" Your departments structure is used to manage all documents\n" +" related to employees by departments: expenses and " +"timesheets,\n" +" leaves and holidays, recruitments, etc.\n" +"

\n" +" " +msgstr "" + +#. module: hr +#: view:hr.employee:0 +msgid "Personal Information" +msgstr "" + +#. module: hr +#: field:hr.employee,city:0 +msgid "City" +msgstr "" + +#. module: hr +#: field:hr.employee,passport_id:0 +msgid "Passport No" +msgstr "" + +#. module: hr +#: field:hr.employee,mobile_phone:0 +msgid "Work Mobile" +msgstr "" + +#. module: hr +#: selection:hr.job,state:0 +msgid "Recruitement in Progress" +msgstr "" + +#. module: hr +#: field:hr.config.settings,module_account_analytic_analysis:0 +msgid "" +"Allow invoicing based on timesheets (the sale application will be installed)" +msgstr "" + +#. module: hr +#: view:hr.employee.category:0 +msgid "Employees Categories" +msgstr "" + +#. module: hr +#: field:hr.employee,address_home_id:0 +msgid "Home Address" +msgstr "" + +#. module: hr +#: field:hr.config.settings,module_hr_timesheet:0 +msgid "Manage timesheets" +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,name:hr.open_payroll_modules +msgid "Payroll" +msgstr "" + +#. module: hr +#: selection:hr.employee,marital:0 +msgid "Single" +msgstr "" + +#. module: hr +#: field:hr.job,name:0 +msgid "Job Name" +msgstr "" + +#. module: hr +#: view:hr.job:0 +msgid "In Position" +msgstr "" + +#. module: hr +#: help:hr.config.settings,module_hr_payroll:0 +msgid "This installs the module hr_payroll." +msgstr "" + +#. module: hr +#: field:hr.config.settings,module_hr_contract:0 +msgid "Record contracts per employee" +msgstr "" + +#. module: hr +#: view:hr.department:0 +msgid "department" +msgstr "" + +#. module: hr +#: field:hr.employee,country_id:0 +msgid "Nationality" +msgstr "" + +#. module: hr +#: view:hr.config.settings:0 +msgid "Additional Features" +msgstr "" + +#. module: hr +#: field:hr.employee,notes:0 +msgid "Notes" +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,name:hr.action2 +msgid "Subordinate Hierarchy" +msgstr "" + +#. module: hr +#: field:hr.employee,resource_id:0 +msgid "Resource" +msgstr "" + +#. module: hr +#: field:hr.department,complete_name:0 +#: field:hr.employee,name_related:0 +#: field:hr.employee.category,complete_name:0 +msgid "Name" +msgstr "" + +#. module: hr +#: field:hr.employee,gender:0 +msgid "Gender" +msgstr "" + +#. module: hr +#: view:hr.employee:0 +#: field:hr.employee.category,employee_ids:0 +#: field:hr.job,employee_ids:0 +#: model:ir.actions.act_window,name:hr.hr_employee_normal_action_tree +#: model:ir.actions.act_window,name:hr.open_view_employee_list +#: model:ir.actions.act_window,name:hr.open_view_employee_list_my +#: model:ir.ui.menu,name:hr.menu_open_view_employee_list_my +msgid "Employees" +msgstr "" + +#. module: hr +#: help:hr.employee,sinid:0 +msgid "Social Insurance Number" +msgstr "" + +#. module: hr +#: field:hr.department,name:0 +msgid "Department Name" +msgstr "" + +#. module: hr +#: model:ir.ui.menu,name:hr.menu_hr_reporting_timesheet +msgid "Reports" +msgstr "" + +#. module: hr +#: field:hr.config.settings,module_hr_payroll:0 +msgid "Manage payroll" +msgstr "" + +#. module: hr +#: view:hr.config.settings:0 +#: model:ir.actions.act_window,name:hr.action_human_resources_configuration +msgid "Configure Human Resources" +msgstr "" + +#. module: hr +#: selection:hr.job,state:0 +msgid "No Recruitment" +msgstr "" + +#. module: hr +#: help:hr.employee,ssnid:0 +msgid "Social Security Number" +msgstr "" + +#. module: hr +#: model:process.node,note:hr.process_node_openerpuser0 +msgid "Creation of a OpenERP user" +msgstr "" + +#. module: hr +#: field:hr.employee,login:0 +msgid "Login" +msgstr "" + +#. module: hr +#: field:hr.job,expected_employees:0 +msgid "Total Forecasted Employees" +msgstr "" + +#. module: hr +#: help:hr.job,state:0 +msgid "" +"By default 'In position', set it to 'In Recruitment' if recruitment process " +"is going on for this job position." +msgstr "" + +#. module: hr +#: model:ir.model,name:hr.model_res_users +msgid "Users" +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,name:hr.action_hr_job +#: model:ir.ui.menu,name:hr.menu_hr_job +msgid "Job Positions" +msgstr "" + +#. module: hr +#: model:ir.actions.act_window,help:hr.open_board_hr +msgid "" +"
\n" +"

\n" +" Human Resources dashboard is empty.\n" +"

\n" +" To add your first report into this dashboard, go to any\n" +" menu, switch to list or graph view, and click 'Add " +"to\n" +" Dashboard' in the extended search options.\n" +"

\n" +" You can filter and group data before inserting into the\n" +" dashboard using the search options.\n" +"

\n" +"
\n" +" " +msgstr "" + +#. module: hr +#: view:hr.employee:0 +#: field:hr.employee,coach_id:0 +msgid "Coach" +msgstr "" + +#. module: hr +#: sql_constraint:hr.job:0 +msgid "The name of the job position must be unique per company!" +msgstr "" + +#. module: hr +#: help:hr.config.settings,module_hr_expense:0 +msgid "This installs the module hr_expense." +msgstr "" + +#. module: hr +#: model:ir.model,name:hr.model_hr_config_settings +msgid "hr.config.settings" +msgstr "" + +#. module: hr +#: field:hr.department,manager_id:0 +#: view:hr.employee:0 +#: field:hr.employee,parent_id:0 +msgid "Manager" +msgstr "" + +#. module: hr +#: selection:hr.employee,marital:0 +msgid "Widower" +msgstr "" + +#. module: hr +#: field:hr.employee,child_ids:0 +msgid "Subordinates" +msgstr "" + +#. module: hr +#: view:hr.config.settings:0 +msgid "Apply" +msgstr "" diff --git a/addons/hr/i18n/hi.po b/addons/hr/i18n/hi.po index 54343c0286e..83cf1e8350b 100644 --- a/addons/hr/i18n/hi.po +++ b/addons/hr/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/hr.po b/addons/hr/i18n/hr.po index 00788ab8815..c1ca0fcd414 100644 --- a/addons/hr/i18n/hr.po +++ b/addons/hr/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: hr\n" #. module: hr @@ -25,7 +25,7 @@ msgstr "OpenERP korisnik" #. module: hr #: field:hr.config.settings,module_hr_timesheet_sheet:0 msgid "Allow timesheets validation by managers" -msgstr "Dopusti voditelju potvrdu kontrolnih kartica" +msgstr "Dopusti voditelju ovjeru evidencije rada" #. module: hr #: field:hr.job,requirements:0 @@ -458,6 +458,8 @@ msgid "" "$('.oe_employee_picture').load(function() { if($(this).width() > " "$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 @@ -488,7 +490,7 @@ msgstr "Kategorija djelatnika" #. module: hr #: field:hr.employee,category_ids:0 msgid "Tags" -msgstr "Oznake" +msgstr "Tagovi" #. module: hr #: help:hr.config.settings,module_hr_contract:0 @@ -518,7 +520,7 @@ msgstr "Zaustavi proces zapošljavanja" #. module: hr #: field:hr.config.settings,module_hr_attendance:0 msgid "Install attendances feature" -msgstr "" +msgstr "Instaliraj modul za praćenje prisustva" #. module: hr #: help:hr.employee,bank_account_id:0 @@ -804,8 +806,8 @@ msgstr "Zapošljavanje u tijeku" msgid "" "Allow invoicing based on timesheets (the sale application will be installed)" msgstr "" -"Dopusti fakturiranje na osnovu kontrolnih kartica (aplikacija za prodaju će " -"biti instalirana)" +"Dopusti fakturiranje na osnovi evidencije rada (instalirati će aplikaciju za " +"prodaju)" #. module: hr #: view:hr.employee.category:0 @@ -820,7 +822,7 @@ msgstr "Kućna adresa" #. module: hr #: field:hr.config.settings,module_hr_timesheet:0 msgid "Manage timesheets" -msgstr "Upravljaj kontrolnim karticama" +msgstr "Upravljaj evidencijom rada" #. module: hr #: model:ir.actions.act_window,name:hr.open_payroll_modules @@ -1041,7 +1043,7 @@ msgstr "Ovo instalira modul hr_expense." #. module: hr #: model:ir.model,name:hr.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr #: field:hr.department,manager_id:0 diff --git a/addons/hr/i18n/hu.po b/addons/hr/i18n/hu.po index 70ff35107d3..94a7723ab67 100644 --- a/addons/hr/i18n/hu.po +++ b/addons/hr/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -352,7 +352,7 @@ msgstr "HR vezérlőpult" #: field:hr.employee,job_id:0 #: view:hr.job:0 msgid "Job" -msgstr "Munka" +msgstr "Beosztás" #. module: hr #: field:hr.job,no_of_employee:0 @@ -849,7 +849,7 @@ msgstr "részleg" #. module: hr #: field:hr.employee,country_id:0 msgid "Nationality" -msgstr "Nemzetiség" +msgstr "Állampolgárság" #. module: hr #: view:hr.config.settings:0 @@ -1028,7 +1028,7 @@ msgstr "hr.config.settings" #: view:hr.employee:0 #: field:hr.employee,parent_id:0 msgid "Manager" -msgstr "Vezető" +msgstr "Menedzser" #. module: hr #: selection:hr.employee,marital:0 diff --git a/addons/hr/i18n/id.po b/addons/hr/i18n/id.po index ad671238428..6213fd0e9dd 100644 --- a/addons/hr/i18n/id.po +++ b/addons/hr/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/it.po b/addons/hr/i18n/it.po index da320cb5ecd..47e0684e50b 100644 --- a/addons/hr/i18n/it.po +++ b/addons/hr/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-19 19:47+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ja.po b/addons/hr/i18n/ja.po index f4b4bb7c0f3..dab8864b7cf 100644 --- a/addons/hr/i18n/ja.po +++ b/addons/hr/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -63,7 +63,7 @@ msgstr "" #. module: hr #: view:hr.config.settings:0 msgid "Time Tracking" -msgstr "" +msgstr "時間記録" #. module: hr #: view:hr.employee:0 @@ -99,7 +99,7 @@ msgstr "部門" #. module: hr #: field:hr.employee,work_email:0 msgid "Work Email" -msgstr "" +msgstr "勤務先Eメール" #. module: hr #: help:hr.employee,image:0 @@ -159,13 +159,13 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Birth" -msgstr "" +msgstr "出生" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "従業員タグ" #. module: hr #: view:hr.job:0 @@ -200,7 +200,7 @@ msgstr "" #. module: hr #: view:hr.config.settings:0 msgid "Talent Management" -msgstr "" +msgstr "タレント管理" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 @@ -215,7 +215,7 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Position" -msgstr "" +msgstr "役職" #. module: hr #: help:hr.job,message_unread:0 @@ -303,7 +303,7 @@ msgstr "" #. module: hr #: field:hr.employee,birthday:0 msgid "Date of Birth" -msgstr "誕生日" +msgstr "生年月日" #. module: hr #: help:hr.job,no_of_recruitment:0 @@ -467,12 +467,12 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Related User" -msgstr "" +msgstr "関連ユーザ" #. module: hr #: view:hr.config.settings:0 msgid "or" -msgstr "" +msgstr "または" #. module: hr #: field:hr.employee.category,name:0 @@ -507,7 +507,7 @@ msgstr "従業員体系" #. module: hr #: view:hr.employee:0 msgid "Contact Information" -msgstr "連絡先の情報" +msgstr "連絡先情報" #. module: hr #: field:hr.config.settings,module_hr_holidays:0 @@ -539,7 +539,7 @@ msgstr "従業員契約" #. module: hr #: view:hr.config.settings:0 msgid "Contracts" -msgstr "" +msgstr "契約" #. module: hr #: help:hr.job,message_ids:0 @@ -569,7 +569,7 @@ msgstr "有効" #. module: hr #: view:hr.config.settings:0 msgid "Human Resources Management" -msgstr "" +msgstr "人材管理" #. module: hr #: view:hr.config.settings:0 @@ -616,12 +616,12 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "HR Settings" -msgstr "" +msgstr "HR設定" #. module: hr #: view:hr.employee:0 msgid "Citizenship & Other Info" -msgstr "" +msgstr "国籍・その他" #. module: hr #: constraint:hr.department:0 @@ -636,7 +636,7 @@ msgstr "勤務先住所" #. module: hr #: view:hr.employee:0 msgid "Public Information" -msgstr "" +msgstr "公開情報" #. module: hr #: field:hr.employee,marital:0 @@ -661,7 +661,7 @@ msgstr "写真" #. module: hr #: view:hr.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "取消" #. module: hr #: model:ir.actions.act_window,help:hr.open_module_tree_department @@ -776,7 +776,7 @@ msgstr "" #. module: hr #: field:hr.config.settings,module_hr_contract:0 msgid "Record contracts per employee" -msgstr "" +msgstr "従業員毎に契約を記録" #. module: hr #: view:hr.department:0 @@ -791,7 +791,7 @@ msgstr "国籍" #. module: hr #: view:hr.config.settings:0 msgid "Additional Features" -msgstr "" +msgstr "追加機能" #. module: hr #: field:hr.employee,notes:0 @@ -849,7 +849,7 @@ msgstr "" #. module: hr #: field:hr.config.settings,module_hr_payroll:0 msgid "Manage payroll" -msgstr "" +msgstr "給与計算を管理" #. module: hr #: view:hr.config.settings:0 @@ -960,7 +960,7 @@ msgstr "部下" #. module: hr #: view:hr.config.settings:0 msgid "Apply" -msgstr "" +msgstr "適用" #~ msgid "Error! You can not create recursive departments." #~ msgstr "エラー。反復する部署を作ることはできません。" diff --git a/addons/hr/i18n/ko.po b/addons/hr/i18n/ko.po index 6acd63747c3..30c3bc97a35 100644 --- a/addons/hr/i18n/ko.po +++ b/addons/hr/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lo.po b/addons/hr/i18n/lo.po index 0e32ef25f23..9a1d317aa3b 100644 --- a/addons/hr/i18n/lo.po +++ b/addons/hr/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lt.po b/addons/hr/i18n/lt.po index e2b58fbaef1..ded5d8cf5d8 100644 --- a/addons/hr/i18n/lt.po +++ b/addons/hr/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lv.po b/addons/hr/i18n/lv.po index eaa03a2a0ec..d2edc1ff8cb 100644 --- a/addons/hr/i18n/lv.po +++ b/addons/hr/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/mk.po b/addons/hr/i18n/mk.po index 3f3c2bba130..9f08bf9b9c2 100644 --- a/addons/hr/i18n/mk.po +++ b/addons/hr/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/mn.po b/addons/hr/i18n/mn.po index 24a45f360f9..aade61c23df 100644 --- a/addons/hr/i18n/mn.po +++ b/addons/hr/i18n/mn.po @@ -20,8 +20,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nb.po b/addons/hr/i18n/nb.po index 0f1cddb54f4..d8f13f3238b 100644 --- a/addons/hr/i18n/nb.po +++ b/addons/hr/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nl.po b/addons/hr/i18n/nl.po index 2f91677572b..a5efb2247a9 100644 --- a/addons/hr/i18n/nl.po +++ b/addons/hr/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -24,7 +24,7 @@ msgstr "OpenERP gebruiker" #. module: hr #: field:hr.config.settings,module_hr_timesheet_sheet:0 msgid "Allow timesheets validation by managers" -msgstr "Urenstaaat controle door managers" +msgstr "Urenstaat controle door managers" #. module: hr #: field:hr.job,requirements:0 @@ -81,7 +81,7 @@ msgstr "Maak uw afdelingen aan" #. module: hr #: help:hr.job,no_of_employee:0 msgid "Number of employees currently occupying this job position." -msgstr "Huidige aantal werknemers welke deze functie bekleden ." +msgstr "Huidig aantal werknemers welke deze functie bekleden." #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 @@ -195,7 +195,7 @@ msgstr "Verlof" #. module: hr #: selection:hr.employee,marital:0 msgid "Married" -msgstr "Getrouwd" +msgstr "Gehuwd" #. module: hr #: field:hr.job,message_ids:0 @@ -306,7 +306,7 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" -"Kleinen foto van de werknemer. Deze foto wordt automatisch, in verhouding, " +"Kleine foto van de werknemer. Deze foto wordt automatisch, in verhouding, " "geschaald naar 64x64px. Gebruik dit veld, overal waar een kleine afbeelding " "nodig is." @@ -606,7 +606,7 @@ msgstr "Personeelsbeheer" #. module: hr #: view:hr.config.settings:0 msgid "Install your country's payroll" -msgstr "Installeer uw land specifieke salarisadministratie" +msgstr "Installeer de specifieke salarisadministratie van uw land" #. module: hr #: field:hr.employee,bank_account_id:0 @@ -779,7 +779,7 @@ msgstr "Plaats" #. module: hr #: field:hr.employee,passport_id:0 msgid "Passport No" -msgstr "Paspoort nr" +msgstr "Paspoortnummer" #. module: hr #: field:hr.employee,mobile_phone:0 @@ -931,7 +931,7 @@ msgstr "Geen werving en selectie" #. module: hr #: help:hr.employee,ssnid:0 msgid "Social Security Number" -msgstr "Verzekeringsnummer" +msgstr "BSN nummer" #. module: hr #: model:process.node,note:hr.process_node_openerpuser0 @@ -946,7 +946,7 @@ msgstr "Login" #. module: hr #: field:hr.job,expected_employees:0 msgid "Total Forecasted Employees" -msgstr "Totaal aantal verwachte werknmers" +msgstr "Totaal aantal verwachte werknemers" #. module: hr #: help:hr.job,state:0 @@ -1034,7 +1034,7 @@ msgstr "Manager" #. module: hr #: selection:hr.employee,marital:0 msgid "Widower" -msgstr "Weduwenaar" +msgstr "Weduwe/Weduwnaar" #. module: hr #: field:hr.employee,child_ids:0 diff --git a/addons/hr/i18n/nl_BE.po b/addons/hr/i18n/nl_BE.po index f2aea040397..ee62bddd68d 100644 --- a/addons/hr/i18n/nl_BE.po +++ b/addons/hr/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/pl.po b/addons/hr/i18n/pl.po index caac8241b99..f378343ffb3 100644 --- a/addons/hr/i18n/pl.po +++ b/addons/hr/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -58,6 +58,9 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Średniej wielkości fotografia pracownika. Jest automatycznie skalowana do " +"obrazu 128x128px, z zachowaniem skali. Używaj tego pola w formie widoku lub " +"niektórych widoków typu kanban." #. module: hr #: view:hr.config.settings:0 @@ -83,7 +86,7 @@ msgstr "Liczba pracowników na tym stanowisku" #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 msgid "Organize employees periodic evaluation" -msgstr "" +msgstr "Organizuje okresową ocene pracowników" #. module: hr #: view:hr.department:0 @@ -106,11 +109,13 @@ msgid "" "This field holds the image used as photo for the employee, limited to " "1024x1024px." msgstr "" +"Te pole przechowuje obraz używany jako fotografia pracownika, ograniczona do " +"wielkości 1024x1024px." #. module: hr #: help:hr.config.settings,module_hr_holidays:0 msgid "This installs the module hr_holidays." -msgstr "" +msgstr "To instaluje moduł hr_holidays." #. module: hr #: view:hr.job:0 @@ -153,7 +158,7 @@ msgstr "Błąd! Nie możesz tworzyć rekurencyjnych kategorii." #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 msgid "This installs the module hr_recruitment." -msgstr "" +msgstr "To instaluje moduł hr_recruitment." #. module: hr #: view:hr.employee:0 @@ -199,12 +204,12 @@ msgstr "Wiadomości" #. module: hr #: view:hr.config.settings:0 msgid "Talent Management" -msgstr "" +msgstr "Zarządzanie talentami" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 msgid "This installs the module hr_timesheet_sheet." -msgstr "" +msgstr "To instaluje moduł hr_timesheet_sheet." #. module: hr #: view:hr.employee:0 @@ -238,7 +243,7 @@ msgstr "" #. module: hr #: field:hr.employee,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Zdjęcie średniej wielkości" #. module: hr #: field:hr.employee,identification_id:0 @@ -279,7 +284,7 @@ msgstr "Położenia biura" #. module: hr #: field:hr.job,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Obserwatorzy" #. module: hr #: view:hr.employee:0 @@ -300,6 +305,8 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Mała fotografia pracownika. Jest automatycznie skalowana jako obraz 64x64px, " +"z zachowaniem skali. Używane wszędzie gdzie jest potrzebny mały obraz." #. module: hr #: field:hr.employee,birthday:0 @@ -322,6 +329,9 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Zawiera podsumowanie wypowiedzi (liczbę wiadomości, ...). To podsumowanie " +"jest bezpośrednio w formacie html, aby można je było stosować w widokach " +"kanban." #. module: hr #: help:hr.config.settings,module_account_analytic_analysis:0 @@ -329,6 +339,8 @@ msgid "" "This installs the module account_analytic_analysis, which will install sales " "management too." msgstr "" +"To instaluje moduł account_analytic_analysis, który również instaluje " +"zarządzanie sprzedażą." #. module: hr #: view:board.board:0 @@ -370,7 +382,7 @@ msgstr "Wydatki pracownika" #. module: hr #: view:hr.employee:0 msgid "Tel:" -msgstr "" +msgstr "Tel:" #. module: hr #: selection:hr.employee,marital:0 @@ -416,6 +428,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknij aby zdefiniować nowe stanowisko pracy.\n" +"

\n" +" Stanowiska pracy są używane do definiowania prac i ich " +"wymagań.\n" +" Możesz śledzić ilość pracowników przypisanych do wybranego\n" +" stanowiska pracy i śledzić rozwój w odniesieniu do tego co " +"jest\n" +" zaplanowane na przyszłość.\n" +"

\n" +" Możesz dołączyć ankietę do stanowiska . Będzie dołączona w\n" +" procesie rekrutacyjnym do oszacowania aplikantów dla tego\n" +" stanowiska pracy.\n" +"

\n" +" " #. module: hr #: selection:hr.employee,gender:0 @@ -432,22 +459,22 @@ msgstr "" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 msgid "This installs the module hr_evaluation." -msgstr "" +msgstr "To instaluje moduł hr_evaluation." #. module: hr #: constraint:hr.employee:0 msgid "Error! You cannot create recursive hierarchy of Employee(s)." -msgstr "" +msgstr "Błąd! Nie możesz utworzyć rekurencyjnej hierarchii pracownika(ów)." #. module: hr #: help:hr.config.settings,module_hr_attendance:0 msgid "This installs the module hr_attendance." -msgstr "" +msgstr "To instaluje moduł hr_attendance." #. module: hr #: field:hr.employee,image_small:0 msgid "Smal-sized photo" -msgstr "" +msgstr "Mała fotografia" #. module: hr #: view:hr.employee.category:0 @@ -463,7 +490,7 @@ msgstr "Tagi" #. module: hr #: help:hr.config.settings,module_hr_contract:0 msgid "This installs the module hr_contract." -msgstr "" +msgstr "To instaluje moduł hr_contract." #. module: hr #: view:hr.employee:0 @@ -473,7 +500,7 @@ msgstr "Powiązany użytkownik" #. module: hr #: view:hr.config.settings:0 msgid "or" -msgstr "" +msgstr "lub" #. module: hr #: field:hr.employee.category,name:0 @@ -488,7 +515,7 @@ msgstr "Wstrzymaj rekrutację" #. module: hr #: field:hr.config.settings,module_hr_attendance:0 msgid "Install attendances feature" -msgstr "" +msgstr "Instaluje funkcję frekwencji" #. module: hr #: help:hr.employee,bank_account_id:0 @@ -513,7 +540,7 @@ msgstr "Informacje kontaktowe" #. module: hr #: field:hr.config.settings,module_hr_holidays:0 msgid "Manage holidays, leaves and allocation requests" -msgstr "" +msgstr "Zarządza urlopami, opuszczonymi dniami, zapotrzebowaniem przydziałów" #. module: hr #: field:hr.department,child_ids:0 @@ -555,7 +582,7 @@ msgstr "PESEL" #. module: hr #: field:hr.job,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Jest obserwatorem" #. module: hr #: field:hr.config.settings,module_hr_recruitment:0 @@ -598,6 +625,8 @@ msgid "" "In the Employee form, there are different kind of information like Contact " "information." msgstr "" +"W formularzu Pracownik znajdują się rozmaite rodzaje informacji takich jak " +"informacje kontaktowe." #. module: hr #: model:ir.actions.act_window,help:hr.open_view_employee_list_my @@ -681,13 +710,14 @@ msgstr "" #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 msgid "This installs the module hr_timesheet." -msgstr "" +msgstr "To instaluje moduł hr_timesheet." #. module: hr #: help:hr.job,expected_employees:0 msgid "" "Expected number of employees for this job position after new recruitment." msgstr "" +"Oczekiwana liczba pracowników dla tego stanowiska pracy po nowej rekrutacji." #. module: hr #: model:ir.actions.act_window,help:hr.view_department_form_installer @@ -726,13 +756,15 @@ msgstr "Służbowy telefon komórkowy" #. module: hr #: selection:hr.job,state:0 msgid "Recruitement in Progress" -msgstr "" +msgstr "Rekrutacja w toku" #. module: hr #: field:hr.config.settings,module_account_analytic_analysis:0 msgid "" "Allow invoicing based on timesheets (the sale application will be installed)" msgstr "" +"Zezwól na fakturowanie bazujące na ewidencji czasu pracy (aplikacja " +"sprzedaży zostanie zainstalowana)" #. module: hr #: view:hr.employee.category:0 @@ -772,7 +804,7 @@ msgstr "Na stanowisku" #. module: hr #: help:hr.config.settings,module_hr_payroll:0 msgid "This installs the module hr_payroll." -msgstr "" +msgstr "To instaluje moduł module hr_payroll." #. module: hr #: field:hr.config.settings,module_hr_contract:0 @@ -802,7 +834,7 @@ msgstr "Uwagi" #. module: hr #: model:ir.actions.act_window,name:hr.action2 msgid "Subordinate Hierarchy" -msgstr "" +msgstr "Hierarchia podwładnych" #. module: hr #: field:hr.employee,resource_id:0 @@ -881,7 +913,7 @@ msgstr "Logowanie" #. module: hr #: field:hr.job,expected_employees:0 msgid "Total Forecasted Employees" -msgstr "" +msgstr "Całkowita przewidywana liczba pracowników" #. module: hr #: help:hr.job,state:0 @@ -934,7 +966,7 @@ msgstr "Nazwa stanowiska musi być unikalna w firmie!" #. module: hr #: help:hr.config.settings,module_hr_expense:0 msgid "This installs the module hr_expense." -msgstr "" +msgstr "To instaluje moduł hr_expense." #. module: hr #: model:ir.model,name:hr.model_hr_config_settings diff --git a/addons/hr/i18n/pt.po b/addons/hr/i18n/pt.po index 9a7141af1e9..5597c0b07f7 100644 --- a/addons/hr/i18n/pt.po +++ b/addons/hr/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/pt_BR.po b/addons/hr/i18n/pt_BR.po index 40a176b0a34..a0960ccc0bf 100644 --- a/addons/hr/i18n/pt_BR.po +++ b/addons/hr/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-24 14:14+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ro.po b/addons/hr/i18n/ro.po index d477ede4d4a..29ffe6990d6 100644 --- a/addons/hr/i18n/ro.po +++ b/addons/hr/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ru.po b/addons/hr/i18n/ru.po index 439a7b746ab..17ae7e05b68 100644 --- a/addons/hr/i18n/ru.po +++ b/addons/hr/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sk.po b/addons/hr/i18n/sk.po index e4b1abb84ad..6514aeecebb 100644 --- a/addons/hr/i18n/sk.po +++ b/addons/hr/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sl.po b/addons/hr/i18n/sl.po index 35c57e83153..7d713164ee5 100644 --- a/addons/hr/i18n/sl.po +++ b/addons/hr/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -24,7 +24,7 @@ msgstr "Uporabnik OpenERP" #. module: hr #: field:hr.config.settings,module_hr_timesheet_sheet:0 msgid "Allow timesheets validation by managers" -msgstr "" +msgstr "Dovoli vodjem potrditev list prisotnosti" #. module: hr #: field:hr.job,requirements:0 @@ -34,12 +34,12 @@ msgstr "Zahteve" #. module: hr #: model:process.transition,name:hr.process_transition_contactofemployee0 msgid "Link the employee to information" -msgstr "" +msgstr "Poveži zaposlenega z informacijami" #. module: hr #: field:hr.employee,sinid:0 msgid "SIN No" -msgstr "" +msgstr "EMŠO" #. module: hr #: model:ir.actions.act_window,name:hr.open_board_hr @@ -58,11 +58,14 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Fotografija zaposlenega v srednji velikosti. Avtomatično bo spremenjena v " +"sliko 128x128, v ustreznem razmerju. Uporabite to polje v načinu pogleda " +"forme ali kanbana." #. module: hr #: view:hr.config.settings:0 msgid "Time Tracking" -msgstr "" +msgstr "Sledenje časa" #. module: hr #: view:hr.employee:0 @@ -73,17 +76,17 @@ msgstr "Združeno po..." #. module: hr #: model:ir.actions.act_window,name:hr.view_department_form_installer msgid "Create Your Departments" -msgstr "" +msgstr "Kreirajte vaše oddeleke" #. module: hr #: help:hr.job,no_of_employee:0 msgid "Number of employees currently occupying this job position." -msgstr "" +msgstr "Število zaposlenih, ki so trenutno na tej poziciji." #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 msgid "Organize employees periodic evaluation" -msgstr "" +msgstr "Organiziranje periodičnega ocenjevanja zaposlenih" #. module: hr #: view:hr.department:0 @@ -105,12 +108,12 @@ msgstr "Službena e-pošta" msgid "" "This field holds the image used as photo for the employee, limited to " "1024x1024px." -msgstr "" +msgstr "Polje za fotografijio zaposlenega, omejeno na 1024x1024px." #. module: hr #: help:hr.config.settings,module_hr_holidays:0 msgid "This installs the module hr_holidays." -msgstr "" +msgstr "Instalirati modul hr_holidays." #. module: hr #: view:hr.job:0 @@ -120,7 +123,7 @@ msgstr "Zaposlitve" #. module: hr #: view:hr.job:0 msgid "In Recruitment" -msgstr "" +msgstr "V zaposlovanju" #. module: hr #: field:hr.job,message_unread:0 @@ -138,43 +141,43 @@ msgstr "Podjetje" #. module: hr #: field:hr.job,no_of_recruitment:0 msgid "Expected in Recruitment" -msgstr "" +msgstr "Pričakovano zaposlovanje" #. module: hr #: field:res.users,employee_ids:0 msgid "Related employees" -msgstr "" +msgstr "Povezani zaposleni" #. module: hr #: constraint:hr.employee.category:0 msgid "Error! You cannot create recursive Categories." -msgstr "" +msgstr "Napaka! Ne morete kreirati rekurzivne kategorije." #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 msgid "This installs the module hr_recruitment." -msgstr "" +msgstr "Instalacija modula hr_recruitment." #. module: hr #: view:hr.employee:0 msgid "Birth" -msgstr "" +msgstr "Rojstvo" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "Zaposleni - ključne besede" #. module: hr #: view:hr.job:0 msgid "Launch Recruitement" -msgstr "" +msgstr "Sproži zaposlovanje" #. module: hr #: model:process.transition,name:hr.process_transition_employeeuser0 msgid "Link a user to an employee" -msgstr "" +msgstr "Poveži uporabnika z zaposlenim" #. module: hr #: field:hr.department,parent_id:0 @@ -184,7 +187,7 @@ msgstr "Nadrejeni oddelek" #. module: hr #: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_config msgid "Leaves" -msgstr "" +msgstr "Odhodi" #. module: hr #: selection:hr.employee,marital:0 @@ -199,12 +202,12 @@ msgstr "Sporočila" #. module: hr #: view:hr.config.settings:0 msgid "Talent Management" -msgstr "" +msgstr "Upravljanje talentov" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 msgid "This installs the module hr_timesheet_sheet." -msgstr "" +msgstr "Instalacija modula hr_timesheet_sheet." #. module: hr #: view:hr.employee:0 @@ -224,7 +227,7 @@ msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." #. module: hr #: field:hr.employee,color:0 msgid "Color Index" -msgstr "" +msgstr "Barvvni index" #. module: hr #: model:process.transition,note:hr.process_transition_employeeuser0 @@ -232,6 +235,8 @@ msgid "" "The Related user field on the Employee form allows to link the OpenERP user " "(and her rights) to the employee." msgstr "" +"Povezano polje uporabnika na formi zaposlenega omogoča povezavo OpenERP " +"uporabnika (in njegovih pravic) z zaposlenim." #. module: hr #: field:hr.employee,image_medium:0 @@ -241,7 +246,7 @@ msgstr "Srednje velika slika" #. module: hr #: field:hr.employee,identification_id:0 msgid "Identification No" -msgstr "" +msgstr "Identifikacijska št." #. module: hr #: selection:hr.employee,gender:0 @@ -272,7 +277,7 @@ msgstr "Opis dela" #. module: hr #: field:hr.employee,work_location:0 msgid "Office Location" -msgstr "" +msgstr "Lokacija pisarne" #. module: hr #: field:hr.job,message_follower_ids:0 @@ -289,7 +294,7 @@ msgstr "Zaposleni" #. module: hr #: model:process.node,note:hr.process_node_employeecontact0 msgid "Other information" -msgstr "" +msgstr "Ostale informacije" #. module: hr #: help:hr.employee,image_small:0 @@ -298,6 +303,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Majhna fotografija zaposlenega. Avtomatično je spremenjena v sliko 64x64px, " +"z upoštevanjem razmerja. Uporabite to polje kjerkoli je zahtevana majhna " +"fotografija." #. module: hr #: field:hr.employee,birthday:0 @@ -307,12 +315,12 @@ msgstr "Datum rojstva" #. module: hr #: help:hr.job,no_of_recruitment:0 msgid "Number of new employees you expect to recruit." -msgstr "" +msgstr "Pričakovano število novo zaposlenih" #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu msgid "Open HR Menu" -msgstr "" +msgstr "Odpri meni Kadri" #. module: hr #: help:hr.job,message_summary:0 @@ -327,6 +335,8 @@ msgid "" "This installs the module account_analytic_analysis, which will install sales " "management too." msgstr "" +"To instalira modul account_analytic_analysis, ki bo instaliral tudi " +"upravljanje prodaje." #. module: hr #: view:board.board:0 @@ -343,7 +353,7 @@ msgstr "Zaposlitev" #. module: hr #: field:hr.job,no_of_employee:0 msgid "Current Number of Employees" -msgstr "" +msgstr "Trenutno število zaposlenih" #. module: hr #: field:hr.department,member_ids:0 @@ -358,12 +368,12 @@ msgstr "Konfiguracija" #. module: hr #: model:process.node,note:hr.process_node_employee0 msgid "Employee form and structure" -msgstr "" +msgstr "Struktura zaposlenih" #. module: hr #: field:hr.config.settings,module_hr_expense:0 msgid "Manage employees expenses" -msgstr "" +msgstr "Upravljanje stroškov zaposlenih" #. module: hr #: view:hr.employee:0 @@ -390,7 +400,7 @@ msgstr "Oddelki" #. module: hr #: model:process.node,name:hr.process_node_employeecontact0 msgid "Employee Contact" -msgstr "" +msgstr "Kontakt zaposlenega" #. module: hr #: model:ir.actions.act_window,help:hr.action_hr_job @@ -414,6 +424,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Potrdite za definiranje novega delovnega mesta.\n" +"

\n" +" Delovna mesta se uporabljajo za določanje del in njihovih " +"zahtev.\n" +" Lahko sledite številu zaposlenih po delovnem mestu in\n" +" in doseganju glede na planirano\n" +" za prihodnost.\n" +"

\n" +" K delovnemu mestu lahko pripnete anketo. Uporabljena bo v\n" +" procesu zaposlovanja za ocenitev prijavljenih za to delovno\n" +" mesto.\n" +"

\n" +" " #. module: hr #: selection:hr.employee,gender:0 @@ -426,21 +450,23 @@ msgid "" "$('.oe_employee_picture').load(function() { if($(this).width() > " "$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 msgid "This installs the module hr_evaluation." -msgstr "" +msgstr "Instalacija modula hr_evaluation." #. module: hr #: constraint:hr.employee:0 msgid "Error! You cannot create recursive hierarchy of Employee(s)." -msgstr "" +msgstr "Ne moreš kreirati rekurzivne hierarhije zaposlenega." #. module: hr #: help:hr.config.settings,module_hr_attendance:0 msgid "This installs the module hr_attendance." -msgstr "" +msgstr "To instalira modul hr_attendance." #. module: hr #: field:hr.employee,image_small:0 @@ -461,7 +487,7 @@ msgstr "Ključne besede" #. module: hr #: help:hr.config.settings,module_hr_contract:0 msgid "This installs the module hr_contract." -msgstr "" +msgstr "To instalira modul hr_contract." #. module: hr #: view:hr.employee:0 @@ -481,17 +507,17 @@ msgstr "Kategorija" #. module: hr #: view:hr.job:0 msgid "Stop Recruitment" -msgstr "" +msgstr "Ustavi zaposlovanje" #. module: hr #: field:hr.config.settings,module_hr_attendance:0 msgid "Install attendances feature" -msgstr "" +msgstr "Namesti funkcionalnost attendances (prisotnost)." #. module: hr #: help:hr.employee,bank_account_id:0 msgid "Employee bank salary account" -msgstr "" +msgstr "Bančni račun zaposlenega" #. module: hr #: field:hr.department,note:0 @@ -511,7 +537,7 @@ msgstr "Podatki o stiku" #. module: hr #: field:hr.config.settings,module_hr_holidays:0 msgid "Manage holidays, leaves and allocation requests" -msgstr "" +msgstr "Upravljanje dopustov, odsotnosti in premestitev" #. module: hr #: field:hr.department,child_ids:0 @@ -528,12 +554,12 @@ msgstr "Stanje" #. module: hr #: field:hr.employee,otherid:0 msgid "Other Id" -msgstr "" +msgstr "Druga identifikacija" #. module: hr #: model:process.process,name:hr.process_process_employeecontractprocess0 msgid "Employee Contract" -msgstr "" +msgstr "Pogodba zaposlenega" #. module: hr #: view:hr.config.settings:0 @@ -548,7 +574,7 @@ msgstr "Sporočila in zgodovina sporočil" #. module: hr #: field:hr.employee,ssnid:0 msgid "SSN No" -msgstr "" +msgstr "EMŠO" #. module: hr #: field:hr.job,message_is_follower:0 @@ -558,7 +584,7 @@ msgstr "Je sledilec" #. module: hr #: field:hr.config.settings,module_hr_recruitment:0 msgid "Manage the recruitment process" -msgstr "" +msgstr "Upravljanje procesa zaposlovanja" #. module: hr #: view:hr.employee:0 @@ -568,17 +594,17 @@ msgstr "Aktiven" #. module: hr #: view:hr.config.settings:0 msgid "Human Resources Management" -msgstr "" +msgstr "Upravljanje kadrov" #. module: hr #: view:hr.config.settings:0 msgid "Install your country's payroll" -msgstr "" +msgstr "Namestite obračun osebnih dohodkov za vašo državo." #. module: hr #: field:hr.employee,bank_account_id:0 msgid "Bank Account Number" -msgstr "" +msgstr "Številka bančnega računa" #. module: hr #: view:hr.department:0 @@ -595,7 +621,7 @@ msgstr "Povzetek" msgid "" "In the Employee form, there are different kind of information like Contact " "information." -msgstr "" +msgstr "Na formi zaposlenega so različni podatki, npr. kontaktni podatki." #. module: hr #: model:ir.actions.act_window,help:hr.open_view_employee_list_my @@ -611,21 +637,29 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite, da dodate novega zaposlenega.\n" +"

\n" +" Samo s hitro preverbo forme zaposlenega v OpenERP lahko\n" +" enostavno najdete vse potrebne informacije za vsako osebo;\n" +" kontaktne podakte, delovno mesto, dosegljivost, itd.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 msgid "HR Settings" -msgstr "" +msgstr "Nastavitve kadrov" #. module: hr #: view:hr.employee:0 msgid "Citizenship & Other Info" -msgstr "" +msgstr "Državljanstvo in ostali podatki" #. module: hr #: constraint:hr.department:0 msgid "Error! You cannot create recursive departments." -msgstr "" +msgstr "Napaka! Ne morete kreirati rekurzivnih oddelkov." #. module: hr #: field:hr.employee,address_id:0 @@ -635,7 +669,7 @@ msgstr "Delovni naslov" #. module: hr #: view:hr.employee:0 msgid "Public Information" -msgstr "" +msgstr "Javni podatki" #. module: hr #: field:hr.employee,marital:0 @@ -650,7 +684,7 @@ msgstr "ir.actions.act_window" #. module: hr #: field:hr.employee,last_login:0 msgid "Latest Connection" -msgstr "" +msgstr "Zadnja povezava" #. module: hr #: field:hr.employee,image:0 @@ -675,17 +709,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za kreiranje oddelka.\n" +"

\n" +" OpenERP oddelki se uporabljajo za upravljanje dokumentov,\n" +" povezanih z zaposlenimi po oddelkih: stroški, prisotnost,\n" +" odsotnost in dopusti, zaposlitve, itd.\n" +"

\n" +" " #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 msgid "This installs the module hr_timesheet." -msgstr "" +msgstr "Namesti modul hr_timesheet." #. module: hr #: help:hr.job,expected_employees:0 msgid "" "Expected number of employees for this job position after new recruitment." -msgstr "" +msgstr "Pričakovano število zaposlenih za to pozicijo po novi razporeditvi." #. module: hr #: model:ir.actions.act_window,help:hr.view_department_form_installer @@ -700,6 +742,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za določitev novega oddelka.\n" +"

\n" +" Vaša oddelčna struktura je namenjena uporavljanju vseh " +"dokumentov\n" +" povezanih z zaposlenimi po oddelkih: stroški in " +"prisotnosti,\n" +" odsotnosti in dopusti, zaposlitve, itd.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 @@ -714,7 +766,7 @@ msgstr "Kraj" #. module: hr #: field:hr.employee,passport_id:0 msgid "Passport No" -msgstr "" +msgstr "Št. potnega lista" #. module: hr #: field:hr.employee,mobile_phone:0 @@ -724,13 +776,15 @@ msgstr "Službeni mobilni tel." #. module: hr #: selection:hr.job,state:0 msgid "Recruitement in Progress" -msgstr "" +msgstr "Zaposlovanje v teku" #. module: hr #: field:hr.config.settings,module_account_analytic_analysis:0 msgid "" "Allow invoicing based on timesheets (the sale application will be installed)" msgstr "" +"Dovolite fakturiranje na osnovi prisotnosti (instalirana bo prodajna " +"aplikacija)" #. module: hr #: view:hr.employee.category:0 @@ -745,7 +799,7 @@ msgstr "Domači naslov" #. module: hr #: field:hr.config.settings,module_hr_timesheet:0 msgid "Manage timesheets" -msgstr "" +msgstr "Upravljanje prisotnosti" #. module: hr #: model:ir.actions.act_window,name:hr.open_payroll_modules @@ -755,27 +809,27 @@ msgstr "Plače" #. module: hr #: selection:hr.employee,marital:0 msgid "Single" -msgstr "" +msgstr "Samski" #. module: hr #: field:hr.job,name:0 msgid "Job Name" -msgstr "" +msgstr "Ime delovnega mesta" #. module: hr #: view:hr.job:0 msgid "In Position" -msgstr "" +msgstr "v vlogi" #. module: hr #: help:hr.config.settings,module_hr_payroll:0 msgid "This installs the module hr_payroll." -msgstr "" +msgstr "To namesti modul hr_payroll." #. module: hr #: field:hr.config.settings,module_hr_contract:0 msgid "Record contracts per employee" -msgstr "" +msgstr "Zabeleži pogodbo za zaposlenega" #. module: hr #: view:hr.department:0 @@ -790,7 +844,7 @@ msgstr "Državljanstvo" #. module: hr #: view:hr.config.settings:0 msgid "Additional Features" -msgstr "" +msgstr "Dodatne možnosti" #. module: hr #: field:hr.employee,notes:0 @@ -800,7 +854,7 @@ msgstr "Opombe" #. module: hr #: model:ir.actions.act_window,name:hr.action2 msgid "Subordinate Hierarchy" -msgstr "" +msgstr "Podrejena hierarhija" #. module: hr #: field:hr.employee,resource_id:0 @@ -833,7 +887,7 @@ msgstr "Zaposleni" #. module: hr #: help:hr.employee,sinid:0 msgid "Social Insurance Number" -msgstr "" +msgstr "Številka socialnega zavarovanja" #. module: hr #: field:hr.department,name:0 @@ -848,18 +902,18 @@ msgstr "Poročila" #. module: hr #: field:hr.config.settings,module_hr_payroll:0 msgid "Manage payroll" -msgstr "" +msgstr "Upravljanje osebnih dohodkov" #. module: hr #: view:hr.config.settings:0 #: model:ir.actions.act_window,name:hr.action_human_resources_configuration msgid "Configure Human Resources" -msgstr "" +msgstr "Nastavitev kadrovske evidence" #. module: hr #: selection:hr.job,state:0 msgid "No Recruitment" -msgstr "" +msgstr "Ni zaposlitev" #. module: hr #: help:hr.employee,ssnid:0 @@ -869,7 +923,7 @@ msgstr "Številka zdravstvenega zavarovanja" #. module: hr #: model:process.node,note:hr.process_node_openerpuser0 msgid "Creation of a OpenERP user" -msgstr "" +msgstr "Kreiranje uporabnika OpenERP" #. module: hr #: field:hr.employee,login:0 @@ -879,7 +933,7 @@ msgstr "Prijava" #. module: hr #: field:hr.job,expected_employees:0 msgid "Total Forecasted Employees" -msgstr "" +msgstr "Skupaj plan zaposlenih" #. module: hr #: help:hr.job,state:0 @@ -887,6 +941,8 @@ msgid "" "By default 'In position', set it to 'In Recruitment' if recruitment process " "is going on for this job position." msgstr "" +"Privzeto se status 'Zasedeno' spremeni v 'V zaposlovanju', če se izvaja " +"proces zaposlovanja za to delovno mesto." #. module: hr #: model:ir.model,name:hr.model_res_users @@ -897,7 +953,7 @@ msgstr "Uporabniki" #: model:ir.actions.act_window,name:hr.action_hr_job #: model:ir.ui.menu,name:hr.menu_hr_job msgid "Job Positions" -msgstr "" +msgstr "Delovno mesto" #. module: hr #: model:ir.actions.act_window,help:hr.open_board_hr @@ -917,22 +973,37 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Nadzorna plošča Kadri je prazna.\n" +"

\n" +" Da dodate prvo poročilo v to nadzorno ploščo, pojdite v\n" +" poljuben meni, spremenite pogled v listo ali graf in " +"kliknite 'Dodaj \n" +" v nadzorno ploščo' v dodatnih filtrih.\n" +"

\n" +" Podatke lahko filtrirate in grupirate, preden dodate " +"poročilo\n" +" v nadzorno ploščo.\n" +"

\n" +"
\n" +" " #. module: hr #: view:hr.employee:0 #: field:hr.employee,coach_id:0 msgid "Coach" -msgstr "" +msgstr "Mentor" #. module: hr #: sql_constraint:hr.job:0 msgid "The name of the job position must be unique per company!" -msgstr "" +msgstr "Ime delovnega mesta mora biti enovito za podjetje!" #. module: hr #: help:hr.config.settings,module_hr_expense:0 msgid "This installs the module hr_expense." -msgstr "" +msgstr "Instalacija modula hr_expense." #. module: hr #: model:ir.model,name:hr.model_hr_config_settings diff --git a/addons/hr/i18n/sq.po b/addons/hr/i18n/sq.po index 0af0d08c680..e8fbc3305ed 100644 --- a/addons/hr/i18n/sq.po +++ b/addons/hr/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:55+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:15+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sr.po b/addons/hr/i18n/sr.po index 3a257ace72e..7344572803c 100644 --- a/addons/hr/i18n/sr.po +++ b/addons/hr/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sr@latin.po b/addons/hr/i18n/sr@latin.po index b99445904e3..1c67c8cdc4a 100644 --- a/addons/hr/i18n/sr@latin.po +++ b/addons/hr/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sv.po b/addons/hr/i18n/sv.po index 7909d7c5b64..ef8149e1b21 100644 --- a/addons/hr/i18n/sv.po +++ b/addons/hr/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/th.po b/addons/hr/i18n/th.po index 9ccb6c76a81..fdb05414ca3 100644 --- a/addons/hr/i18n/th.po +++ b/addons/hr/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/tlh.po b/addons/hr/i18n/tlh.po index 92649329d40..79737473f8a 100644 --- a/addons/hr/i18n/tlh.po +++ b/addons/hr/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/tr.po b/addons/hr/i18n/tr.po index 3240e03e03e..5b7b4cf2383 100644 --- a/addons/hr/i18n/tr.po +++ b/addons/hr/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -588,7 +588,7 @@ msgstr "Bir İzleyicidir" #. module: hr #: field:hr.config.settings,module_hr_recruitment:0 msgid "Manage the recruitment process" -msgstr "İşe alım süreci yönetimi" +msgstr "İşe alım sürecini yönetme" #. module: hr #: view:hr.employee:0 diff --git a/addons/hr/i18n/uk.po b/addons/hr/i18n/uk.po index 7807e8f2702..74c8197b951 100644 --- a/addons/hr/i18n/uk.po +++ b/addons/hr/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/vi.po b/addons/hr/i18n/vi.po index b03f30c295a..3328b078fd5 100644 --- a/addons/hr/i18n/vi.po +++ b/addons/hr/i18n/vi.po @@ -19,8 +19,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/zh_CN.po b/addons/hr/i18n/zh_CN.po index 7812a849c05..f4bfadb6a22 100644 --- a/addons/hr/i18n/zh_CN.po +++ b/addons/hr/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: constraint:hr.employee:0 @@ -1006,7 +1006,7 @@ msgstr "下属" #. module: hr #: view:hr.config.settings:0 msgid "Apply" -msgstr "接受" +msgstr "应用" #~ msgid "Group name" #~ msgstr "组名" diff --git a/addons/hr/i18n/zh_TW.po b/addons/hr/i18n/zh_TW.po index e31a3c399fd..c7c450bfada 100644 --- a/addons/hr/i18n/zh_TW.po +++ b/addons/hr/i18n/zh_TW.po @@ -7,24 +7,24 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-05-10 17:48+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2013-12-27 05:02+0000\n" +"Last-Translator: Andy Cheng \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:56+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:16+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 msgid "Openerp user" -msgstr "" +msgstr "Openerp 使用者" #. module: hr #: field:hr.config.settings,module_hr_timesheet_sheet:0 msgid "Allow timesheets validation by managers" -msgstr "" +msgstr "允許主管批准工時表" #. module: hr #: field:hr.job,requirements:0 @@ -62,7 +62,7 @@ msgstr "" #. module: hr #: view:hr.config.settings:0 msgid "Time Tracking" -msgstr "" +msgstr "追蹤時間" #. module: hr #: view:hr.employee:0 @@ -73,17 +73,17 @@ msgstr "分組根據..." #. module: hr #: model:ir.actions.act_window,name:hr.view_department_form_installer msgid "Create Your Departments" -msgstr "" +msgstr "建立您的部門" #. module: hr #: help:hr.job,no_of_employee:0 msgid "Number of employees currently occupying this job position." -msgstr "" +msgstr "從事此職位的現有員工數量。" #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 msgid "Organize employees periodic evaluation" -msgstr "" +msgstr "安排員工定期考評" #. module: hr #: view:hr.department:0 @@ -98,19 +98,19 @@ msgstr "部門" #. module: hr #: field:hr.employee,work_email:0 msgid "Work Email" -msgstr "" +msgstr "工作電子郵件" #. module: hr #: help:hr.employee,image:0 msgid "" "This field holds the image used as photo for the employee, limited to " "1024x1024px." -msgstr "" +msgstr "此欄位存放圖片作為員工照片,限制大小為 1024*1024 像素。" #. module: hr #: help:hr.config.settings,module_hr_holidays:0 msgid "This installs the module hr_holidays." -msgstr "" +msgstr "此功能將安裝 hr_holidays 模組。" #. module: hr #: view:hr.job:0 @@ -125,7 +125,7 @@ msgstr "正招聘" #. module: hr #: field:hr.job,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "未讀訊息" #. module: hr #: field:hr.department,company_id:0 @@ -143,7 +143,7 @@ msgstr "" #. module: hr #: field:res.users,employee_ids:0 msgid "Related employees" -msgstr "" +msgstr "相關員工" #. module: hr #: constraint:hr.employee.category:0 @@ -153,28 +153,28 @@ msgstr "" #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 msgid "This installs the module hr_recruitment." -msgstr "" +msgstr "此功能將安裝 hr_recruitment 模組。" #. module: hr #: view:hr.employee:0 msgid "Birth" -msgstr "" +msgstr "生日" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "員工標籤" #. module: hr #: view:hr.job:0 msgid "Launch Recruitement" -msgstr "" +msgstr "啟動招募" #. module: hr #: model:process.transition,name:hr.process_transition_employeeuser0 msgid "Link a user to an employee" -msgstr "" +msgstr "將一個使用者帳號連結到一位員工" #. module: hr #: field:hr.department,parent_id:0 @@ -184,7 +184,7 @@ msgstr "上級部門" #. module: hr #: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_config msgid "Leaves" -msgstr "" +msgstr "休假" #. module: hr #: selection:hr.employee,marital:0 @@ -194,37 +194,37 @@ msgstr "已婚" #. module: hr #: field:hr.job,message_ids:0 msgid "Messages" -msgstr "" +msgstr "訊息" #. module: hr #: view:hr.config.settings:0 msgid "Talent Management" -msgstr "" +msgstr "人才管理" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 msgid "This installs the module hr_timesheet_sheet." -msgstr "" +msgstr "此功能將安裝 hr_timesheet_sheet 模組。" #. module: hr #: view:hr.employee:0 msgid "Mobile:" -msgstr "" +msgstr "行動電話:" #. module: hr #: view:hr.employee:0 msgid "Position" -msgstr "" +msgstr "職位" #. module: hr #: help:hr.job,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "當有新訊息時通知您。" #. module: hr #: field:hr.employee,color:0 msgid "Color Index" -msgstr "" +msgstr "顏色索引" #. module: hr #: model:process.transition,note:hr.process_transition_employeeuser0 @@ -236,7 +236,7 @@ msgstr "" #. module: hr #: field:hr.employee,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "中等尺寸照片" #. module: hr #: field:hr.employee,identification_id:0 @@ -251,7 +251,7 @@ msgstr "女" #. module: hr #: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_new_config msgid "Attendance" -msgstr "" +msgstr "出勤" #. module: hr #: field:hr.employee,work_phone:0 @@ -277,7 +277,7 @@ msgstr "辦公室位置" #. module: hr #: field:hr.job,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "關注者" #. module: hr #: view:hr.employee:0 @@ -307,31 +307,31 @@ msgstr "出生日期" #. module: hr #: help:hr.job,no_of_recruitment:0 msgid "Number of new employees you expect to recruit." -msgstr "" +msgstr "您期望聘雇的新員工數量。" #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu msgid "Open HR Menu" -msgstr "" +msgstr "開啟人資選單" #. module: hr #: help:hr.job,message_summary:0 msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." -msgstr "" +msgstr "保留談話摘要(訊息數量等等)。為了放入看板檢視模式,此摘要直接存為HTML格式。" #. module: hr #: help:hr.config.settings,module_account_analytic_analysis:0 msgid "" "This installs the module account_analytic_analysis, which will install sales " "management too." -msgstr "" +msgstr "此功能將安裝 account_analytic_analysis 模組,同時也安裝業務銷售管理模組。" #. module: hr #: view:board.board:0 msgid "Human Resources Dashboard" -msgstr "" +msgstr "人力資源儀表板" #. module: hr #: view:hr.employee:0 @@ -343,7 +343,7 @@ msgstr "工作" #. module: hr #: field:hr.job,no_of_employee:0 msgid "Current Number of Employees" -msgstr "" +msgstr "現有員工數目" #. module: hr #: field:hr.department,member_ids:0 @@ -353,22 +353,22 @@ msgstr "成員" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_configuration msgid "Configuration" -msgstr "" +msgstr "組態設定" #. module: hr #: model:process.node,note:hr.process_node_employee0 msgid "Employee form and structure" -msgstr "" +msgstr "員工表單與架構" #. module: hr #: field:hr.config.settings,module_hr_expense:0 msgid "Manage employees expenses" -msgstr "" +msgstr "管理員工費用報支" #. module: hr #: view:hr.employee:0 msgid "Tel:" -msgstr "" +msgstr "電話:" #. module: hr #: selection:hr.employee,marital:0 @@ -430,7 +430,7 @@ msgstr "" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 msgid "This installs the module hr_evaluation." -msgstr "" +msgstr "此功能將安裝 hr_evaluation 模組。" #. module: hr #: constraint:hr.employee:0 @@ -440,12 +440,12 @@ msgstr "" #. module: hr #: help:hr.config.settings,module_hr_attendance:0 msgid "This installs the module hr_attendance." -msgstr "" +msgstr "此功能將安裝 hr_attendance 模組。" #. module: hr #: field:hr.employee,image_small:0 msgid "Smal-sized photo" -msgstr "" +msgstr "小尺吋照片" #. module: hr #: view:hr.employee.category:0 @@ -456,22 +456,22 @@ msgstr "員工分類" #. module: hr #: field:hr.employee,category_ids:0 msgid "Tags" -msgstr "" +msgstr "標籤" #. module: hr #: help:hr.config.settings,module_hr_contract:0 msgid "This installs the module hr_contract." -msgstr "" +msgstr "此功能將安裝 hr_contract 模組。" #. module: hr #: view:hr.employee:0 msgid "Related User" -msgstr "" +msgstr "相關使用者" #. module: hr #: view:hr.config.settings:0 msgid "or" -msgstr "" +msgstr "或" #. module: hr #: field:hr.employee.category,name:0 @@ -481,12 +481,12 @@ msgstr "分類" #. module: hr #: view:hr.job:0 msgid "Stop Recruitment" -msgstr "" +msgstr "停止招募" #. module: hr #: field:hr.config.settings,module_hr_attendance:0 msgid "Install attendances feature" -msgstr "" +msgstr "安裝出勤管理功能" #. module: hr #: help:hr.employee,bank_account_id:0 @@ -501,7 +501,7 @@ msgstr "備註" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_employee_tree msgid "Employees Structure" -msgstr "" +msgstr "員工架構" #. module: hr #: view:hr.employee:0 @@ -511,7 +511,7 @@ msgstr "聯絡資料" #. module: hr #: field:hr.config.settings,module_hr_holidays:0 msgid "Manage holidays, leaves and allocation requests" -msgstr "" +msgstr "管理假日、請假及排假。" #. module: hr #: field:hr.department,child_ids:0 @@ -528,7 +528,7 @@ msgstr "狀況" #. module: hr #: field:hr.employee,otherid:0 msgid "Other Id" -msgstr "" +msgstr "其他ID" #. module: hr #: model:process.process,name:hr.process_process_employeecontractprocess0 @@ -538,12 +538,12 @@ msgstr "僱傭合約" #. module: hr #: view:hr.config.settings:0 msgid "Contracts" -msgstr "" +msgstr "合約" #. module: hr #: help:hr.job,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "訊息及聯絡紀錄" #. module: hr #: field:hr.employee,ssnid:0 @@ -553,12 +553,12 @@ msgstr "社會保障號碼(美國)" #. module: hr #: field:hr.job,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "為關注者" #. module: hr #: field:hr.config.settings,module_hr_recruitment:0 msgid "Manage the recruitment process" -msgstr "" +msgstr "管理招募流程" #. module: hr #: view:hr.employee:0 @@ -568,12 +568,12 @@ msgstr "活躍" #. module: hr #: view:hr.config.settings:0 msgid "Human Resources Management" -msgstr "" +msgstr "人力資源管理" #. module: hr #: view:hr.config.settings:0 msgid "Install your country's payroll" -msgstr "" +msgstr "安裝您國家的薪資模組" #. module: hr #: field:hr.employee,bank_account_id:0 @@ -588,7 +588,7 @@ msgstr "公司" #. module: hr #: field:hr.job,message_summary:0 msgid "Summary" -msgstr "" +msgstr "摘要" #. module: hr #: model:process.transition,note:hr.process_transition_contactofemployee0 @@ -615,12 +615,12 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "HR Settings" -msgstr "" +msgstr "人資設定" #. module: hr #: view:hr.employee:0 msgid "Citizenship & Other Info" -msgstr "" +msgstr "公民與其他資訊" #. module: hr #: constraint:hr.department:0 @@ -635,7 +635,7 @@ msgstr "辦公地址" #. module: hr #: view:hr.employee:0 msgid "Public Information" -msgstr "" +msgstr "公開資訊" #. module: hr #: field:hr.employee,marital:0 diff --git a/addons/hr/res_config.py b/addons/hr/res_config.py index 147c4e4d5b9..94c029262ff 100644 --- a/addons/hr/res_config.py +++ b/addons/hr/res_config.py @@ -42,6 +42,8 @@ class hr_config_settings(osv.osv_memory): help ="""This installs the module hr_contract."""), 'module_hr_evaluation': fields.boolean('Organize employees periodic evaluation', help ="""This installs the module hr_evaluation."""), + 'module_hr_gamification': fields.boolean('Drive engagement with challenges and badges', + help ="""This installs the module hr_gamification."""), 'module_account_analytic_analysis': fields.boolean('Allow invoicing based on timesheets (the sale application will be installed)', help ="""This installs the module account_analytic_analysis, which will install sales management too."""), 'module_hr_payroll': fields.boolean('Manage payroll', diff --git a/addons/hr/res_config_view.xml b/addons/hr/res_config_view.xml index 632ceb56918..3dc1795139c 100644 --- a/addons/hr/res_config_view.xml +++ b/addons/hr/res_config_view.xml @@ -56,6 +56,10 @@
diff --git a/addons/hr/static/img/employee-image.png b/addons/hr/static/img/employee-image.png new file mode 100644 index 00000000000..db35d7611d9 Binary files /dev/null and b/addons/hr/static/img/employee-image.png differ diff --git a/addons/hr/static/img/employee_al-image.jpg b/addons/hr/static/img/employee_al-image.jpg new file mode 100644 index 00000000000..0f0c1b97640 Binary files /dev/null and b/addons/hr/static/img/employee_al-image.jpg differ diff --git a/addons/hr/static/img/employee_chs-image.jpg b/addons/hr/static/img/employee_chs-image.jpg new file mode 100644 index 00000000000..1fb28d5382d Binary files /dev/null and b/addons/hr/static/img/employee_chs-image.jpg differ diff --git a/addons/hr/static/img/employee_djj-image.png b/addons/hr/static/img/employee_djj-image.png new file mode 100644 index 00000000000..a95e017738c Binary files /dev/null and b/addons/hr/static/img/employee_djj-image.png differ diff --git a/addons/hr/static/img/employee_dzc-image.jpg b/addons/hr/static/img/employee_dzc-image.jpg new file mode 100644 index 00000000000..6293cd42e54 Binary files /dev/null and b/addons/hr/static/img/employee_dzc-image.jpg differ diff --git a/addons/hr/static/img/employee_fme-image.jpg b/addons/hr/static/img/employee_fme-image.jpg new file mode 100644 index 00000000000..434c44465e8 Binary files /dev/null and b/addons/hr/static/img/employee_fme-image.jpg differ diff --git a/addons/hr/static/img/employee_fp-image.jpg b/addons/hr/static/img/employee_fp-image.jpg new file mode 100644 index 00000000000..cf27b22e041 Binary files /dev/null and b/addons/hr/static/img/employee_fp-image.jpg differ diff --git a/addons/hr/static/img/employee_fpi-image.jpg b/addons/hr/static/img/employee_fpi-image.jpg new file mode 100644 index 00000000000..79a6478b30d Binary files /dev/null and b/addons/hr/static/img/employee_fpi-image.jpg differ diff --git a/addons/hr/static/img/employee_han-image.png b/addons/hr/static/img/employee_han-image.png new file mode 100644 index 00000000000..42046dd4bb4 Binary files /dev/null and b/addons/hr/static/img/employee_han-image.png differ diff --git a/addons/hr/static/img/employee_hne-image.png b/addons/hr/static/img/employee_hne-image.png new file mode 100644 index 00000000000..db074e864c6 Binary files /dev/null and b/addons/hr/static/img/employee_hne-image.png differ diff --git a/addons/hr/static/img/employee_jep-image.jpg b/addons/hr/static/img/employee_jep-image.jpg new file mode 100644 index 00000000000..c9021ca4dc8 Binary files /dev/null and b/addons/hr/static/img/employee_jep-image.jpg differ diff --git a/addons/hr/static/img/employee_jgo-image.jpg b/addons/hr/static/img/employee_jgo-image.jpg new file mode 100644 index 00000000000..fa764468352 Binary files /dev/null and b/addons/hr/static/img/employee_jgo-image.jpg differ diff --git a/addons/hr/static/img/employee_jod-image.png b/addons/hr/static/img/employee_jod-image.png new file mode 100644 index 00000000000..2c66f841cd4 Binary files /dev/null and b/addons/hr/static/img/employee_jod-image.png differ diff --git a/addons/hr/static/img/employee_jog-image.jpg b/addons/hr/static/img/employee_jog-image.jpg new file mode 100644 index 00000000000..ba3e791e158 Binary files /dev/null and b/addons/hr/static/img/employee_jog-image.jpg differ diff --git a/addons/hr/static/img/employee_jth-image.png b/addons/hr/static/img/employee_jth-image.png new file mode 100644 index 00000000000..e1796838d4c Binary files /dev/null and b/addons/hr/static/img/employee_jth-image.png differ diff --git a/addons/hr/static/img/employee_jve-image.jpg b/addons/hr/static/img/employee_jve-image.jpg new file mode 100644 index 00000000000..e6da479fbfc Binary files /dev/null and b/addons/hr/static/img/employee_jve-image.jpg differ diff --git a/addons/hr/static/img/employee_lur-image.png b/addons/hr/static/img/employee_lur-image.png new file mode 100644 index 00000000000..fce634d8045 Binary files /dev/null and b/addons/hr/static/img/employee_lur-image.png differ diff --git a/addons/hr/static/img/employee_mit-image.png b/addons/hr/static/img/employee_mit-image.png new file mode 100644 index 00000000000..dbbf99e2bda Binary files /dev/null and b/addons/hr/static/img/employee_mit-image.png differ diff --git a/addons/hr/static/img/employee_ngh-image.jpg b/addons/hr/static/img/employee_ngh-image.jpg new file mode 100644 index 00000000000..93c7472ec09 Binary files /dev/null and b/addons/hr/static/img/employee_ngh-image.jpg differ diff --git a/addons/hr/static/img/employee_niv-image.jpg b/addons/hr/static/img/employee_niv-image.jpg new file mode 100644 index 00000000000..3c38c0ec2f2 Binary files /dev/null and b/addons/hr/static/img/employee_niv-image.jpg differ diff --git a/addons/hr/static/img/employee_qdp-image.png b/addons/hr/static/img/employee_qdp-image.png new file mode 100644 index 00000000000..87caf3143fd Binary files /dev/null and b/addons/hr/static/img/employee_qdp-image.png differ diff --git a/addons/hr/static/img/employee_stw-image.jpg b/addons/hr/static/img/employee_stw-image.jpg new file mode 100644 index 00000000000..473d139b83d Binary files /dev/null and b/addons/hr/static/img/employee_stw-image.jpg differ diff --git a/addons/hr/static/img/employee_vad-image.jpg b/addons/hr/static/img/employee_vad-image.jpg new file mode 100644 index 00000000000..df13e35148f Binary files /dev/null and b/addons/hr/static/img/employee_vad-image.jpg differ diff --git a/addons/hr/static/src/css/hr.css b/addons/hr/static/src/css/hr.css index 951ec4d02e3..be21ca7e7a6 100644 --- a/addons/hr/static/src/css/hr.css +++ b/addons/hr/static/src/css/hr.css @@ -72,4 +72,4 @@ .openerp .oe_employee_vignette .oe_followers { width: auto; float: none; -} +} \ No newline at end of file diff --git a/addons/hr_applicant_document/__init__.py b/addons/hr_applicant_document/__init__.py new file mode 100644 index 00000000000..76e07d0ac4f --- /dev/null +++ b/addons/hr_applicant_document/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2010-today OpenERP SA () +# +# 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 models diff --git a/addons/hr_applicant_document/__openerp__.py b/addons/hr_applicant_document/__openerp__.py new file mode 100644 index 00000000000..bd8224f1755 --- /dev/null +++ b/addons/hr_applicant_document/__openerp__.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- + +{ + 'name': 'Applicant Resumes and Letters', + 'version': '1.0', + 'category': 'Human Resources', + 'sequence': 25, + 'summary': 'Search job applications by Index content.', + 'description': """This module allows you to search job applications by content + of resumes and letters.""", + 'author': 'OpenERP SA', + 'website': 'http://www.openerp.com', + 'depends': [ + 'hr_recruitment', + 'document' + ], + 'data': [ + 'views/hr_applicant.xml' + ], + 'demo': [ + 'demo/hr_applicant.xml' + ], + 'installable': True, + 'auto_install': True, + 'application': True, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/hr_applicant_document/demo/hr_applicant.xml b/addons/hr_applicant_document/demo/hr_applicant.xml new file mode 100644 index 00000000000..46bac2250a0 --- /dev/null +++ b/addons/hr_applicant_document/demo/hr_applicant.xml @@ -0,0 +1,257 @@ + + + + + + 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 +aGKgRB9MdCaipUQDpDWUSIGEgHLkNhFgQphCMAiAxxJkIrgDOxq34DH/d37Q/7YA/+ZPJPpvgO3r +dQplbmRzdHJlYW0KZW5kb2JqCgo2IDAgb2JqCjEwNDEzCmVuZG9iagoKNyAwIG9iago8PC9UeXBl +L0ZvbnREZXNjcmlwdG9yL0ZvbnROYW1lL0JBQUFBQStEZWphVnVTYW5zTW9ubwovRmxhZ3MgNQov +Rm9udEJCb3hbLTU1NyAtMzc0IDcxNiAxMDQxXS9JdGFsaWNBbmdsZSAwCi9Bc2NlbnQgOTI4Ci9E +ZXNjZW50IC0yMzUKL0NhcEhlaWdodCAxMDQxCi9TdGVtViA4MAovRm9udEZpbGUyIDUgMCBSCj4+ +CmVuZG9iagoKOCAwIG9iago8PC9MZW5ndGggNDE2L0ZpbHRlci9GbGF0ZURlY29kZT4+CnN0cmVh +bQp4nF2TzW7iMBSF93kKLzuLKvEPCZVQJAaKxKIz1dA+QEgME2lwIhMWvH197klbaRagz/G9l8/m +JN/st/vQT/lrHNqDn9SpD1301+EWW6+O/tyHTBvV9e00r+S7vTRjlqfew/06+cs+nIbVKsv/pL3r +FO/qYd0NR/8jy3/Hzsc+nNXD++aQ1ofbOP7zFx8mVWR1rTp/SnNemvFXc/G5dD3uu7TdT/fH1PJd +8HYfvTKy1lRph85fx6b1sQlnn62Kolar3a7OfOj+23OWLcdT+7eJqVSn0qJYFHViI1wZsBUud2BH +LsEL8hO4JG/AFXkBXgq7Z/ATn2vwmrwF/xQ28rsbYbsGb9krc55ZL3N2dMMcXZBRo+nv0Ktnfwum +v5P62d+B6W/lOf0tzqtnf2H6V1JPf4Mzavo7mU//cgmmf4Wz6NkfZ9T0txWY/hYzDf0t6s3sj7s1 +9C8x39B/AU9Dfwc3Q38nvfQ3uB9Df4v/xdDfykz6W5lJf4t7M/S3SwnJnAbEBXn+jKFqbzGmCEro +JXtIXR/813sxDiO65PMBZrbPkAplbmRzdHJlYW0KZW5kb2JqCgo5IDAgb2JqCjw8L1R5cGUvRm9u +dC9TdWJ0eXBlL1RydWVUeXBlL0Jhc2VGb250L0JBQUFBQStEZWphVnVTYW5zTW9ubwovRmlyc3RD +aGFyIDAKL0xhc3RDaGFyIDQzCi9XaWR0aHNbNjAyIDYwMiA2MDIgNjAyIDYwMiA2MDIgNjAyIDYw +MiA2MDIgNjAyIDYwMiA2MDIgNjAyIDYwMiA2MDIgNjAyCjYwMiA2MDIgNjAyIDYwMiA2MDIgNjAy +IDYwMiA2MDIgNjAyIDYwMiA2MDIgNjAyIDYwMiA2MDIgNjAyIDYwMgo2MDIgNjAyIDYwMiA2MDIg +NjAyIDYwMiA2MDIgNjAyIDYwMiA2MDIgNjAyIDYwMiBdCi9Gb250RGVzY3JpcHRvciA3IDAgUgov +VG9Vbmljb2RlIDggMCBSCj4+CmVuZG9iagoKMTAgMCBvYmoKPDwvRjEgOSAwIFIKPj4KZW5kb2Jq +CgoxMSAwIG9iago8PC9Gb250IDEwIDAgUgovUHJvY1NldFsvUERGL1RleHRdCj4+CmVuZG9iagoK +MSAwIG9iago8PC9UeXBlL1BhZ2UvUGFyZW50IDQgMCBSL1Jlc291cmNlcyAxMSAwIFIvTWVkaWFC +b3hbMCAwIDU5NSA4NDJdL0dyb3VwPDwvUy9UcmFuc3BhcmVuY3kvQ1MvRGV2aWNlUkdCL0kgdHJ1 +ZT4+L0NvbnRlbnRzIDIgMCBSPj4KZW5kb2JqCgo0IDAgb2JqCjw8L1R5cGUvUGFnZXMKL1Jlc291 +cmNlcyAxMSAwIFIKL01lZGlhQm94WyAwIDAgNTk1IDg0MiBdCi9LaWRzWyAxIDAgUiBdCi9Db3Vu +dCAxPj4KZW5kb2JqCgoxMiAwIG9iago8PC9UeXBlL0NhdGFsb2cvUGFnZXMgNCAwIFIKL09wZW5B +Y3Rpb25bMSAwIFIgL1hZWiBudWxsIG51bGwgMF0KL0xhbmcoZW4tSU4pCj4+CmVuZG9iagoKMTMg +MCBvYmoKPDwvQ3JlYXRvcjxGRUZGMDA1NzAwNzIwMDY5MDA3NDAwNjUwMDcyPgovUHJvZHVjZXI8 +RkVGRjAwNEMwMDY5MDA2MjAwNzIwMDY1MDA0RjAwNjYwMDY2MDA2OTAwNjMwMDY1MDAyMDAwMzMw +MDJFMDAzNj4KL0NyZWF0aW9uRGF0ZShEOjIwMTMwOTE3MTA1MjE5KzA1JzMwJyk+PgplbmRvYmoK +CnhyZWYKMCAxNAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMTIxNDEgMDAwMDAgbiAKMDAwMDAw +MDAxOSAwMDAwMCBuIAowMDAwMDAwNTAzIDAwMDAwIG4gCjAwMDAwMTIyODQgMDAwMDAgbiAKMDAw +MDAwMDUyMyAwMDAwMCBuIAowMDAwMDExMDIxIDAwMDAwIG4gCjAwMDAwMTEwNDMgMDAwMDAgbiAK +MDAwMDAxMTIzOCAwMDAwMCBuIAowMDAwMDExNzIzIDAwMDAwIG4gCjAwMDAwMTIwNTQgMDAwMDAg +biAKMDAwMDAxMjA4NiAwMDAwMCBuIAowMDAwMDEyMzgzIDAwMDAwIG4gCjAwMDAwMTI0ODAgMDAw +MDAgbiAKdHJhaWxlcgo8PC9TaXplIDE0L1Jvb3QgMTIgMCBSCi9JbmZvIDEzIDAgUgovSUQgWyA8 +MUQ3RURGOENDMTExODZGOUQwNERCQTNCNTIxRUIwRUQ+CjwxRDdFREY4Q0MxMTE4NkY5RDA0REJB +M0I1MjFFQjBFRD4gXQovRG9jQ2hlY2tzdW0gL0FGQTcyQ0IwMzY4QzE1RjAyN0YxODgxNDAxQkM3 +QkQ0Cj4+CnN0YXJ0eHJlZgoxMjY1NQolJUVPRgo= + Jones_CV.pdf + Jones_CV.pdf + + hr.applicant + + + UFJPRklMRSANCg0KTmFtZSAgICAgICAgICAgIDogU2hhbmUgV2lsbGlhbXMgIA0KQWRkcmVzcyAgICAgICAgIDogODEgQWNhZGVteSBBdmVudWUsIA0KICAgICAgICAgICAgICAgICAgICAgOkJpcm1pbmdoYW1CNDYgM0FHLCANCiAgICAgICAgICAgICAgICAgICAgIDpVbml0ZWQgS2luZ2RvbSwgDQpRdWFsaWZpY2F0aW9uICAgOiBNQ0EgDQpFbWFpbCAgICAgICAgICAgICA6IFNoYW5lV2lsbGlhbXNAaW5mby5jb20gDQpNb2JpbGUgICAgICAgICAgIDogOTk2MzIxNDU4NyA= + Williams_CV.doc + Williams_CV.doc + + hr.applicant + + + UHJvZmlsZQ0KDQpOYW1lICAgICAgICAgIDpKb3NlDQpBZGRyZXNzICAgICAgIDo5MywgUHJlc3MgQXZlbnVlDQogICAgICAgICAgICAgICAgICAgOkxlIEJvdXJnZXQgZHUgTGFjLCA3MzM3NywNCiAgICAgICAgICAgICAgICAgICA6IEZyYW5jZSANClF1YWxpZmljYXRpb24gOk1DQQ0KRW1haWwgICAgICAgICAgIDpKb3NlQGdtYWlsLmNvbQ0KTW9iaWxlICAgICAgICAgIDo5OTY4NTEzNTg3 + Jose_CV.txt + Jose_CV.txt + + hr.applicant + + + diff --git a/addons/hr_applicant_document/models/__init__.py b/addons/hr_applicant_document/models/__init__.py new file mode 100644 index 00000000000..0f3aa35f140 --- /dev/null +++ b/addons/hr_applicant_document/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +import hr_applicant diff --git a/addons/hr_applicant_document/models/hr_applicant.py b/addons/hr_applicant_document/models/hr_applicant.py new file mode 100644 index 00000000000..036ea6c200e --- /dev/null +++ b/addons/hr_applicant_document/models/hr_applicant.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- + +from openerp.osv import fields, osv + + +class hr_applicant(osv.Model): + _inherit = 'hr.applicant' + + def _get_index_content(self, cr, uid, ids, fields, args, context=None): + res = dict.fromkeys(ids, '') + Attachment = self.pool.get('ir.attachment') + attachment_ids = Attachment.search(cr, uid, [('res_model', '=', 'hr.applicant'), ('res_id', 'in', ids)], context=context) + for attachment in Attachment.browse(cr, uid, attachment_ids, context=context): + res[attachment.res_id] += attachment.index_content or '' + return res + + def _content_search(self, cr, user, obj, name, args, context=None): + record_ids = set() + Attachment = self.pool.get('ir.attachment') + args = ['&'] + args + [('res_model', '=', 'hr.applicant')] + att_ids = Attachment.search(cr, user, args, context=context) + record_ids = set(att.res_id for att in Attachment.browse(cr, user, att_ids, context=context)) + return [('id', 'in', list(record_ids))] + + _columns = { + 'index_content': fields.function( + _get_index_content, fnct_search=_content_search, + string='Index Content', type="text"), + } diff --git a/addons/hr_applicant_document/views/hr_applicant.xml b/addons/hr_applicant_document/views/hr_applicant.xml new file mode 100644 index 00000000000..706a1b4c754 --- /dev/null +++ b/addons/hr_applicant_document/views/hr_applicant.xml @@ -0,0 +1,37 @@ + + + + + + Jobs - Recruitment Search + hr.applicant + + + + + + + + + + Resumes and Letters + ir.attachment + tree,form + + [('res_model','=','hr.applicant')] + +

+ Search through resumes and motivation letters. +

+
+
+ + + +
+
+ + diff --git a/addons/hr_attendance/i18n/ar.po b/addons/hr_attendance/i18n/ar.po index 7f5e42437f1..2699520c77e 100644 --- a/addons/hr_attendance/i18n/ar.po +++ b/addons/hr_attendance/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/bg.po b/addons/hr_attendance/i18n/bg.po index 119c458d10f..138a2d1ab1f 100644 --- a/addons/hr_attendance/i18n/bg.po +++ b/addons/hr_attendance/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/bs.po b/addons/hr_attendance/i18n/bs.po index 1d5f24f2fdd..866946f9571 100644 --- a/addons/hr_attendance/i18n/bs.po +++ b/addons/hr_attendance/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ca.po b/addons/hr_attendance/i18n/ca.po index 449d5dcb7e0..476cdc3084b 100644 --- a/addons/hr_attendance/i18n/ca.po +++ b/addons/hr_attendance/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/cs.po b/addons/hr_attendance/i18n/cs.po index 1c4b84694a3..e96aaf997c6 100644 --- a/addons/hr_attendance/i18n/cs.po +++ b/addons/hr_attendance/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Language: czech\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/da.po b/addons/hr_attendance/i18n/da.po index 8fd0f073b71..8face1b2634 100644 --- a/addons/hr_attendance/i18n/da.po +++ b/addons/hr_attendance/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/de.po b/addons/hr_attendance/i18n/de.po index 4d5160564e8..a3225aba0a0 100644 --- a/addons/hr_attendance/i18n/de.po +++ b/addons/hr_attendance/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/el.po b/addons/hr_attendance/i18n/el.po index 785b0504e2b..64efad782d9 100644 --- a/addons/hr_attendance/i18n/el.po +++ b/addons/hr_attendance/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/hr_attendance/i18n/en_GB.po b/addons/hr_attendance/i18n/en_GB.po index 5286dce4cfa..f7e0c47298b 100644 --- a/addons/hr_attendance/i18n/en_GB.po +++ b/addons/hr_attendance/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es.po b/addons/hr_attendance/i18n/es.po index fc2f5ce1504..830b0a507c5 100644 --- a/addons/hr_attendance/i18n/es.po +++ b/addons/hr_attendance/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_AR.po b/addons/hr_attendance/i18n/es_AR.po index 173cbfd1ba4..ea7cea37286 100644 --- a/addons/hr_attendance/i18n/es_AR.po +++ b/addons/hr_attendance/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_CL.po b/addons/hr_attendance/i18n/es_CL.po index 0db3ba6e907..c18126efeca 100644 --- a/addons/hr_attendance/i18n/es_CL.po +++ b/addons/hr_attendance/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_CR.po b/addons/hr_attendance/i18n/es_CR.po index f833172dcf5..4bb39f6c156 100644 --- a/addons/hr_attendance/i18n/es_CR.po +++ b/addons/hr_attendance/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/es_EC.po b/addons/hr_attendance/i18n/es_EC.po index 2dc243a9d9a..6b27cc422c1 100644 --- a/addons/hr_attendance/i18n/es_EC.po +++ b/addons/hr_attendance/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_PY.po b/addons/hr_attendance/i18n/es_PY.po index caf2f801706..a8f4e210a14 100644 --- a/addons/hr_attendance/i18n/es_PY.po +++ b/addons/hr_attendance/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/et.po b/addons/hr_attendance/i18n/et.po index 5ba87014744..741bd50aedf 100644 --- a/addons/hr_attendance/i18n/et.po +++ b/addons/hr_attendance/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/fi.po b/addons/hr_attendance/i18n/fi.po index 5ce926f152a..595ab638426 100644 --- a/addons/hr_attendance/i18n/fi.po +++ b/addons/hr_attendance/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/fr.po b/addons/hr_attendance/i18n/fr.po index be61db4b32d..52464608e4c 100644 --- a/addons/hr_attendance/i18n/fr.po +++ b/addons/hr_attendance/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #, python-format #~ msgid "The Sign-in date must be in the past" diff --git a/addons/hr_attendance/i18n/gl.po b/addons/hr_attendance/i18n/gl.po index 0291681fc17..414413e0671 100644 --- a/addons/hr_attendance/i18n/gl.po +++ b/addons/hr_attendance/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/he.po b/addons/hr_attendance/i18n/he.po index cde79ff79f0..3001e52da02 100644 --- a/addons/hr_attendance/i18n/he.po +++ b/addons/hr_attendance/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month @@ -37,7 +37,7 @@ msgstr "" #: field:hr.employee,state:0 #: model:ir.model,name:hr_attendance.model_hr_attendance msgid "Attendance" -msgstr "" +msgstr "נוכחות" #. module: hr_attendance #. openerp-web @@ -160,7 +160,7 @@ msgstr "" #. module: hr_attendance #: selection:hr.attendance.month,month:0 msgid "March" -msgstr "" +msgstr "מרץ" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -171,7 +171,7 @@ msgstr "" #: code:addons/hr_attendance/hr_attendance.py:161 #, python-format msgid "Warning" -msgstr "" +msgstr "אזהרה" #. module: hr_attendance #: help:hr.config.settings,group_hr_attendance:0 @@ -212,12 +212,12 @@ msgstr "" #. module: hr_attendance #: field:hr.action.reason,name:0 msgid "Reason" -msgstr "" +msgstr "סיבה" #. module: hr_attendance #: view:hr.attendance.error:0 msgid "Print Attendance Report Error" -msgstr "" +msgstr "שגיאה בהדפסת דו\"ח הנוכחות" #. module: hr_attendance #: model:ir.actions.act_window,help:hr_attendance.open_view_attendance @@ -230,12 +230,12 @@ msgstr "" #. module: hr_attendance #: view:hr.attendance:0 msgid "Today" -msgstr "" +msgstr "היום" #. module: hr_attendance #: report:report.hr.timesheet.attendance.error:0 msgid "Date Signed" -msgstr "" +msgstr "חתום בתאריך" #. module: hr_attendance #: field:hr.attendance,name:0 @@ -262,12 +262,12 @@ msgstr "" #: view:hr.attendance:0 #: field:hr.attendance,day:0 msgid "Day" -msgstr "" +msgstr "יום" #. module: hr_attendance #: selection:hr.employee,state:0 msgid "Present" -msgstr "" +msgstr "נוכח" #. module: hr_attendance #: selection:hr.employee,state:0 @@ -283,7 +283,7 @@ msgstr "" #: field:hr.attendance,action_desc:0 #: model:ir.model,name:hr_attendance.model_hr_action_reason msgid "Action Reason" -msgstr "" +msgstr "סיבה לפעולה" #. module: hr_attendance #: field:hr.attendance.month,year:0 @@ -318,7 +318,7 @@ msgstr "" #. module: hr_attendance #: model:ir.actions.act_window,name:hr_attendance.action_hr_attendance_month msgid "Attendances By Month" -msgstr "" +msgstr "נוכחות לפי חודשים" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -355,7 +355,7 @@ msgstr "" #. module: hr_attendance #: model:ir.ui.menu,name:hr_attendance.menu_hr_time_tracking msgid "Time Tracking" -msgstr "" +msgstr "מעקב זמן" #. module: hr_attendance #: model:ir.actions.act_window,name:hr_attendance.open_view_attendance_reason @@ -382,7 +382,7 @@ msgstr "" #: field:hr.attendance.error,end_date:0 #: field:hr.attendance.week,end_date:0 msgid "Ending Date" -msgstr "" +msgstr "תאריך סיום" #. module: hr_attendance #: selection:hr.attendance.month,month:0 diff --git a/addons/hr_attendance/i18n/hr.po b/addons/hr_attendance/i18n/hr.po index 0cd0f8bf3a7..fdb33508564 100644 --- a/addons/hr_attendance/i18n/hr.po +++ b/addons/hr_attendance/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month @@ -24,7 +24,7 @@ msgstr "Ispiši izvještaj mjesečne prisutnosti" #. module: hr_attendance #: view:hr.attendance:0 msgid "Hr Attendance Search" -msgstr "" +msgstr "Predraživanje prisutnosti" #. module: hr_attendance #: field:hr.employee,last_sign:0 @@ -49,6 +49,7 @@ msgstr "Zadnji zapis prijave: %s,
%s.
Klikni za odjavu." #: constraint:hr.attendance:0 msgid "Error ! Sign in (resp. Sign out) must follow Sign out (resp. Sign in)" msgstr "" +"Pogreška! Prijava (odnosno odjava) mora slijediti odjavu (odnosno prijavu)." #. module: hr_attendance #: help:hr.action.reason,name:0 @@ -66,7 +67,7 @@ msgstr "" #. module: hr_attendance #: view:hr.attendance.month:0 msgid "Print Attendance Report Monthly" -msgstr "" +msgstr "Ispiši mjesečni izvještaj prisutnosti" #. module: hr_attendance #: code:addons/hr_attendance/report/timesheet.py:120 @@ -97,7 +98,7 @@ msgstr "Listopad" #. module: hr_attendance #: field:hr.employee,attendance_access:0 msgid "Attendance Access" -msgstr "" +msgstr "Pristup prisutnosti" #. module: hr_attendance #: code:addons/hr_attendance/hr_attendance.py:154 @@ -177,7 +178,7 @@ msgstr "Upozorenje" #. module: hr_attendance #: help:hr.config.settings,group_hr_attendance:0 msgid "Allocates attendance group to all users." -msgstr "" +msgstr "Dodjeljuje grupu prisutnost svim korisnicima" #. module: hr_attendance #: view:hr.attendance:0 @@ -375,7 +376,7 @@ msgstr "Studeni" #. module: hr_attendance #: view:hr.attendance.error:0 msgid "Bellow this delay, the error is considered to be voluntary" -msgstr "" +msgstr "Iza ovog kašnjenja, greška se smatra voljna" #. module: hr_attendance #: field:hr.attendance.error,max_delay:0 @@ -406,7 +407,7 @@ msgstr "Ispiši tjedni izvještaj prisutnosti" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_attendance #. openerp-web @@ -457,6 +458,7 @@ msgstr "Operacija" msgid "" "(*) A negative delay means that the employee worked more than encoded." msgstr "" +"(*) Negativni kašnjenje znači da je djelatnik radio više od upisanog." #. module: hr_attendance #: view:hr.attendance.error:0 diff --git a/addons/hr_attendance/i18n/hu.po b/addons/hr_attendance/i18n/hu.po index d717d3486d3..ba0f25bafd3 100644 --- a/addons/hr_attendance/i18n/hu.po +++ b/addons/hr_attendance/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/id.po b/addons/hr_attendance/i18n/id.po index 6a2edb8e237..927943d8e13 100644 --- a/addons/hr_attendance/i18n/id.po +++ b/addons/hr_attendance/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/it.po b/addons/hr_attendance/i18n/it.po index ac73460168e..1f03372e512 100644 --- a/addons/hr_attendance/i18n/it.po +++ b/addons/hr_attendance/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 14:05+0000\n" -"Last-Translator: Davide Corio \n" +"Last-Translator: Davide Corio @ LS \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ja.po b/addons/hr_attendance/i18n/ja.po index fa58a2753ac..e281f282292 100644 --- a/addons/hr_attendance/i18n/ja.po +++ b/addons/hr_attendance/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ko.po b/addons/hr_attendance/i18n/ko.po index 08d789b6508..2ed331b2f4e 100644 --- a/addons/hr_attendance/i18n/ko.po +++ b/addons/hr_attendance/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/lt.po b/addons/hr_attendance/i18n/lt.po index c0495389894..a86d4e3fa82 100644 --- a/addons/hr_attendance/i18n/lt.po +++ b/addons/hr_attendance/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/lv.po b/addons/hr_attendance/i18n/lv.po index 484386c066d..f58583c94fd 100644 --- a/addons/hr_attendance/i18n/lv.po +++ b/addons/hr_attendance/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/mk.po b/addons/hr_attendance/i18n/mk.po index 8dbc1c45f3d..fb1c845599a 100644 --- a/addons/hr_attendance/i18n/mk.po +++ b/addons/hr_attendance/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/mn.po b/addons/hr_attendance/i18n/mn.po index a02393ec425..5f8921e44c9 100644 --- a/addons/hr_attendance/i18n/mn.po +++ b/addons/hr_attendance/i18n/mn.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nb.po b/addons/hr_attendance/i18n/nb.po index b11ad645b65..d0b70d34630 100644 --- a/addons/hr_attendance/i18n/nb.po +++ b/addons/hr_attendance/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nl.po b/addons/hr_attendance/i18n/nl.po index 3edfa6e4806..1805bedbee8 100644 --- a/addons/hr_attendance/i18n/nl.po +++ b/addons/hr_attendance/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nl_BE.po b/addons/hr_attendance/i18n/nl_BE.po index 5649d816785..14badb799b8 100644 --- a/addons/hr_attendance/i18n/nl_BE.po +++ b/addons/hr_attendance/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pl.po b/addons/hr_attendance/i18n/pl.po index 78f8f88428d..fdcac725d70 100644 --- a/addons/hr_attendance/i18n/pl.po +++ b/addons/hr_attendance/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pt.po b/addons/hr_attendance/i18n/pt.po index 5319053746d..2fa50353da9 100644 --- a/addons/hr_attendance/i18n/pt.po +++ b/addons/hr_attendance/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pt_BR.po b/addons/hr_attendance/i18n/pt_BR.po index ec23f6bb500..8e2821bf646 100644 --- a/addons/hr_attendance/i18n/pt_BR.po +++ b/addons/hr_attendance/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-24 14:23+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ro.po b/addons/hr_attendance/i18n/ro.po index fab40a8961e..ec7d0268f4c 100644 --- a/addons/hr_attendance/i18n/ro.po +++ b/addons/hr_attendance/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ru.po b/addons/hr_attendance/i18n/ru.po index 3ce8b5ce4e3..66d147a6f38 100644 --- a/addons/hr_attendance/i18n/ru.po +++ b/addons/hr_attendance/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sl.po b/addons/hr_attendance/i18n/sl.po index cc7295bf7b7..e437d1a7fb7 100644 --- a/addons/hr_attendance/i18n/sl.po +++ b/addons/hr_attendance/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sq.po b/addons/hr_attendance/i18n/sq.po index 28def47c601..391b4a5ef20 100644 --- a/addons/hr_attendance/i18n/sq.po +++ b/addons/hr_attendance/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:18+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sr.po b/addons/hr_attendance/i18n/sr.po index 79622f813cd..8ab3924ee8d 100644 --- a/addons/hr_attendance/i18n/sr.po +++ b/addons/hr_attendance/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:59+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sr@latin.po b/addons/hr_attendance/i18n/sr@latin.po index 4abe0545f7a..a855c5301cc 100644 --- a/addons/hr_attendance/i18n/sr@latin.po +++ b/addons/hr_attendance/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sv.po b/addons/hr_attendance/i18n/sv.po index 4d41a98860b..df94b7c255c 100644 --- a/addons/hr_attendance/i18n/sv.po +++ b/addons/hr_attendance/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/th.po b/addons/hr_attendance/i18n/th.po index c7aad7c83bd..c18ef58f782 100644 --- a/addons/hr_attendance/i18n/th.po +++ b/addons/hr_attendance/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/tlh.po b/addons/hr_attendance/i18n/tlh.po index be51200470d..5110d6def3a 100644 --- a/addons/hr_attendance/i18n/tlh.po +++ b/addons/hr_attendance/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/tr.po b/addons/hr_attendance/i18n/tr.po index 6e9fdea4048..b9d26fb672d 100644 --- a/addons/hr_attendance/i18n/tr.po +++ b/addons/hr_attendance/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/uk.po b/addons/hr_attendance/i18n/uk.po index afd2735c73f..603fb494edc 100644 --- a/addons/hr_attendance/i18n/uk.po +++ b/addons/hr_attendance/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/vi.po b/addons/hr_attendance/i18n/vi.po index d7f3a3ebe23..14a80e3ac75 100644 --- a/addons/hr_attendance/i18n/vi.po +++ b/addons/hr_attendance/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/zh_CN.po b/addons/hr_attendance/i18n/zh_CN.po index 9ae6cfeb971..b000fc721de 100644 --- a/addons/hr_attendance/i18n/zh_CN.po +++ b/addons/hr_attendance/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/zh_TW.po b/addons/hr_attendance/i18n/zh_TW.po index b3a1af814a7..356798bfb30 100644 --- a/addons/hr_attendance/i18n/zh_TW.po +++ b/addons/hr_attendance/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:00+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:19+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_contract/__init__.py b/addons/hr_contract/__init__.py index 36375675bda..9bec9d6fffe 100644 --- a/addons/hr_contract/__init__.py +++ b/addons/hr_contract/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2010 Tiny SPRL (). +# Copyright (C) 2004-Today OpenERP SA ( +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################## + +from openerp.addons.base_action_rule.base_action_rule import get_datetime +from openerp.osv import fields, osv + + +class base_action_rule(osv.Model): + """ Add resource and calendar for time-based conditions """ + _name = 'base.action.rule' + _inherit = ['base.action.rule'] + + _columns = { + 'trg_date_resource_field_id': fields.many2one( + 'ir.model.fields', 'Use employee work schedule', + help='Use the user\'s working schedule.', + ), + } + + def _check_delay(self, cr, uid, action, record, record_dt, context=None): + """ Override the check of delay to try to use a user-related calendar. + If no calendar is found, fallback on the default behavior. """ + if action.trg_date_calendar_id and action.trg_date_range_type == 'day' and action.trg_date_resource_field_id: + user = record[action.trg_date_resource_field_id.name] + if user.employee_ids and user.employee_ids[0].contract_id \ + and user.employee_ids[0].contract_id.working_hours: + calendar = user.employee_ids[0].contract_id.working_hours + start_dt = get_datetime(record_dt) + resource_id = user.employee_ids[0].resource_id.id + action_dt = self.pool['resource.calendar'].schedule_days_get_date( + cr, uid, calendar.id, action.trg_date_range, + day_date=start_dt, compute_leaves=True, resource_id=resource_id, + context=context + ) + return action_dt + return super(base_action_rule, self)._check_delay(cr, uid, action, record, record_dt, context=context) diff --git a/addons/hr_contract/base_action_rule_view.xml b/addons/hr_contract/base_action_rule_view.xml new file mode 100644 index 00000000000..c37628b8c37 --- /dev/null +++ b/addons/hr_contract/base_action_rule_view.xml @@ -0,0 +1,19 @@ + + + + + + base.action.rule.form + base.action.rule + + + + + + + + + + diff --git a/addons/hr_contract/i18n/ar.po b/addons/hr_contract/i18n/ar.po index 58a5f1a520e..5b8aa590550 100644 --- a/addons/hr_contract/i18n/ar.po +++ b/addons/hr_contract/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -193,7 +193,7 @@ msgstr "رقم التأشيرة" #. module: hr_contract #: field:hr.employee,vehicle_distance:0 msgid "Home-Work Dist." -msgstr "" +msgstr "المنزل / العمل" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/bg.po b/addons/hr_contract/i18n/bg.po index 428bfa2c26e..fe0bdc27094 100644 --- a/addons/hr_contract/i18n/bg.po +++ b/addons/hr_contract/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/bs.po b/addons/hr_contract/i18n/bs.po index 532ff782514..bfdc552b5ca 100644 --- a/addons/hr_contract/i18n/bs.po +++ b/addons/hr_contract/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ca.po b/addons/hr_contract/i18n/ca.po index e1a8f7f6e5a..48868ff5d29 100644 --- a/addons/hr_contract/i18n/ca.po +++ b/addons/hr_contract/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/cs.po b/addons/hr_contract/i18n/cs.po index 08a4b30b3aa..8c83ce88a08 100644 --- a/addons/hr_contract/i18n/cs.po +++ b/addons/hr_contract/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Language: Czech\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/da.po b/addons/hr_contract/i18n/da.po index 82a163f844d..81cfa3c2d28 100644 --- a/addons/hr_contract/i18n/da.po +++ b/addons/hr_contract/i18n/da.po @@ -14,18 +14,18 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 msgid "Wage" -msgstr "" +msgstr "Løn" #. module: hr_contract #: view:hr.contract:0 msgid "Information" -msgstr "" +msgstr "Information" #. module: hr_contract #: field:hr.contract,trial_date_start:0 diff --git a/addons/hr_contract/i18n/de.po b/addons/hr_contract/i18n/de.po index e2d12146b3d..f234fe521b4 100644 --- a/addons/hr_contract/i18n/de.po +++ b/addons/hr_contract/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/el.po b/addons/hr_contract/i18n/el.po index 842073f086e..2701a312198 100644 --- a/addons/hr_contract/i18n/el.po +++ b/addons/hr_contract/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/hr_contract/i18n/en_GB.po b/addons/hr_contract/i18n/en_GB.po index 38863eac501..76fff266d2e 100644 --- a/addons/hr_contract/i18n/en_GB.po +++ b/addons/hr_contract/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es.po b/addons/hr_contract/i18n/es.po index 3199acb499f..2117f54b48d 100644 --- a/addons/hr_contract/i18n/es.po +++ b/addons/hr_contract/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_AR.po b/addons/hr_contract/i18n/es_AR.po index 7f464acf02c..68b4605f808 100644 --- a/addons/hr_contract/i18n/es_AR.po +++ b/addons/hr_contract/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_CR.po b/addons/hr_contract/i18n/es_CR.po index 121189537de..ab9325a0d0c 100644 --- a/addons/hr_contract/i18n/es_CR.po +++ b/addons/hr_contract/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: \n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/es_EC.po b/addons/hr_contract/i18n/es_EC.po index 81840600dbe..87bd6bd7419 100644 --- a/addons/hr_contract/i18n/es_EC.po +++ b/addons/hr_contract/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_PY.po b/addons/hr_contract/i18n/es_PY.po index d876387006d..0641c2e1141 100644 --- a/addons/hr_contract/i18n/es_PY.po +++ b/addons/hr_contract/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/et.po b/addons/hr_contract/i18n/et.po index 3fe0e36e16c..3951df301b0 100644 --- a/addons/hr_contract/i18n/et.po +++ b/addons/hr_contract/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/fi.po b/addons/hr_contract/i18n/fi.po index ab740624cf7..05fcecd6c9e 100644 --- a/addons/hr_contract/i18n/fi.po +++ b/addons/hr_contract/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/fr.po b/addons/hr_contract/i18n/fr.po index 126f8bdd39b..402fe0d24b6 100644 --- a/addons/hr_contract/i18n/fr.po +++ b/addons/hr_contract/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 08:56+0000\n" -"Last-Translator: Quentin THEURET \n" +"Last-Translator: Quentin THEURET @TeMPO Consulting \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/gl.po b/addons/hr_contract/i18n/gl.po index eeafe24feb7..3f403d774d0 100644 --- a/addons/hr_contract/i18n/gl.po +++ b/addons/hr_contract/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/gu.po b/addons/hr_contract/i18n/gu.po index 900881555a9..1ab39aa9d48 100644 --- a/addons/hr_contract/i18n/gu.po +++ b/addons/hr_contract/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hi.po b/addons/hr_contract/i18n/hi.po index 03cde8eef9a..38c35212f48 100644 --- a/addons/hr_contract/i18n/hi.po +++ b/addons/hr_contract/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hr.po b/addons/hr_contract/i18n/hr.po index f620ca962a5..56c2090d74a 100644 --- a/addons/hr_contract/i18n/hr.po +++ b/addons/hr_contract/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hu.po b/addons/hr_contract/i18n/hu.po index 6ded369efb0..fda3fa9d27c 100644 --- a/addons/hr_contract/i18n/hu.po +++ b/addons/hr_contract/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/id.po b/addons/hr_contract/i18n/id.po index 51bdc897ec5..3f034c849d9 100644 --- a/addons/hr_contract/i18n/id.po +++ b/addons/hr_contract/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/it.po b/addons/hr_contract/i18n/it.po index 1f25ac64b2e..e7596cfbf65 100644 --- a/addons/hr_contract/i18n/it.po +++ b/addons/hr_contract/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ja.po b/addons/hr_contract/i18n/ja.po index ec31675324c..bf5cb740de0 100644 --- a/addons/hr_contract/i18n/ja.po +++ b/addons/hr_contract/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ko.po b/addons/hr_contract/i18n/ko.po index 9cad1889e5e..5cc0a48cef2 100644 --- a/addons/hr_contract/i18n/ko.po +++ b/addons/hr_contract/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lo.po b/addons/hr_contract/i18n/lo.po index 41abd253989..3324ad7c746 100644 --- a/addons/hr_contract/i18n/lo.po +++ b/addons/hr_contract/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lt.po b/addons/hr_contract/i18n/lt.po index 45bda274abc..a2efae1970d 100644 --- a/addons/hr_contract/i18n/lt.po +++ b/addons/hr_contract/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lv.po b/addons/hr_contract/i18n/lv.po index 38a96748af4..5a501f75257 100644 --- a/addons/hr_contract/i18n/lv.po +++ b/addons/hr_contract/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/mk.po b/addons/hr_contract/i18n/mk.po index cb32087ca36..f5f1ae4c5bb 100644 --- a/addons/hr_contract/i18n/mk.po +++ b/addons/hr_contract/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/mn.po b/addons/hr_contract/i18n/mn.po index 1e1aba70169..459888d04c1 100644 --- a/addons/hr_contract/i18n/mn.po +++ b/addons/hr_contract/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nb.po b/addons/hr_contract/i18n/nb.po index f4c0adbac77..7483afcad8c 100644 --- a/addons/hr_contract/i18n/nb.po +++ b/addons/hr_contract/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nl.po b/addons/hr_contract/i18n/nl.po index 531381db099..a97b217eba5 100644 --- a/addons/hr_contract/i18n/nl.po +++ b/addons/hr_contract/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -193,7 +193,7 @@ msgstr "Visum nr." #. module: hr_contract #: field:hr.employee,vehicle_distance:0 msgid "Home-Work Dist." -msgstr "Reisafstand woon-werk verkeer" +msgstr "Reisafstand woon-werkverkeer" #. module: hr_contract #: field:hr.employee,place_of_birth:0 diff --git a/addons/hr_contract/i18n/nl_BE.po b/addons/hr_contract/i18n/nl_BE.po index 7c294d37914..439cc4a909a 100644 --- a/addons/hr_contract/i18n/nl_BE.po +++ b/addons/hr_contract/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pl.po b/addons/hr_contract/i18n/pl.po index 44e07aab643..475bcbb1afe 100644 --- a/addons/hr_contract/i18n/pl.po +++ b/addons/hr_contract/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pt.po b/addons/hr_contract/i18n/pt.po index 4f40cd86e64..508d1a3374e 100644 --- a/addons/hr_contract/i18n/pt.po +++ b/addons/hr_contract/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pt_BR.po b/addons/hr_contract/i18n/pt_BR.po index cccc0955bb6..fdf439d99db 100644 --- a/addons/hr_contract/i18n/pt_BR.po +++ b/addons/hr_contract/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-24 16:40+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ro.po b/addons/hr_contract/i18n/ro.po index 750a8eddc66..5e4478d05af 100644 --- a/addons/hr_contract/i18n/ro.po +++ b/addons/hr_contract/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ru.po b/addons/hr_contract/i18n/ru.po index 9eda7c95cc6..565a7602dd2 100644 --- a/addons/hr_contract/i18n/ru.po +++ b/addons/hr_contract/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sl.po b/addons/hr_contract/i18n/sl.po index 7e389c74794..58f1ba9f831 100644 --- a/addons/hr_contract/i18n/sl.po +++ b/addons/hr_contract/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -24,27 +24,27 @@ msgstr "Plača" #. module: hr_contract #: view:hr.contract:0 msgid "Information" -msgstr "" +msgstr "Informacije" #. module: hr_contract #: field:hr.contract,trial_date_start:0 msgid "Trial Start Date" -msgstr "" +msgstr "Začetni datum preizkusa" #. module: hr_contract #: field:hr.employee,vehicle:0 msgid "Company Vehicle" -msgstr "" +msgstr "Službeno vozilo" #. module: hr_contract #: view:hr.contract:0 msgid "Group By..." -msgstr "" +msgstr "Združeno po..." #. module: hr_contract #: field:hr.contract,department_id:0 msgid "Department" -msgstr "" +msgstr "Oddelek" #. module: hr_contract #: view:hr.contract:0 @@ -56,7 +56,7 @@ msgstr "Zaposlenec" #. module: hr_contract #: view:hr.contract:0 msgid "Search Contract" -msgstr "" +msgstr "Iskanje pogodbe" #. module: hr_contract #: view:hr.contract:0 @@ -71,17 +71,17 @@ msgstr "Pogodbe" #. module: hr_contract #: field:hr.employee,children:0 msgid "Number of Children" -msgstr "" +msgstr "Število otrok" #. module: hr_contract #: help:hr.employee,contract_id:0 msgid "Latest contract of the employee" -msgstr "" +msgstr "Zadnja pogodba zaposlenega" #. module: hr_contract #: view:hr.contract:0 msgid "Job" -msgstr "" +msgstr "Zaposlitev" #. module: hr_contract #: field:hr.contract,advantages:0 @@ -102,7 +102,7 @@ msgstr "" #. module: hr_contract #: view:hr.employee:0 msgid "Medical Exam" -msgstr "" +msgstr "Zdravniški pregled" #. module: hr_contract #: field:hr.contract,date_end:0 @@ -112,18 +112,18 @@ msgstr "Končni datum" #. module: hr_contract #: help:hr.contract,wage:0 msgid "Basic Salary of the employee" -msgstr "" +msgstr "Osnovna plača zaposlenega" #. module: hr_contract #: view:hr.contract:0 #: field:hr.contract,name:0 msgid "Contract Reference" -msgstr "" +msgstr "Referenca pogodbe" #. module: hr_contract #: help:hr.employee,vehicle_distance:0 msgid "In kilometers" -msgstr "" +msgstr "v kilometrih" #. module: hr_contract #: view:hr.contract:0 @@ -158,7 +158,7 @@ msgstr "Vrsta pogodbe" #: view:hr.contract:0 #: field:hr.contract,working_hours:0 msgid "Working Schedule" -msgstr "" +msgstr "Delovni urnik" #. module: hr_contract #: view:hr.contract:0 @@ -173,12 +173,12 @@ msgstr "" #. module: hr_contract #: constraint:hr.contract:0 msgid "Error! Contract start-date must be less than contract end-date." -msgstr "" +msgstr "Napaka! Datum začetka pogodbe mora biti manjši kot končni datum." #. module: hr_contract #: field:hr.employee,manager:0 msgid "Is a Manager" -msgstr "" +msgstr "je vodja" #. module: hr_contract #: field:hr.contract,date_start:0 @@ -188,7 +188,7 @@ msgstr "Datum začetka" #. module: hr_contract #: field:hr.contract,visa_no:0 msgid "Visa No" -msgstr "" +msgstr "Št. vizuma" #. module: hr_contract #: field:hr.employee,vehicle_distance:0 @@ -203,32 +203,32 @@ msgstr "Kraj rojstva" #. module: hr_contract #: view:hr.contract:0 msgid "Trial Period Duration" -msgstr "" +msgstr "Trajanje poizkusne dobe" #. module: hr_contract #: view:hr.contract:0 msgid "Duration" -msgstr "" +msgstr "Trajanje" #. module: hr_contract #: field:hr.contract,visa_expire:0 msgid "Visa Expire Date" -msgstr "" +msgstr "Potek veljanosti vize" #. module: hr_contract #: field:hr.employee,medic_exam:0 msgid "Medical Examination Date" -msgstr "" +msgstr "Datum zdravniškega pregleda" #. module: hr_contract #: field:hr.contract,trial_date_end:0 msgid "Trial End Date" -msgstr "" +msgstr "Končni datum preizkusa" #. module: hr_contract #: view:hr.contract.type:0 msgid "Search Contract Type" -msgstr "" +msgstr "Iskanje tipa pogodbe" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/hr_contract/i18n/sq.po b/addons/hr_contract/i18n/sq.po index 1d012f7d8ad..ca7e2b5319d 100644 --- a/addons/hr_contract/i18n/sq.po +++ b/addons/hr_contract/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:51+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sr.po b/addons/hr_contract/i18n/sr.po index d0cf448598b..532da1cbd78 100644 --- a/addons/hr_contract/i18n/sr.po +++ b/addons/hr_contract/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sr@latin.po b/addons/hr_contract/i18n/sr@latin.po index 243e7e9d696..8ecb5be0dde 100644 --- a/addons/hr_contract/i18n/sr@latin.po +++ b/addons/hr_contract/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sv.po b/addons/hr_contract/i18n/sv.po index 478fbbb6c20..3008174fd90 100644 --- a/addons/hr_contract/i18n/sv.po +++ b/addons/hr_contract/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/th.po b/addons/hr_contract/i18n/th.po index 15f13d2b05f..e02459d8e59 100644 --- a/addons/hr_contract/i18n/th.po +++ b/addons/hr_contract/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/tlh.po b/addons/hr_contract/i18n/tlh.po index 0a3b899ecd0..34a076fe324 100644 --- a/addons/hr_contract/i18n/tlh.po +++ b/addons/hr_contract/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/tr.po b/addons/hr_contract/i18n/tr.po index d462b344d91..acab4c67a15 100644 --- a/addons/hr_contract/i18n/tr.po +++ b/addons/hr_contract/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -134,7 +134,7 @@ msgstr "Notlar" #. module: hr_contract #: field:hr.contract,permit_no:0 msgid "Work Permit No" -msgstr "İş İzin No" +msgstr "Çalışma İzin No" #. module: hr_contract #: view:hr.contract:0 diff --git a/addons/hr_contract/i18n/uk.po b/addons/hr_contract/i18n/uk.po index b6287c1aed9..f5d61fcd153 100644 --- a/addons/hr_contract/i18n/uk.po +++ b/addons/hr_contract/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/vi.po b/addons/hr_contract/i18n/vi.po index 34ee860c29d..086a343fec9 100644 --- a/addons/hr_contract/i18n/vi.po +++ b/addons/hr_contract/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/zh_CN.po b/addons/hr_contract/i18n/zh_CN.po index 1721b3dd184..405b4e08aae 100644 --- a/addons/hr_contract/i18n/zh_CN.po +++ b/addons/hr_contract/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/zh_TW.po b/addons/hr_contract/i18n/zh_TW.po index ddfee3686aa..2c644548128 100644 --- a/addons/hr_contract/i18n/zh_TW.po +++ b/addons/hr_contract/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_evaluation/__openerp__.py b/addons/hr_evaluation/__openerp__.py index 0c999ec4f7b..711571a2e89 100644 --- a/addons/hr_evaluation/__openerp__.py +++ b/addons/hr_evaluation/__openerp__.py @@ -28,7 +28,7 @@ 'website': 'http://www.openerp.com', 'summary': 'Periodical Evaluations, Appraisals, Surveys', 'images': ['images/hr_evaluation_analysis.jpeg','images/hr_evaluation.jpeg','images/hr_interview_requests.jpeg'], - 'depends': ['hr','base_calendar','survey'], + 'depends': ['hr','calendar','survey'], 'description': """ Periodical Employees evaluation and appraisals ============================================== diff --git a/addons/hr_evaluation/hr_evaluation.py b/addons/hr_evaluation/hr_evaluation.py index 09c47b89153..462154e9e4a 100644 --- a/addons/hr_evaluation/hr_evaluation.py +++ b/addons/hr_evaluation/hr_evaluation.py @@ -101,6 +101,8 @@ Thanks, class hr_employee(osv.osv): _name = "hr.employee" _inherit="hr.employee" + + _columns = { 'evaluation_plan_id': fields.many2one('hr_evaluation.plan', 'Appraisal Plan'), 'evaluation_date': fields.date('Next Appraisal Date', help="The date of the next appraisal is computed by the appraisal plan's dates (first appraisal + periodicity)."), @@ -123,6 +125,8 @@ class hr_employee(osv.osv): obj_evaluation.button_plan_in_progress(cr, uid, [plan_id], context=context) return True + + class hr_evaluation(osv.osv): _name = "hr_evaluation.evaluation" _inherit = "mail.thread" diff --git a/addons/hr_evaluation/i18n/ar.po b/addons/hr_evaluation/i18n/ar.po index 5d53a1a2050..f8a35ca0f4f 100644 --- a/addons/hr_evaluation/i18n/ar.po +++ b/addons/hr_evaluation/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/bg.po b/addons/hr_evaluation/i18n/bg.po index 24c49fb8506..64852c6150e 100644 --- a/addons/hr_evaluation/i18n/bg.po +++ b/addons/hr_evaluation/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ca.po b/addons/hr_evaluation/i18n/ca.po index 31a8b40351a..78cf575b28a 100644 --- a/addons/hr_evaluation/i18n/ca.po +++ b/addons/hr_evaluation/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/cs.po b/addons/hr_evaluation/i18n/cs.po index f9d42ce1a34..82f4fbf6a7d 100644 --- a/addons/hr_evaluation/i18n/cs.po +++ b/addons/hr_evaluation/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/da.po b/addons/hr_evaluation/i18n/da.po index a52cad18252..1ff97ee04b6 100644 --- a/addons/hr_evaluation/i18n/da.po +++ b/addons/hr_evaluation/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/de.po b/addons/hr_evaluation/i18n/de.po index 39f5de0f0f8..0426ad1abbd 100644 --- a/addons/hr_evaluation/i18n/de.po +++ b/addons/hr_evaluation/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/es.po b/addons/hr_evaluation/i18n/es.po index 62653fc4d06..14c126130c4 100644 --- a/addons/hr_evaluation/i18n/es.po +++ b/addons/hr_evaluation/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/es_CR.po b/addons/hr_evaluation/i18n/es_CR.po index b3386940b70..56401a1fb88 100644 --- a/addons/hr_evaluation/i18n/es_CR.po +++ b/addons/hr_evaluation/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" "Language: es\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/es_EC.po b/addons/hr_evaluation/i18n/es_EC.po index 6c06f0de1bd..1102ccf46d4 100644 --- a/addons/hr_evaluation/i18n/es_EC.po +++ b/addons/hr_evaluation/i18n/es_EC.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/et.po b/addons/hr_evaluation/i18n/et.po index 0ea880da3b9..f4e77129527 100644 --- a/addons/hr_evaluation/i18n/et.po +++ b/addons/hr_evaluation/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/fi.po b/addons/hr_evaluation/i18n/fi.po index 99132fc197c..1fb68fe15b4 100644 --- a/addons/hr_evaluation/i18n/fi.po +++ b/addons/hr_evaluation/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 @@ -53,7 +53,7 @@ msgstr "Lykkää aloitusta" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Appraisal that are in waiting appreciation state" -msgstr "" +msgstr "Arvoinnit, jotka odottavat arvostelua" #. module: hr_evaluation #: view:hr_evaluation.plan:0 @@ -91,17 +91,19 @@ msgid "" "This number of months will be used to schedule the first evaluation date of " "the employee when selecting an evaluation plan. " msgstr "" +"Työntekijän ensimmäinen arvointipäivä ajoitetaan tämän kuukausimäärän " +"perusteella arvointisuunnitelmaa valittaessa. " #. module: hr_evaluation #: view:hr.employee:0 #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_tree msgid "Appraisals" -msgstr "" +msgstr "Arvioinnit" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "(eval_name)s:Appraisal Name" -msgstr "" +msgstr "(eval_name)s:Arvioinnin nimi" #. module: hr_evaluation #: field:hr.evaluation.interview,message_ids:0 @@ -117,7 +119,7 @@ msgstr "Viestin teksti" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,wait:0 msgid "Wait Previous Phases" -msgstr "" +msgstr "Odota edeltäviä vaiheita" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_evaluation @@ -165,7 +167,7 @@ msgid "" "If the evaluation does not meet the expectations, you can proposean action " "plan" msgstr "" -"Jos arvostelu ei täytä odotuksia, voit ehdottaa toimintasuunnitelmaa." +"Jos arviointi ei täytä odotuksia, voit ehdottaa toimintasuunnitelmaa." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -197,10 +199,16 @@ msgstr "" "\n" "Hyvä %(employee_name)s,\n" "\n" -"teen arvostelua työntekijästä %(eval_name)s.\n" +"Teen yrityksemme henkilöstön arviontia työntekijästä %(eval_name)s.\n" "\n" -"Ole hyvä ja lähetä vastauksesi.\n" +"Kyselymme tapahtuu etukäteen suunnitellun arviontiaikataulun mukaisesti.\n" "\n" +"Ole hyvä ja täytä oheinen arviointikysely huolellisesti, rehellisesti ja " +"täydellisesti.\n" +"\n" +"Tarvittaessa voit pyytää minulta lisätietoja tästä kyselystä. Otan " +"mielelläni vastaan myös \n" +"kehitysehdotuksia ja palautetta tavastamme toimia.\n" "\n" "Kiitos,\n" "--\n" @@ -211,7 +219,7 @@ msgstr "" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Appraisal that are in Plan In Progress state" -msgstr "" +msgstr "Arviointi on Suunnittelu kesken -tilassa" #. module: hr_evaluation #: help:hr.evaluation.interview,message_summary:0 @@ -241,7 +249,7 @@ msgstr "" #. module: hr_evaluation #: view:hr.evaluation.report:0 msgid "In progress Evaluations" -msgstr "Keskeneräiset arvostelut" +msgstr "Keskeneräiset arvioinnit" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_survey_request @@ -323,7 +331,7 @@ msgstr "Lähetä kaikki vastaukset esimiehelle" #: selection:hr.evaluation.report,state:0 #: selection:hr_evaluation.evaluation,state:0 msgid "Plan In Progress" -msgstr "" +msgstr "Keskeneräinen suunnitelma" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -339,7 +347,7 @@ msgstr "Lähetä muistutusviesti" #: view:hr.evaluation.report:0 #: field:hr_evaluation.evaluation,rating:0 msgid "Appreciation" -msgstr "" +msgstr "Arvostelu" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -411,12 +419,12 @@ msgstr "Toimintasuunnitelma" #. module: hr_evaluation #: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr_config msgid "Periodic Appraisal" -msgstr "Jaksoarviointi" +msgstr "Säännöllinen arviointi" #. module: hr_evaluation #: field:hr_evaluation.plan,month_next:0 msgid "Periodicity of Appraisal (months)" -msgstr "Arvioinnin jaksollisuus (kuukausia)" +msgstr "Arviointivälien pituus (kuukausia)" #. module: hr_evaluation #: selection:hr.evaluation.report,rating:0 @@ -427,7 +435,7 @@ msgstr "Ylittää selkeästi vaatimukset" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "In progress" -msgstr "" +msgstr "Kesken" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -494,7 +502,7 @@ msgstr "Selite" #. module: hr_evaluation #: field:hr_evaluation.plan,month_first:0 msgid "First Appraisal in (months)" -msgstr "" +msgstr "Ensimmäinen arviointi (kuukauteen)" #. module: hr_evaluation #: selection:hr.evaluation.report,state:0 @@ -525,7 +533,7 @@ msgstr "Arviointisuunnitelma" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Print Survey" -msgstr "" +msgstr "Tulosta kyselylomake" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -632,7 +640,7 @@ msgstr "Lopullinen vahvistus" #. module: hr_evaluation #: selection:hr_evaluation.evaluation,state:0 msgid "Waiting Appreciation" -msgstr "" +msgstr "Odottaa arvostelua" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -644,12 +652,12 @@ msgstr "Arvioinnin analyysi" #. module: hr_evaluation #: field:hr_evaluation.evaluation,date:0 msgid "Appraisal Deadline" -msgstr "Arvioinnin määräpäivä" +msgstr "Arvioinnin takaraja" #. module: hr_evaluation #: field:hr.evaluation.report,rating:0 msgid "Overall Rating" -msgstr "" +msgstr "Yleisarvosana" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -660,22 +668,22 @@ msgstr "Haastattelija" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_report msgid "Evaluations Statistics" -msgstr "Arvostelutilasto" +msgstr "Arvointitilasto" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Deadline Date" -msgstr "" +msgstr "Palautuspäivä" #. module: hr_evaluation #: help:hr_evaluation.evaluation,rating:0 msgid "This is the appreciation on which the evaluation is summarized." -msgstr "" +msgstr "Tässä on arvostelu, joka on yhteenveto arvoinneista." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Top-Down Appraisal Requests" -msgstr "" +msgstr "Ylhäältä alas -arviointipyynnöt" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -751,7 +759,7 @@ msgid "" "(first appraisal + periodicity)." msgstr "" "Seuraavan arvioinnin päivämäärä on laskettu arviointisuunnitelman " -"päivämäärien mukaan (ensimmäinen arviointi + jaksollisuus)." +"päivämäärien mukaan (ensimmäinen arviointi + arviointiväli)." #. module: hr_evaluation #: field:hr.evaluation.report,overpass_delay:0 @@ -764,8 +772,8 @@ msgid "" "The number of month that depicts the delay between each evaluation of this " "plan (after the first one)." msgstr "" -"Kuukausien määrä, joka kuvaa viivettä tämän suunnitelman arvostelujen " -"välillä (ensimmäisen jälkeen)." +"Tämän suunnitelman arviointien välinen viive kuukaisina alkaen ensimmäisestä " +"arvoinnista." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 @@ -819,7 +827,7 @@ msgstr "Vaihe" #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Bottom-Up Appraisal Requests" -msgstr "" +msgstr "Alhaalta ylös -arviointipyynnöt" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -830,18 +838,18 @@ msgstr "Helmikuu" #: view:hr.evaluation.interview:0 #: view:hr_evaluation.evaluation:0 msgid "Interview Appraisal" -msgstr "Haastatteluarviointi" +msgstr "Arviointihaastattelu" #. module: hr_evaluation #: field:survey.request,is_evaluation:0 msgid "Is Appraisal?" -msgstr "" +msgstr "On arviointi?" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:320 #, python-format msgid "You cannot start evaluation without Appraisal." -msgstr "" +msgstr "Arvostelua ei voi aloittaa ilman arviointia." #. module: hr_evaluation #: field:hr.evaluation.interview,user_to_review_id:0 @@ -855,6 +863,8 @@ msgid "" "You cannot change state, because some appraisal(s) are in waiting answer or " "draft state." msgstr "" +"Et voi vaihtaa tilaa, sillä osa arvioinneista odottaa vastausta tai on " +"Ehdotus-tilassa." #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -864,7 +874,7 @@ msgstr "Huhtikuu" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Appraisal Plan Phases" -msgstr "" +msgstr "Arvioinnin suunnitteluvaiheet" #. module: hr_evaluation #: model:ir.actions.act_window,help:hr_evaluation.action_hr_evaluation_interview_tree @@ -892,12 +902,12 @@ msgstr "" #: view:hr.evaluation.interview:0 #: view:hr_evaluation.evaluation:0 msgid "Search Appraisal" -msgstr "Etsi arviointeja" +msgstr "Hae arviointeja" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Järjestysluku" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -931,7 +941,7 @@ msgstr "Arvioinnin yhteenveto" #. module: hr_evaluation #: field:hr.employee,evaluation_date:0 msgid "Next Appraisal Date" -msgstr "Seuraavan arvioinnin päivämäärä" +msgstr "Seuraava arviointipäivä" #~ msgid "Information" #~ msgstr "Tiedot" diff --git a/addons/hr_evaluation/i18n/fr.po b/addons/hr_evaluation/i18n/fr.po index 8af92a27169..440f6fee3e1 100644 --- a/addons/hr_evaluation/i18n/fr.po +++ b/addons/hr_evaluation/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/gl.po b/addons/hr_evaluation/i18n/gl.po index 14ea3e4ad36..e4d64954d0e 100644 --- a/addons/hr_evaluation/i18n/gl.po +++ b/addons/hr_evaluation/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/hr.po b/addons/hr_evaluation/i18n/hr.po index 7d9e5ddfcbb..12658728f58 100644 --- a/addons/hr_evaluation/i18n/hr.po +++ b/addons/hr_evaluation/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/hu.po b/addons/hr_evaluation/i18n/hu.po index daddc7c36e3..b7f5fea1879 100644 --- a/addons/hr_evaluation/i18n/hu.po +++ b/addons/hr_evaluation/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/id.po b/addons/hr_evaluation/i18n/id.po index 157c98c37da..e1cdfeef660 100644 --- a/addons/hr_evaluation/i18n/id.po +++ b/addons/hr_evaluation/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/it.po b/addons/hr_evaluation/i18n/it.po index 6070a422f43..838be895088 100644 --- a/addons/hr_evaluation/i18n/it.po +++ b/addons/hr_evaluation/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ja.po b/addons/hr_evaluation/i18n/ja.po index e8582e208db..183462b9cd7 100644 --- a/addons/hr_evaluation/i18n/ja.po +++ b/addons/hr_evaluation/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/mk.po b/addons/hr_evaluation/i18n/mk.po index 92d9d32fbce..c13db8b685d 100644 --- a/addons/hr_evaluation/i18n/mk.po +++ b/addons/hr_evaluation/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/mn.po b/addons/hr_evaluation/i18n/mn.po index 6bfcaa49e75..2440e37b291 100644 --- a/addons/hr_evaluation/i18n/mn.po +++ b/addons/hr_evaluation/i18n/mn.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/nl.po b/addons/hr_evaluation/i18n/nl.po index dd7d5bd4432..5f0b0fc9938 100644 --- a/addons/hr_evaluation/i18n/nl.po +++ b/addons/hr_evaluation/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/pl.po b/addons/hr_evaluation/i18n/pl.po index f154b1b71a3..1d0b726cfc0 100644 --- a/addons/hr_evaluation/i18n/pl.po +++ b/addons/hr_evaluation/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-18 05:22+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/pt.po b/addons/hr_evaluation/i18n/pt.po index 7612036f101..d9da2afd34a 100644 --- a/addons/hr_evaluation/i18n/pt.po +++ b/addons/hr_evaluation/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/pt_BR.po b/addons/hr_evaluation/i18n/pt_BR.po index c0256d0d165..a26dedfb604 100644 --- a/addons/hr_evaluation/i18n/pt_BR.po +++ b/addons/hr_evaluation/i18n/pt_BR.po @@ -10,13 +10,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-24 15:30+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\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-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ro.po b/addons/hr_evaluation/i18n/ro.po index 447636b4d06..66e4cf009ae 100644 --- a/addons/hr_evaluation/i18n/ro.po +++ b/addons/hr_evaluation/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ru.po b/addons/hr_evaluation/i18n/ru.po index 09167caff05..a1b02ea06e0 100644 --- a/addons/hr_evaluation/i18n/ru.po +++ b/addons/hr_evaluation/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sl.po b/addons/hr_evaluation/i18n/sl.po index 26b86a83cbe..f44c5d80f33 100644 --- a/addons/hr_evaluation/i18n/sl.po +++ b/addons/hr_evaluation/i18n/sl.po @@ -14,18 +14,18 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 msgid "Send an anonymous summary to the manager" -msgstr "" +msgstr "Pošlji anonimni povzetek vodji" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Start Appraisal" -msgstr "" +msgstr "Prični ocenjevanje" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -38,7 +38,7 @@ msgstr "Združeno po..." #: field:hr.evaluation.interview,request_id:0 #: field:hr.evaluation.report,request_id:0 msgid "Request_id" -msgstr "" +msgstr "Id zahevka" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -48,7 +48,7 @@ msgstr "Marec" #. module: hr_evaluation #: field:hr.evaluation.report,delay_date:0 msgid "Delay to Start" -msgstr "" +msgstr "Zamuda do pričetka" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -66,7 +66,7 @@ msgstr "Podjetje" #: field:hr.evaluation.interview,evaluation_id:0 #: field:hr_evaluation.plan.phase,survey_id:0 msgid "Appraisal Form" -msgstr "" +msgstr "Obrazec ocenjevanja" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -78,7 +78,7 @@ msgstr "Dan" #: view:hr_evaluation.plan:0 #: field:hr_evaluation.plan,phase_ids:0 msgid "Appraisal Phases" -msgstr "" +msgstr "Faze ocenjevanja" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -96,12 +96,12 @@ msgstr "" #: view:hr.employee:0 #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_tree msgid "Appraisals" -msgstr "" +msgstr "Ocenjevanja" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "(eval_name)s:Appraisal Name" -msgstr "" +msgstr "(eval_name)s:ime ocenitve" #. module: hr_evaluation #: field:hr.evaluation.interview,message_ids:0 @@ -112,7 +112,7 @@ msgstr "Sporočila" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Mail Body" -msgstr "" +msgstr "Vsebina elektronskega sporočila" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,wait:0 @@ -122,7 +122,7 @@ msgstr "" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_evaluation msgid "Employee Appraisal" -msgstr "" +msgstr "Ocenjevanje zaposlenega" #. module: hr_evaluation #: selection:hr.evaluation.report,state:0 @@ -134,14 +134,14 @@ msgstr "Preklicano" #: selection:hr.evaluation.report,rating:0 #: selection:hr_evaluation.evaluation,rating:0 msgid "Did not meet expectations" -msgstr "" +msgstr "Ni zadostil pričakovanj" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 #: model:ir.actions.act_window,name:hr_evaluation.open_view_hr_evaluation_tree #: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr msgid "Appraisal" -msgstr "" +msgstr "Ocenjevanje" #. module: hr_evaluation #: help:hr.evaluation.interview,message_unread:0 @@ -152,7 +152,7 @@ msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Send to Managers" -msgstr "" +msgstr "Pošlji vodjem" #. module: hr_evaluation #: field:hr_evaluation.evaluation,date_close:0 @@ -165,11 +165,12 @@ msgid "" "If the evaluation does not meet the expectations, you can proposean action " "plan" msgstr "" +"Če ocenitev ne ustreza pričakovanjem, lahko predvidite akcijski načrt" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Send to Employees" -msgstr "" +msgstr "Pošlji zaposlenim" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:84 @@ -195,7 +196,7 @@ msgstr "" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Appraisal that are in Plan In Progress state" -msgstr "" +msgstr "Planirana ocenjevanja v obdelavi" #. module: hr_evaluation #: help:hr.evaluation.interview,message_summary:0 @@ -204,6 +205,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Povzetek klepeta (število sporočil,..). Ta zbir je v html formatu, da se " +"lahko vključi v kanban poglede." #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -225,7 +228,7 @@ msgstr "Opozorilo!" #. module: hr_evaluation #: view:hr.evaluation.report:0 msgid "In progress Evaluations" -msgstr "" +msgstr "Ocenjevanje v teku" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_survey_request @@ -235,18 +238,18 @@ msgstr "survey.request" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "(date)s: Current Date" -msgstr "" +msgstr "(date)s: Trenutni datum" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.act_hr_employee_2_hr__evaluation_interview msgid "Interviews" -msgstr "" +msgstr "Razgovori" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:83 #, python-format msgid "Regarding " -msgstr "" +msgstr "Glede na " #. module: hr_evaluation #: field:hr.evaluation.interview,message_follower_ids:0 @@ -283,13 +286,14 @@ msgstr "Elektronska pošta" #: selection:hr.evaluation.report,rating:0 #: selection:hr_evaluation.evaluation,rating:0 msgid "Exceeds expectations" -msgstr "" +msgstr "Presega pričakovanja" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,mail_feature:0 msgid "" "Check this box if you want to send mail to employees coming under this phase" msgstr "" +"Kliknite okence, če želite poslati elektronsko sporočilo zaposlenim s te faze" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -299,23 +303,23 @@ msgstr "Ustvarjeno dne" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_answer_manager:0 msgid "Send all answers to the manager" -msgstr "" +msgstr "Pošlji vse odgovore vodji" #. module: hr_evaluation #: selection:hr.evaluation.report,state:0 #: selection:hr_evaluation.evaluation,state:0 msgid "Plan In Progress" -msgstr "" +msgstr "Plan v obdelavi" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Public Notes" -msgstr "" +msgstr "Javne beležke" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Send Reminder Email" -msgstr "" +msgstr "Pošlji opomnik po elektronski pošti" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -326,7 +330,7 @@ msgstr "" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Print Interview" -msgstr "" +msgstr "Natisni vprašalnik" #. module: hr_evaluation #: field:hr.evaluation.report,closed:0 @@ -337,13 +341,13 @@ msgstr "zaprto" #: selection:hr.evaluation.report,rating:0 #: selection:hr_evaluation.evaluation,rating:0 msgid "Meet expectations" -msgstr "" +msgstr "Ustreza pričakovanjem" #. module: hr_evaluation #: view:hr.evaluation.report:0 #: field:hr.evaluation.report,nbr:0 msgid "# of Requests" -msgstr "" +msgstr "# zahtevkov" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -362,7 +366,7 @@ msgstr "Status" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_plans_installer msgid "Review Appraisal Plans" -msgstr "" +msgstr "Pregled plana ocenjevanja" #. module: hr_evaluation #: model:ir.actions.act_window,help:hr_evaluation.action_evaluation_plans_installer @@ -379,6 +383,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za definiranje novega plana ocenjevanja.\n" +"

\n" +" Plane ocenjevanja lahko določite (npr: prvo ocenjevanje po 6 " +"\n" +" mesecih, potem vsako leto). Potem je lahko vsak zaposleni " +"povezan\n" +" s planom ocenjevanja, tako da OpenERP avtomatično generira\n" +" anketna vprašanja vodje in/ali podrejenim.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -388,12 +403,12 @@ msgstr "" #. module: hr_evaluation #: field:hr_evaluation.evaluation,note_action:0 msgid "Action Plan" -msgstr "" +msgstr "Načrt aktivnosti" #. module: hr_evaluation #: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr_config msgid "Periodic Appraisal" -msgstr "" +msgstr "Periodično ocenjevanje" #. module: hr_evaluation #: field:hr_evaluation.plan,month_next:0 @@ -404,7 +419,7 @@ msgstr "" #: selection:hr.evaluation.report,rating:0 #: selection:hr_evaluation.evaluation,rating:0 msgid "Significantly exceeds expectations" -msgstr "" +msgstr "Opazno presega pričakovanja" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -414,13 +429,13 @@ msgstr "V teku" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Interview Request" -msgstr "" +msgstr "Zahteva za razgovor" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,send_answer_employee:0 #: field:hr_evaluation.plan.phase,send_answer_manager:0 msgid "All Answers" -msgstr "" +msgstr "Vsi odgovori" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -452,12 +467,12 @@ msgstr "Grupiraj po..." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Mail Settings" -msgstr "" +msgstr "Nastavitve elektronske pošte" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.evaluation_reminders msgid "Appraisal Reminders" -msgstr "" +msgstr "Opomniki ocenjevanja" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,wait:0 @@ -465,6 +480,8 @@ msgid "" "Check this box if you want to wait that all preceding phases are finished " "before launching this phase." msgstr "" +"Označite okence, če želite počakati, da so vse predhodne faze zaključne " +"preden se prične ta faza." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -474,7 +491,7 @@ msgstr "Legenda" #. module: hr_evaluation #: field:hr_evaluation.plan,month_first:0 msgid "First Appraisal in (months)" -msgstr "" +msgstr "Prva ocenitev v (meseci)" #. module: hr_evaluation #: selection:hr.evaluation.report,state:0 @@ -485,7 +502,7 @@ msgstr "Osnutek" #: field:hr_evaluation.plan.phase,send_anonymous_employee:0 #: field:hr_evaluation.plan.phase,send_anonymous_manager:0 msgid "Anonymous Summary" -msgstr "" +msgstr "Anonimni povzetek" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -500,12 +517,12 @@ msgstr "Na čakanju" #: field:hr_evaluation.plan.phase,plan_id:0 #: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan msgid "Appraisal Plan" -msgstr "" +msgstr "Načrt ocenjevanja" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Print Survey" -msgstr "" +msgstr "Tisk ankete" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -521,17 +538,17 @@ msgstr "Junij" #: selection:hr.evaluation.report,rating:0 #: selection:hr_evaluation.evaluation,rating:0 msgid "Significantly bellow expectations" -msgstr "" +msgstr "Znatno pod pričakovanji" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Validate Appraisal" -msgstr "" +msgstr "Potrditev ocenitve" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid " (employee_name)s: Partner name" -msgstr "" +msgstr " (employee_name)s: Partnerjevo ime" #. module: hr_evaluation #: field:hr.evaluation.interview,message_is_follower:0 @@ -565,12 +582,12 @@ msgstr "Razširjeni filtri..." #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_employee:0 msgid "Send an anonymous summary to the employee" -msgstr "" +msgstr "Pošlji anonimni povzetek zaposlenemu" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan_phase msgid "Appraisal Plan Phase" -msgstr "" +msgstr "načrt faz ocenitve" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -580,7 +597,7 @@ msgstr "Januar" #. module: hr_evaluation #: view:hr.employee:0 msgid "Appraisal Interviews" -msgstr "" +msgstr "Ocenjevalni vprašalniki" #. module: hr_evaluation #: field:hr.evaluation.interview,message_summary:0 @@ -607,7 +624,7 @@ msgstr "Dejanje" #: view:hr.evaluation.report:0 #: selection:hr.evaluation.report,state:0 msgid "Final Validation" -msgstr "" +msgstr "Končno ovrednotenje" #. module: hr_evaluation #: selection:hr_evaluation.evaluation,state:0 @@ -619,17 +636,17 @@ msgstr "" #: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_report_all #: model:ir.ui.menu,name:hr_evaluation.menu_evaluation_report_all msgid "Appraisal Analysis" -msgstr "" +msgstr "Analiza ocenitev" #. module: hr_evaluation #: field:hr_evaluation.evaluation,date:0 msgid "Appraisal Deadline" -msgstr "" +msgstr "Končni rok ocenitve" #. module: hr_evaluation #: field:hr.evaluation.report,rating:0 msgid "Overall Rating" -msgstr "" +msgstr "Splošna ocena" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -645,7 +662,7 @@ msgstr "" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Deadline Date" -msgstr "" +msgstr "Končni rok" #. module: hr_evaluation #: help:hr_evaluation.evaluation,rating:0 @@ -665,7 +682,7 @@ msgstr "Splošno" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_answer_employee:0 msgid "Send all answers to the employee" -msgstr "" +msgstr "Pošlji vse odgovore zaposlenemu" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -681,7 +698,7 @@ msgstr "Končano" #: model:ir.actions.act_window,name:hr_evaluation.open_view_hr_evaluation_plan_tree #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_plan_tree msgid "Appraisal Plans" -msgstr "" +msgstr "Plani ocenjevanja" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_interview @@ -712,7 +729,7 @@ msgstr "" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,mail_feature:0 msgid "Send mail for this phase" -msgstr "" +msgstr "Pošlji elektronsko sporočilo za to fazo" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,email_subject:0 @@ -734,7 +751,7 @@ msgstr "" #. module: hr_evaluation #: field:hr.evaluation.report,overpass_delay:0 msgid "Overpassed Deadline" -msgstr "" +msgstr "Presežen končni rok" #. module: hr_evaluation #: help:hr_evaluation.plan,month_next:0 @@ -742,6 +759,8 @@ msgid "" "The number of month that depicts the delay between each evaluation of this " "plan (after the first one)." msgstr "" +"Število mesecev, ki prikazuje zamudo med posameznimi ocenitvami tega plana " +"(po prvem)." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 @@ -785,7 +804,7 @@ msgstr "Interni zaznamki" #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Final Interview" -msgstr "" +msgstr "Končni razgovor" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,name:0 @@ -795,7 +814,7 @@ msgstr "Faza" #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Bottom-Up Appraisal Requests" -msgstr "" +msgstr "Bottom-up ocenitvena zahteva" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -811,7 +830,7 @@ msgstr "" #. module: hr_evaluation #: field:survey.request,is_evaluation:0 msgid "Is Appraisal?" -msgstr "" +msgstr "Je ocenjevanje?" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:320 @@ -878,7 +897,7 @@ msgstr "Zaporedje" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "(user_signature)s: User name" -msgstr "" +msgstr "(user_signature)s: Ime uporabnika" #. module: hr_evaluation #: view:board.board:0 @@ -886,7 +905,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_evaluation.action_hr_evaluation_interview_tree #: model:ir.ui.menu,name:hr_evaluation.menu_open_hr_evaluation_interview_requests msgid "Interview Requests" -msgstr "" +msgstr "Zahtevki za razgovor" #. module: hr_evaluation #: field:hr.evaluation.report,create_date:0 @@ -902,9 +921,9 @@ msgstr "Leto" #. module: hr_evaluation #: field:hr_evaluation.evaluation,note_summary:0 msgid "Appraisal Summary" -msgstr "" +msgstr "Povzetek ocenitve" #. module: hr_evaluation #: field:hr.employee,evaluation_date:0 msgid "Next Appraisal Date" -msgstr "" +msgstr "Naslednji datum ocenitve" diff --git a/addons/hr_evaluation/i18n/sr.po b/addons/hr_evaluation/i18n/sr.po index 4be9479c9b4..cc6d979ed48 100644 --- a/addons/hr_evaluation/i18n/sr.po +++ b/addons/hr_evaluation/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sr@latin.po b/addons/hr_evaluation/i18n/sr@latin.po index 1b4d7a3f902..4421f2a2916 100644 --- a/addons/hr_evaluation/i18n/sr@latin.po +++ b/addons/hr_evaluation/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sv.po b/addons/hr_evaluation/i18n/sv.po index c76f62e42f3..57f94aa7b54 100644 --- a/addons/hr_evaluation/i18n/sv.po +++ b/addons/hr_evaluation/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/tr.po b/addons/hr_evaluation/i18n/tr.po index e6d91f8557d..28368485dd0 100644 --- a/addons/hr_evaluation/i18n/tr.po +++ b/addons/hr_evaluation/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 06:06+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/zh_CN.po b/addons/hr_evaluation/i18n/zh_CN.po index 0b5cafc0340..6eea280e683 100644 --- a/addons/hr_evaluation/i18n/zh_CN.po +++ b/addons/hr_evaluation/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-20 05:25+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/zh_TW.po b/addons/hr_evaluation/i18n/zh_TW.po index 62fce50c577..51699041dff 100644 --- a/addons/hr_evaluation/i18n/zh_TW.po +++ b/addons/hr_evaluation/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-19 05:27+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:22+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/report/hr_evaluation_report_view.xml b/addons/hr_evaluation/report/hr_evaluation_report_view.xml index d4907c90f11..456b5ab72f9 100644 --- a/addons/hr_evaluation/report/hr_evaluation_report_view.xml +++ b/addons/hr_evaluation/report/hr_evaluation_report_view.xml @@ -2,37 +2,14 @@ - - hr.evaluation.report.tree - hr.evaluation.report - - - - - - - - - - - - - - - - - - - hr.evaluation.report.graph hr.evaluation.report - - - - + + + + @@ -70,7 +47,7 @@ Appraisal Analysis hr.evaluation.report form - tree,graph + graph {'search_default_year':1,'search_default_month':1,'search_default_employee':1,'group_by_no_leaf':1,'group_by':[]} diff --git a/addons/hr_evaluation/security/ir.model.access.csv b/addons/hr_evaluation/security/ir.model.access.csv index a304ee84c10..1f22e3b5d16 100644 --- a/addons/hr_evaluation/security/ir.model.access.csv +++ b/addons/hr_evaluation/security/ir.model.access.csv @@ -28,8 +28,8 @@ access_survey_request_hr_user,survey.request.hr.user,survey.model_survey_request access_survey_question_column_heading_hr_user,survey.question.column.heading.hr.user,survey.model_survey_question_column_heading,base.group_hr_user,1,1,1,0 access_survey_response_line_hr_user,survey.response.line.hr.user,survey.model_survey_response_line,base.group_hr_user,1,1,1,0 access_survey_tbl_column_heading_hr_user,survey.tbl.column.heading.hr.user,survey.model_survey_tbl_column_heading,base.group_hr_user,1,1,1,0 -access_base_calendar_attendee_survey_user,base.calendar.calendar.attendee.survey.user,base_calendar.model_calendar_attendee,base.group_survey_user,1,1,1,0 -access_base_calendar_attendee_tool_user,base.calendar.calendar.attendee.tool.user,base_calendar.model_calendar_attendee,base.group_tool_user,1,1,1,0 +access_calendar_attendee_survey_user,base.calendar.calendar.attendee.survey.user,calendar.model_calendar_attendee,base.group_survey_user,1,1,1,0 +access_calendar_attendee_tool_user,base.calendar.calendar.attendee.tool.user,calendar.model_calendar_attendee,base.group_tool_user,1,1,1,0 access_survey_request_hr_employee,survey.request.hr.employee,survey.model_survey_request,base.group_user,1,1,1,0 access_survey_hr_employee,survey.hr.employee,survey.model_survey,base.group_user,1,1,0,0 access_survey_page_hr_employee,survey.page.hr.employee,survey.model_survey_page,base.group_user,1,0,0,0 @@ -39,4 +39,4 @@ access_survey_response_hr_employee,survey.response.employee,survey.model_survey_ access_survey_question_column_heading_hr_employee,survey.question.column.heading.employee,survey.model_survey_question_column_heading,base.group_user,1,0,0,0 access_survey_response_line_hr_employee,survey.response.line.employee,survey.model_survey_response_line,base.group_user,1,1,1,0 access_survey_response_answer_hr_employee,survey.response.answer.hr.employee,survey.model_survey_response_answer,base.group_user,1,1,1,0 -access_survey_tbl_column_heading_hr_employee,survey.tbl.column.heading,survey.model_survey_tbl_column_heading,base.group_user,1,1,1,0 +access_survey_tbl_column_heading_hr_employee,survey.tbl.column.heading,survey.model_survey_tbl_column_heading,base.group_user,1,1,1,0 \ No newline at end of file diff --git a/addons/hr_expense/hr_expense_demo.xml b/addons/hr_expense/hr_expense_demo.xml index b7b6cd37956..0e92e7854ce 100644 --- a/addons/hr_expense/hr_expense_demo.xml +++ b/addons/hr_expense/hr_expense_demo.xml @@ -15,7 +15,7 @@ - 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 + @@ -26,7 +26,7 @@ AT - /9j/4AAQSkZJRgABAQEASABIAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCACAAIADASIAAhEBAxEB/8QAHAAAAwEAAwEBAAAAAAAAAAAAAAUGBwMECAIB/8QAPBAAAQMDAwEECQEGBQUAAAAAAQIDBAAFEQYSITETQVFhBxQiMkJxgZGhFSMzkrHB0QhDYoKiFiRS4fD/xAAbAQABBQEBAAAAAAAAAAAAAAAAAQIDBAUHBv/EADYRAAECBAMFBgQGAwEAAAAAAAEAAgMEESEFMUEGElGR8BNhcYGh0SIyM7EUQlLB4fEjJGKy/9oADAMBAAIRAxEAPwD2XRRRQhFFFde4yW4sNbq5DEckhDa3jhPaKISgdRklRSAM5JIA5NBNEoBJoF2KKjXJ7kTXMKQ6slmc2qMc5O1WRjA7ucfc1ZUC4B4pNSEUUUUIRRRRQhFFccl9mO32jzgQnOMnvPgPGvmFKalsB1rIB7j1FJvCtEtFzUUi1NqFFqdjQ2GkyJ0pYbabKwkAngE/Ujjj5imFi/Vf0OB+u+pfq3qzfr3qW71ft9o7Ts9/tbN2du7nGM80Agoou7RRRSpEUUUUIRXw/wAMOH/Sf5V91wT3UNRVlZI3DakAZJJ6f/dw56UhyShQ2vWFKszkhv8AeQ3+0BHcArH9R9qtbPObuVqiz2ina+0leEq3BJI5TnyOR9Ki5ipl5ny4EYobtYBD0nqp5RT7iO7APJV9B3kc/oenuO2SVanyrtbe+U4KQAEqJOPP2gv7ikgCsMjUH7pIho8d6uKKKKchFFFFCEl1S2AmJKxy26UZ8AoY/mBSiNcDb5DpUtSWFpKzhWMYHtc93j/F4091WkqsUjCgNu1Qz4gjH5xWYauvDbcVEUubQ8Atzx29Upx4nqfpVSKCH1UzPlTzQKXL9rCZf30EMxk9nHGeEk+R8ifqmtHrFdBa4asi3Yz0FHqry924eysHPJ3H3up4J+1axZL5b7xH7aI6RggFDg2kE5x5Hp3E1LCLQKJjwa1TKiiipkxFFFFCF17hMYhR1OvutNgJKv2iwkYHUknoB3ms/iP3rWMswESpjFhdDjn6iGOzclt7hlpsgYbR7QAUfbWkZ5wVG3vtitF8TGTdoLUsRne2Z359lWCO7qOeh4NMEJShIShISkDAAGAKEKb2oakhttO1HYI2jwxkf2qQsbwsnpedjq2oYubZwTnqoZ4896cfWqrUk2Ja3mZElwNtqK2UJAypaiobUJA5KjjgCor0pR5rCbbqSAlSZEFwbxtBUnJBSccg4Vx39aikzSLuH81ksz9PeGl1rFwmRoEN2ZMeSyw0MrWru/uSeAByScCsuv2q7pcbiJESRJgsNfuWm14I5B3LA4UTgcHKQOOcknhud6u2qXYqHmQzhIKYyDlKFY9pZPeevyHHXJNDabXGgw1MlKXVuDDqlD3vL5VdnsSlMAhtdHG/Fdk3gNSermwtUrDixYk64thGjBrxKfaP1IzfI5adCGZ7ScutDoodN6M/D4jqk8HuJfLWlCSpZASOpNZLcoD9mnNT4S1BDbgW2sHls+B8j08wSDVSnUIftKbiHkOSkoSHm+UtpUM52pJOCcnB57qI7peNAbNyhrDd6HgevdXJCYe9xgxfmHqnt2mNBpxD6UFogfs1DlXmrwHTjrUSLFatTy5TjFtZcLCwHHgCApZ+HcCM4GMjPGR41Pz75dNX38af02HVArT67MSkFMZskZVyQCrBztz+cCtZ03Y7bp61ot1sYDTQO5ajyt1Zxla1fEo4HPkB0AFUBD37uK097dyUpC0nGinb/wBPxlY7woqz/EP613YkSPFO+LAdh7wM9igBKvA4TkHr4VYUUhlxxS9p3JXZzKWsqcW4GwkYCknnrjy+3lTSiipmN3RRRuNTVFFFFOSIqcumsrBGtLc9m5NyWZDaVxVxf2vrQUAU9hjh3IIwUkgZya72rosqdpm4QokKBPckMloxZwyw+hXC21jByFJKhzxzzxS3TulgzNRe746J94/y14w3FSRjs2k9APE9SeT0FCEoTGkS4rF/u0UMzmdy47JcCxHbPPXvWpHClZPXA78pb1dHrtIEGACWCevTtPM+Cad+lSPepNskfobjZdZUlxyOtOe2TtAwDnqOuO+sy0Zq15SlwpDbTMwqOFFGO0x8PkR4U+O84dhsXFWM7VzPyi+7/wBOFjQd3uRjYhOERmSZ+EOGfHuHX86PaILUBnanCnFe+vx8vlXfC6lUXyX3ho/7a50X5742W1fIkVxGZ2jhTkZ0aO8lzsyR7K2wMY0NbYBUDu1aFIWApKhgg9DUjqSzKTHebZeeaYeSU9o2rC26aN31g/vGnE/LBrjkXuHJkptcFxuROeGEsHqM+Ir1ux+MRjOCDJ/5A75m6U1JrlTioJsQyzeJoRkdaqh9EqLJAsKbPbY6YslkFbySrKnuf3mfiHTPeDweoJtKyafAudgmtlS1x3cBTbrSuPPyPmDwe/Iq/wBKX1N5iKDqEtS2sB1CfdV4LT5HwPIPHPBPUp6RbDHbQbsPp1/aWRnnPPZRrOHqnVFFFZa1EUUUUIRRRRQhFFFde4TY8BhL0kuBK3UNJDbSnFFS1BI9lIJxk5JxhIBUSACQoFTQIWeekaQ8Ly5EEllzctDiUspKVNjYAErO47lZ3KyAn2VJGOCpUDqj0eiVNcuDiJ0OYshS5MN3hSh8Sk8gnzIB86sULVdtZvSVqK0h9bmSAMJScIHHkEj+9VKledMxraV+BRYUvBYHfDV1e/QEZZag1svPmAJ5z3vNq28ljkdOp4DQS45DvSE8bservEefVJP2rlGo4bSg3cWpNscPH/dNkIJ8ljKT961CZChyeXo6FK/8gMH7ilEuwNLSQy77J+B0bga59M4Vsziri8b0s88PiZyFxyAU4ZMwhSzhyKhLxfENs9nb3G331pzvQd6Wx4nHU+AqQsuqZtiusbUdvfC4u7Dj5SStpzOFB0H4T0PTb+arLxoOwTFl+O09a5CXdwk250tZWPEe4r5EVO3LROo7fMXcLLNh3PtBtkxJKexMhPTqMp347yBnoa61srs7J7PSfZQBvOd87yLu7qfpH6fOtVgTTokxF3ycshlTz48DobEUXonTt6tGvNOqSQEPhI7ZrIKmVY4Uk948D3/es/vTs/Sl7bj3ILYKVb4k9gewvzwehwcFPI5wcg1lFkvt49Hl3ZmOwp9tgA+yp1HaIjZ6oUpOQpo/8fsa9HWW66b9JulVtFTLpwC62hwKWyvuWk+Hgfoe8VpDdkXlwFYRzGrfDiOHHI3V7edPsDSaRRkdHU+x48MxZONI6hjX6FuQpPrDaU9rtHsLyPeRyeM54JyO/uJeV55usDUHo+1ElUd9SBkqjvhOW3k4wcg8ZweR3fY1r2gNZwtVxnEhtMW4sgrfipUtYQguLSghwoSFEpSCQnO0qAPUE0sSwkwW/iYB3oR1Gnj56+RvSt7DMW7Zxl5gbsRvHXw7+hVVFFFFYa3EUUVwSZCWiEAb3CMhPl4nwpCQBUpQKonyDHjqU2lDj5SeybUopC1Y4BIBwPPBxSDU109SgSJClAyNhS0nPCCeB9e+vm+XlmA2t114FzGCrw8hWbTL6u9THglWWmVAbQfiPj54/nTpKGZqZYzSt/AZqGciCXgOfrp4p9o9ns2HpJ6rIQk+Q6/k/inpXS+IG4UFllxaUbU87jjnqfzXG7doLf8AnhR/0gmuZ7QYpDm8QizDnAAm19BYegVSWhiFCawpgpVdS4yOwhuuD3gnCfmeB+aXvX6OPcadV88CpjV+rvV+yYQwynguqU87hIxwnPzJ/FM2cZBxXE4UpDNamp8Bc3yyCZNzLYEFzyVoejLxZItoFvlHClLJcUtG5Cj07s9wHWm7+m9P3NsuxNjefjjLGPtyK85OanujSu1l6eDWefWbYtTgPmU5Cvwa5LbrfURkb7Jd7VMWnqw6hcd9PlkHP3TXdYkhF3y5ji1x6yNDyqshmIwuzDHtDmjrMVHOi2y46ImoSr1V5qU2eChY2kjw8DUY/pFi0XBE5q2u2mWg+y9Gyzny9n2SKW2z00ahtiwm/QFtNjgqfZKm/o62SB/uFaJp70q6avDAMjLCVcFaSHmvun+ooP4xlQ5oiDuz5Z+iUOkohDmuMM6Vy55eqnbjPuFwti7dcXUXCMrlIfT7aD3KSscg/PNZ2q43nSV29babkxVthQamtNB1vBBGSCCAcHoR/Q16D/SdM31kvwVsKzzviuDj5gcfiorXVhm6cty7k1MiyIwWlGxxCkOEk9BgkH8dKmw2bhNcYDKjetunK/XcosSk4r2iO+jt2+8MxS/WaT6X9Lus5UJyW7o9m/xG1BCn7S9haD4rbO5WSOcYHfjyrtJ+lzTF6kRbbNTNs94fU216jKjOZLqsDalQTyNxxkhPjgUv9GNogLtxv6re3EmSFqSHGCUFTY49oDhXOTyDVg3Ahzp8REuLGlCO56y32wypC0+6sdxIJGMjg4I5Aryk9OyjJ58qwXBIzOYz45eS35CK+JAY+I7OmlfbNUDiwhOTyScAZHNQur9VRrP6wXCk7klfaJITvIHunPTAAwSefpUB/idm67gX+0TdGWO9XaQxHwhMSA4602FrIdytA4UQhvGT7OMjqab2b0RzLzKbna5uD8pOd5hmQVpCgVbRgDYAN3dnIAz0GI3sDqXWg1xFbKJsdy1F6Tr0mBa9sSKtJcVO52hsEBQbCgNykkgFWMAkYBzitHuPoiSzaW4unr8/BWhCi4lxsESHCBhRWMKSSRyTu+XGDpFotlvtEMRLZDZiMBRVsbTgEnvPieByfCu3VqUmYko8Pg2Pkedehoq0zKw5pm5Fv6fbrivOVx0R6QNPOktNypjO8JC4yjJQokZ9wjeB1BJSBnv5GV8XUktI2zIaXPFbKsH+E/3r07Sy96fst6SRdLbHkqKQntFJw4ADkALGFAZz0PefGkxCWwXGKnEpNpcfzs+F3iSKV8zTuWKcGjwLykYgcHXH8clg8e9QJBCUvhpZ+B0bD+ev0pJLDdxmS3HUIdZUrskpWkFJSnjofPJrXb56JrZI3rtc1yPnersX09ogk+6kHgpA6ZO4/bmRuOgb/aAEJt5ksghKVxAXByM+6BuA8yMfinbJbKYJgs++blIxO83dDX0qKkE3sDlTLLVZWKNxF8IMiQ8jWrbj3Cgk6bjNHfbJEq2L64jufs/qhWU/gV159rujiQLhbLbfW09FpHYPj5ZyM/Iiq1DJBxjpXMhryroMSDCIoLeGXLL0WHDmYlnE1+/PP1UE081DWGmLzcLO4eBGuzRcaPkFnu+S6+5NvVv9amWAKUefXrK9hR89owT/AMqvHIqHWy262lxCuqVAEH6Gk7ulLehZdty5NrdPO6I4UJPzQcpP2qo6C4WFx1oajlRWmTDa1Nj1qKHnVILVcp7EkGy6kakPo6MTQWJA8twwfuDVadQan1DAatl5DyS28OzQtaXNyiMAhQ5I576Q3O03hTeyZFtl/YHQOoDLw+R5Tn7VY+jW0NJuURCGFtMxk9sW1rKyg9ycknOCfxVaam2yMvEm4o+m0m/HQCtc8rO8lIAYpEKGfmNLfvSnq3zWqWyO3b7ZGgt42sNJQPPA5NfkB5c2+IjQ2g4IrgXKkE4SwduQ2D8TigeU9yVZVjKQv5efS22pxRwEgk1SWuOYtvZYWEhwJy4EqKhvPKsE84yT4fIVxXZ//emXzEWpp/6PH252sfdNh1oxtgOuuiOzRRRXtFbRRRRQhFFFFCEUUUUIXVuVtgXJvs50NmQACElaASnPXaeoPmPCpm5aAtjyiuDIdiEkeyodogDHQZIV155J76sKKsQZuNA+m4j7clVmJKXmPqMB+/PNZTcdG3mEkrEcSUAAlUc7upxjbwr7A0jejLbcU2tBStJKVJIwQR1BFblXXmwoc1ITLisvgAgdogHbnrjwrVg448WiNr4LDmNm4ZvBdTuPXusMda8qptExgxDdkkYU8rA+Q/8Aeae33RLj10iJtTcZmA4F+tuPSFlxjCfY7NG0hzceDuWjb1G7pXC9brhaGgw5bpDrDSGgH4ye2Sta1lG0IT+09k4KlFO0JUDnAVt8xt3ik1OYT+Hk4TiXOuBQndB4AnN1KD5qAmlLqHD8JjSsxvxRYCxHH+kytSFSbmw2AralXaLIIGAnkdfPaPrVZSPSsRbfbyX2lIcJDaQtspUB1JBPcSR/DTysXZSUdL4c0vFHOqT+3ovTwRaq/9k= + @@ -36,7 +36,7 @@ HA0 - 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 + Expenses diff --git a/addons/hr_expense/i18n/ar.po b/addons/hr_expense/i18n/ar.po index 9bc3bc0d432..588f752dcf1 100644 --- a/addons/hr_expense/i18n/ar.po +++ b/addons/hr_expense/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/bg.po b/addons/hr_expense/i18n/bg.po index f6f701857bc..220f4e1c8c1 100644 --- a/addons/hr_expense/i18n/bg.po +++ b/addons/hr_expense/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/bs.po b/addons/hr_expense/i18n/bs.po index 1503e817cbc..010ad84c5c7 100644 --- a/addons/hr_expense/i18n/bs.po +++ b/addons/hr_expense/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ca.po b/addons/hr_expense/i18n/ca.po index 9c72f2031ce..b1f36e3f30b 100644 --- a/addons/hr_expense/i18n/ca.po +++ b/addons/hr_expense/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/cs.po b/addons/hr_expense/i18n/cs.po index 92875406700..d83f1628957 100644 --- a/addons/hr_expense/i18n/cs.po +++ b/addons/hr_expense/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/da.po b/addons/hr_expense/i18n/da.po index 5c28613ec38..deb5e462c96 100644 --- a/addons/hr_expense/i18n/da.po +++ b/addons/hr_expense/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/de.po b/addons/hr_expense/i18n/de.po index 5b019606680..111d31d515c 100644 --- a/addons/hr_expense/i18n/de.po +++ b/addons/hr_expense/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/el.po b/addons/hr_expense/i18n/el.po index 06919b02c9b..1e022b462fa 100644 --- a/addons/hr_expense/i18n/el.po +++ b/addons/hr_expense/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/hr_expense/i18n/es.po b/addons/hr_expense/i18n/es.po index fc438cae962..5425b0ee3a0 100644 --- a/addons/hr_expense/i18n/es.po +++ b/addons/hr_expense/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_AR.po b/addons/hr_expense/i18n/es_AR.po index 49a59de28b2..63a5e8db308 100644 --- a/addons/hr_expense/i18n/es_AR.po +++ b/addons/hr_expense/i18n/es_AR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_CR.po b/addons/hr_expense/i18n/es_CR.po index ed66c48f742..dd89b56cb16 100644 --- a/addons/hr_expense/i18n/es_CR.po +++ b/addons/hr_expense/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_EC.po b/addons/hr_expense/i18n/es_EC.po index 3d59a40a2d7..81e2e2d833f 100644 --- a/addons/hr_expense/i18n/es_EC.po +++ b/addons/hr_expense/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/et.po b/addons/hr_expense/i18n/et.po index d2f14b2c0a0..5febe1e3ac6 100644 --- a/addons/hr_expense/i18n/et.po +++ b/addons/hr_expense/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/fi.po b/addons/hr_expense/i18n/fi.po index 5bc2c196145..fa280918f5f 100644 --- a/addons/hr_expense/i18n/fi.po +++ b/addons/hr_expense/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/fr.po b/addons/hr_expense/i18n/fr.po index 58b09690e96..1b92c6e5940 100644 --- a/addons/hr_expense/i18n/fr.po +++ b/addons/hr_expense/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -596,7 +596,7 @@ msgstr "Utilisateur" #. module: hr_expense #: model:ir.ui.menu,name:hr_expense.menu_hr_product msgid "Expense Categories" -msgstr "" +msgstr "Type de dépense" #. module: hr_expense #: selection:hr.expense.report,month:0 diff --git a/addons/hr_expense/i18n/hr.po b/addons/hr_expense/i18n/hr.po index d47469b0211..1b15d40e8f6 100644 --- a/addons/hr_expense/i18n/hr.po +++ b/addons/hr_expense/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/hu.po b/addons/hr_expense/i18n/hu.po index 55d3932fcb4..b1488a94442 100644 --- a/addons/hr_expense/i18n/hu.po +++ b/addons/hr_expense/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -35,7 +35,7 @@ msgstr "A könyvelő megtéríti a költségeket" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "Kiadások alfogadva" +msgstr "Költség elfogadva" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 @@ -70,7 +70,7 @@ msgstr "Osztály, részleg" #. module: hr_expense #: view:hr.expense.expense:0 msgid "New Expense" -msgstr "Új kiadás" +msgstr "Új költség" #. module: hr_expense #: field:hr.expense.line,uom_id:0 diff --git a/addons/hr_expense/i18n/id.po b/addons/hr_expense/i18n/id.po index bfb7b90a915..4b3eb1a2621 100644 --- a/addons/hr_expense/i18n/id.po +++ b/addons/hr_expense/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/it.po b/addons/hr_expense/i18n/it.po index a95ecab7aaa..340b2277723 100644 --- a/addons/hr_expense/i18n/it.po +++ b/addons/hr_expense/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ja.po b/addons/hr_expense/i18n/ja.po index 97e15b8b03e..7a505df7bd8 100644 --- a/addons/hr_expense/i18n/ja.po +++ b/addons/hr_expense/i18n/ja.po @@ -14,14 +14,14 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 #: model:process.node,name:hr_expense.process_node_confirmedexpenses0 msgid "Confirmed Expenses" -msgstr "承認された経費" +msgstr "承認済経費" #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_line @@ -58,7 +58,7 @@ msgstr "航空券" #. module: hr_expense #: report:hr.expense:0 msgid "Validated By" -msgstr "検証済み" +msgstr "検証者" #. module: hr_expense #: view:hr.expense.expense:0 @@ -77,7 +77,7 @@ msgstr "新規経費" #: field:hr.expense.line,uom_id:0 #: view:product.product:0 msgid "Unit of Measure" -msgstr "" +msgstr "単位" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -87,7 +87,7 @@ msgstr "3月" #. module: hr_expense #: field:hr.expense.expense,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "未読メッセージ" #. module: hr_expense #: field:hr.expense.expense,company_id:0 @@ -99,7 +99,7 @@ msgstr "会社" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Set to Draft" -msgstr "草稿に設定" +msgstr "ドラフトに設定" #. module: hr_expense #: view:hr.expense.expense:0 @@ -112,7 +112,7 @@ msgstr "支払い" msgid "" "No expense journal found. Please make sure you have a journal with type " "'purchase' configured." -msgstr "" +msgstr "経費用の仕訳帳がありません。タイプが「購買」の仕訳帳を登録してください。" #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_report @@ -145,7 +145,7 @@ msgstr "注記" #. module: hr_expense #: field:hr.expense.expense,message_ids:0 msgid "Messages" -msgstr "" +msgstr "メッセージ" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 @@ -166,17 +166,17 @@ msgstr "" #: model:ir.actions.act_window,name:hr_expense.hr_expense_product #: view:product.product:0 msgid "Products" -msgstr "プロダクト" +msgstr "品目" #. module: hr_expense #: view:hr.expense.report:0 msgid "Confirm Expenses" -msgstr "経費を確認する。" +msgstr "" #. module: hr_expense #: selection:hr.expense.report,state:0 msgid "Cancelled" -msgstr "キャンセルされました" +msgstr "取消済" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_refused0 @@ -196,7 +196,7 @@ msgstr "確認待ち" #. module: hr_expense #: selection:hr.expense.report,state:0 msgid "Accepted" -msgstr "受理済み" +msgstr "受理済" #. module: hr_expense #: field:hr.expense.line,ref:0 @@ -242,7 +242,7 @@ msgstr "" #: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" -msgstr "" +msgstr "警告" #. module: hr_expense #: report:hr.expense:0 @@ -404,7 +404,7 @@ msgstr "請求書を作成後、経費を精算する。" #: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" -msgstr "" +msgstr "警告" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_reimbursement0 @@ -616,7 +616,7 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Generate Accounting Entries" -msgstr "" +msgstr "会計仕訳生成" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -641,7 +641,7 @@ msgstr "交通費" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Submit to Manager" -msgstr "マネジャに提出する。" +msgstr "上長に申請" #. module: hr_expense #: view:hr.expense.report:0 @@ -710,7 +710,7 @@ msgstr "再請求" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expense Date" -msgstr "" +msgstr "経費発生日" #. module: hr_expense #: field:hr.expense.expense,user_valid:0 @@ -856,7 +856,7 @@ msgstr "氏名" #: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" -msgstr "" +msgstr "削除できるのはドラフトの経費のみです。" #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 @@ -881,12 +881,12 @@ msgstr "4月" #. module: hr_expense #: field:hr.expense.line,name:0 msgid "Expense Note" -msgstr "経費の注記" +msgstr "経費注記" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Approve" -msgstr "承認する。" +msgstr "承認" #. module: hr_expense #: help:hr.expense.expense,message_ids:0 @@ -920,13 +920,13 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Accounting" -msgstr "" +msgstr "会計" #. module: hr_expense #: view:hr.expense.expense:0 #: model:mail.message.subtype,name:hr_expense.mt_expense_confirmed msgid "To Approve" -msgstr "承認する。" +msgstr "未承認" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ko.po b/addons/hr_expense/i18n/ko.po index 594c9e04779..dca346e546d 100644 --- a/addons/hr_expense/i18n/ko.po +++ b/addons/hr_expense/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/lt.po b/addons/hr_expense/i18n/lt.po index 9012fbeca1a..ad3c19d4381 100644 --- a/addons/hr_expense/i18n/lt.po +++ b/addons/hr_expense/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/lv.po b/addons/hr_expense/i18n/lv.po index 1e308ab06da..10066b225d3 100644 --- a/addons/hr_expense/i18n/lv.po +++ b/addons/hr_expense/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/mk.po b/addons/hr_expense/i18n/mk.po index d5ddd08ce7b..3bb9708f764 100644 --- a/addons/hr_expense/i18n/mk.po +++ b/addons/hr_expense/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/mn.po b/addons/hr_expense/i18n/mn.po index 8d2af546ae5..b034e9ed9f5 100644 --- a/addons/hr_expense/i18n/mn.po +++ b/addons/hr_expense/i18n/mn.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nb.po b/addons/hr_expense/i18n/nb.po index d1c27d1d93c..b9f0a49bafd 100644 --- a/addons/hr_expense/i18n/nb.po +++ b/addons/hr_expense/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nl.po b/addons/hr_expense/i18n/nl.po index 23533f2a045..572fcac9803 100644 --- a/addons/hr_expense/i18n/nl.po +++ b/addons/hr_expense/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nl_BE.po b/addons/hr_expense/i18n/nl_BE.po index 7669fa6336f..f8fdaadc10e 100644 --- a/addons/hr_expense/i18n/nl_BE.po +++ b/addons/hr_expense/i18n/nl_BE.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pl.po b/addons/hr_expense/i18n/pl.po index 256bd1b63e4..d093a39e3e5 100644 --- a/addons/hr_expense/i18n/pl.po +++ b/addons/hr_expense/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pt.po b/addons/hr_expense/i18n/pt.po index b8206d42a02..feb0127452a 100644 --- a/addons/hr_expense/i18n/pt.po +++ b/addons/hr_expense/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pt_BR.po b/addons/hr_expense/i18n/pt_BR.po index a0f2e72c51f..ad459cce82d 100644 --- a/addons/hr_expense/i18n/pt_BR.po +++ b/addons/hr_expense/i18n/pt_BR.po @@ -9,13 +9,13 @@ msgstr "" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-24 15:23+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " -"\n" +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ro.po b/addons/hr_expense/i18n/ro.po index af4c581d5fd..6b7795859b3 100644 --- a/addons/hr_expense/i18n/ro.po +++ b/addons/hr_expense/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ru.po b/addons/hr_expense/i18n/ru.po index c3ef7eb821f..3512300e66c 100644 --- a/addons/hr_expense/i18n/ru.po +++ b/addons/hr_expense/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -25,7 +25,7 @@ msgstr "Подтвержденные расходы" #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_line msgid "Expense Line" -msgstr "Позиция расходов" +msgstr "Строка расходов" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_reimbursement0 @@ -35,7 +35,7 @@ msgstr "Бухгалтер возмещает расходы" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "" +msgstr "Расход утвержден" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 @@ -65,18 +65,18 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,department_id:0 msgid "Department" -msgstr "" +msgstr "Подразделение" #. module: hr_expense #: view:hr.expense.expense:0 msgid "New Expense" -msgstr "" +msgstr "Новый расход" #. module: hr_expense #: field:hr.expense.line,uom_id:0 #: view:product.product:0 msgid "Unit of Measure" -msgstr "" +msgstr "Ед. изм." #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -116,7 +116,7 @@ msgstr "" #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_report msgid "Expenses Statistics" -msgstr "" +msgstr "Статистика расходов" #. module: hr_expense #: view:hr.expense.expense:0 @@ -159,18 +159,18 @@ msgstr "" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_refused msgid "Expense refused" -msgstr "" +msgstr "Расход отклонен" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.hr_expense_product #: view:product.product:0 msgid "Products" -msgstr "" +msgstr "Продукты" #. module: hr_expense #: view:hr.expense.report:0 msgid "Confirm Expenses" -msgstr "" +msgstr "Подтвердить расходы" #. module: hr_expense #: selection:hr.expense.report,state:0 @@ -191,7 +191,7 @@ msgstr "" #. module: hr_expense #: selection:hr.expense.report,state:0 msgid "Waiting confirmation" -msgstr "В ожидании подтверждения" +msgstr "Ожидает утверждения" #. module: hr_expense #: selection:hr.expense.report,state:0 @@ -257,7 +257,7 @@ msgstr "Всего:" #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_refuseexpense0 msgid "Refuse expense" -msgstr "Неподтвержденные расходы" +msgstr "Отклонить расход" #. module: hr_expense #: field:hr.expense.report,price_average:0 @@ -326,7 +326,7 @@ msgstr "Сотрудник" #: view:hr.expense.expense:0 #: selection:hr.expense.expense,state:0 msgid "New" -msgstr "" +msgstr "Новый" #. module: hr_expense #: report:hr.expense:0 @@ -366,7 +366,7 @@ msgstr "" #. module: hr_expense #: model:ir.actions.report.xml,name:hr_expense.hr_expenses msgid "HR expenses" -msgstr "" +msgstr "Расходы персонала" #. module: hr_expense #: field:hr.expense.expense,id:0 @@ -443,7 +443,7 @@ msgstr "Расход" #: field:hr.expense.expense,line_ids:0 #: view:hr.expense.line:0 msgid "Expense Lines" -msgstr "Позиции расходов" +msgstr "" #. module: hr_expense #: field:hr.expense.report,delay_confirm:0 @@ -481,7 +481,7 @@ msgstr "" #. module: hr_expense #: selection:hr.expense.expense,state:0 msgid "Waiting Approval" -msgstr "" +msgstr "Ожидает утверждения" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_draftexpenses0 @@ -527,7 +527,7 @@ msgstr "" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_approveexpense0 msgid "Expense is approved." -msgstr "Утвержденные расходы." +msgstr "Расход утвержден" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -553,7 +553,7 @@ msgstr "" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_draftexpenses0 msgid "Draft Expenses" -msgstr "Плановые расходы" +msgstr "Черновики расходов" #. module: hr_expense #: field:hr.expense.expense,message_is_follower:0 @@ -590,7 +590,7 @@ msgstr "Пользователь" #. module: hr_expense #: model:ir.ui.menu,name:hr_expense.menu_hr_product msgid "Expense Categories" -msgstr "" +msgstr "Категории расходов" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -626,7 +626,7 @@ msgstr "" #. module: hr_expense #: report:hr.expense:0 msgid "HR Expenses" -msgstr "Расходы отдела кадров" +msgstr "Расходы персонала" #. module: hr_expense #: field:hr.expense.expense,message_summary:0 @@ -636,7 +636,7 @@ msgstr "" #. module: hr_expense #: model:product.template,name:hr_expense.car_travel_product_template msgid "Car Travel Expenses" -msgstr "" +msgstr "Расходы на автомобиль" #. module: hr_expense #: view:hr.expense.expense:0 @@ -656,7 +656,7 @@ msgstr "Сотрудник проверяет свой отчет о расхо #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expenses to Invoice" -msgstr "" +msgstr "Расходы к выставлению в счет" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_supplierinvoice0 @@ -677,7 +677,7 @@ msgstr "" #. module: hr_expense #: view:hr.expense.report:0 msgid "Approved Expenses" -msgstr "" +msgstr "Утвержденные расходы" #. module: hr_expense #: report:hr.expense:0 @@ -710,12 +710,12 @@ msgstr "Пересчитать" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expense Date" -msgstr "" +msgstr "Дата расхода" #. module: hr_expense #: field:hr.expense.expense,user_valid:0 msgid "Validation By" -msgstr "" +msgstr "Проверяющий" #. module: hr_expense #: view:hr.expense.expense:0 @@ -746,7 +746,7 @@ msgstr "Этот документ должен быть датирован и п #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 msgid "Expense is refused." -msgstr "Неподтвержденные орасходы" +msgstr "Расход отклонен." #. module: hr_expense #: model:ir.actions.act_window,help:hr_expense.product_normal_form_view_installer @@ -772,7 +772,7 @@ msgstr "Утвержден" #: field:hr.expense.report,product_id:0 #: model:ir.model,name:hr_expense.model_product_product msgid "Product" -msgstr "Продукция" +msgstr "Продукт" #. module: hr_expense #: report:hr.expense:0 @@ -817,7 +817,7 @@ msgstr "Может быть расходом" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_confirmed msgid "Expense confirmed, waiting confirmation" -msgstr "" +msgstr "Расход ожидает утверждения" #. module: hr_expense #: report:hr.expense:0 @@ -854,7 +854,7 @@ msgstr "Название" #: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" -msgstr "" +msgstr "Вы можете удалять только черновики расходов!" #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 @@ -879,7 +879,7 @@ msgstr "" #. module: hr_expense #: field:hr.expense.line,name:0 msgid "Expense Note" -msgstr "" +msgstr "Описание расхода" #. module: hr_expense #: view:hr.expense.expense:0 @@ -899,7 +899,7 @@ msgstr "Последовательность" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_confirmexpense0 msgid "Expense is confirmed." -msgstr "Расход подтверждается" +msgstr "Расход подтвержден." #. module: hr_expense #: view:hr.expense.expense:0 @@ -918,7 +918,7 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Accounting" -msgstr "" +msgstr "Учёт" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sl.po b/addons/hr_expense/i18n/sl.po index b062f6d5a44..fff507ae157 100644 --- a/addons/hr_expense/i18n/sl.po +++ b/addons/hr_expense/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -30,12 +30,12 @@ msgstr "Postavka izdatkov" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_reimbursement0 msgid "The accoutant reimburse the expenses" -msgstr "" +msgstr "Računovodja nadomesti stroške" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "" +msgstr "Strošek odobren" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 @@ -52,7 +52,7 @@ msgstr "Združeno po..." #. module: hr_expense #: model:product.template,name:hr_expense.air_ticket_product_template msgid "Air Ticket" -msgstr "" +msgstr "Letalska vozovnica" #. module: hr_expense #: report:hr.expense:0 @@ -70,7 +70,7 @@ msgstr "Oddelek" #. module: hr_expense #: view:hr.expense.expense:0 msgid "New Expense" -msgstr "" +msgstr "Nov strošek" #. module: hr_expense #: field:hr.expense.line,uom_id:0 @@ -112,6 +112,8 @@ msgid "" "No expense journal found. Please make sure you have a journal with type " "'purchase' configured." msgstr "" +"Dnevnik stroškov ne obstaja. Prosimo preverite, če ste nastavili dnevnik " +"tipa 'nabava'." #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_report @@ -135,6 +137,7 @@ msgid "" "Date of the acceptation of the sheet expense. It's filled when the button " "Accept is pressed." msgstr "" +"Datum sprejema poročila stroškov. Izpolni se ob potrditvi gumba 'Sprejmi'." #. module: hr_expense #: view:hr.expense.expense:0 @@ -159,7 +162,7 @@ msgstr "Napaka!" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_refused msgid "Expense refused" -msgstr "" +msgstr "Strošek zavrnjen" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.hr_expense_product @@ -170,7 +173,7 @@ msgstr "Izdelki" #. module: hr_expense #: view:hr.expense.report:0 msgid "Confirm Expenses" -msgstr "" +msgstr "Potrdi stroške" #. module: hr_expense #: selection:hr.expense.report,state:0 @@ -180,7 +183,7 @@ msgstr "Preklicano" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_refused0 msgid "The direct manager refuses the sheet.Reset as draft." -msgstr "" +msgstr "Direktno nadrejeni vodja je zavrnil poročilo. Nastavi kot osnutek." #. module: hr_expense #: help:hr.expense.expense,message_unread:0 @@ -223,6 +226,7 @@ msgid "" "Date of the confirmation of the sheet expense. It's filled when the button " "Confirm is pressed." msgstr "" +"Datum potrditve poročila stroškov. Napolni se ob pritisku gumba Potrdi." #. module: hr_expense #: view:hr.expense.report:0 @@ -246,7 +250,7 @@ msgstr "Opozorilo" #. module: hr_expense #: report:hr.expense:0 msgid "(Date and signature)" -msgstr "" +msgstr "(Datum in podpis)" #. module: hr_expense #: report:hr.expense:0 @@ -272,17 +276,17 @@ msgstr "Potrdi" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_supplierinvoice0 msgid "The accoutant validates the sheet" -msgstr "" +msgstr "Računovodja potrdi poročilo" #. module: hr_expense #: field:hr.expense.report,delay_valid:0 msgid "Delay to Valid" -msgstr "" +msgstr "Zamik do potrditve" #. module: hr_expense #: help:hr.expense.line,sequence:0 msgid "Gives the sequence order when displaying a list of expense lines." -msgstr "" +msgstr "Določi zaporedje nalogov pri izpisu liste stroškov." #. module: hr_expense #: field:hr.expense.expense,state:0 @@ -342,13 +346,13 @@ msgstr "Skupna cena" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_reinvoicing0 msgid "Some costs may be reinvoices to the customer" -msgstr "" +msgstr "Nekateri stroški se lahko prefakturirajo kupcu" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." -msgstr "" +msgstr "Zaposleni mora imeti stalen naslov." #. module: hr_expense #: view:board.board:0 @@ -365,7 +369,7 @@ msgstr "Ustvarjeno dne" #. module: hr_expense #: model:ir.actions.report.xml,name:hr_expense.hr_expenses msgid "HR expenses" -msgstr "" +msgstr "Stroški zaposlenih" #. module: hr_expense #: field:hr.expense.expense,id:0 @@ -375,7 +379,7 @@ msgstr "Oznaka lista" #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_reimburseexpense0 msgid "Reimburse expense" -msgstr "" +msgstr "Povrnitev stroškov" #. module: hr_expense #: field:hr.expense.expense,journal_id:0 @@ -397,7 +401,7 @@ msgstr "Julij" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_reimburseexpense0 msgid "After creating invoice, reimburse expenses" -msgstr "" +msgstr "Po kreiranju računa povrni stroške" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:121 @@ -408,7 +412,7 @@ msgstr "Opozorilo!" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_reimbursement0 msgid "Reimbursement" -msgstr "" +msgstr "Povračilo" #. module: hr_expense #: field:hr.expense.expense,date_valid:0 @@ -427,7 +431,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_expense.action_hr_expense_report_all #: model:ir.ui.menu,name:hr_expense.menu_hr_expense_report_all msgid "Expenses Analysis" -msgstr "" +msgstr "Analiza stroškov" #. module: hr_expense #: view:hr.expense.expense:0 @@ -442,12 +446,12 @@ msgstr "Strošek" #: field:hr.expense.expense,line_ids:0 #: view:hr.expense.line:0 msgid "Expense Lines" -msgstr "" +msgstr "Vrstice stroškov" #. module: hr_expense #: field:hr.expense.report,delay_confirm:0 msgid "Delay to Confirm" -msgstr "" +msgstr "Zamik do potrditve" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -475,7 +479,7 @@ msgstr "Valuta" #. module: hr_expense #: field:hr.expense.expense,voucher_id:0 msgid "Employee's Receipt" -msgstr "" +msgstr "Prejem zaposlenega" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -485,7 +489,7 @@ msgstr "Čaka Odobritev" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_draftexpenses0 msgid "Employee encode all his expenses" -msgstr "" +msgstr "Zaposleni navede vse svoje stroške" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:453 @@ -494,11 +498,12 @@ msgid "" "Selected Unit of Measure does not belong to the same category as the product " "Unit of Measure" msgstr "" +"Izbrana enota mere ne pripada isti kategoriji kot enota mere proizvoda" #. module: hr_expense #: help:hr.expense.expense,journal_id:0 msgid "The journal used when the expense is done." -msgstr "" +msgstr "Dnevnik, ki se uporabi ko nastane strošek." #. module: hr_expense #: field:hr.expense.expense,note:0 @@ -508,7 +513,7 @@ msgstr "Opomba" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_reimbursereinvoice0 msgid "Create Customer invoice" -msgstr "" +msgstr "Kreiraj račun kupcu" #. module: hr_expense #: selection:hr.expense.report,state:0 @@ -522,6 +527,8 @@ msgid "" "Please configure Default Expense account for Product purchase: " "`property_account_expense_categ`." msgstr "" +"Prosimo, nastavite privzeti konto stroškov za nabavo proizvodov: " +"'property_account_expense_categ'." #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_approveexpense0 @@ -536,7 +543,7 @@ msgstr "Avgust" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_approved0 msgid "The direct manager approves the sheet" -msgstr "" +msgstr "Neposredni vodja potrdi to poročilo" #. module: hr_expense #: view:hr.expense.expense:0 @@ -552,7 +559,7 @@ msgstr "Junij" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_draftexpenses0 msgid "Draft Expenses" -msgstr "" +msgstr "Predlog stroškov" #. module: hr_expense #: field:hr.expense.expense,message_is_follower:0 @@ -562,7 +569,7 @@ msgstr "Je sledilec" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.product_normal_form_view_installer msgid "Review Your Expenses Products" -msgstr "" +msgstr "Preglejte vaše stroškovne prizvode" #. module: hr_expense #: report:hr.expense:0 @@ -589,7 +596,7 @@ msgstr "Uporabnik" #. module: hr_expense #: model:ir.ui.menu,name:hr_expense.menu_hr_product msgid "Expense Categories" -msgstr "" +msgstr "Kategorije stroškov" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -611,11 +618,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za beleženje novih stroškov. \n" +"

\n" +" OpenERP bo zagotovil izvedbo celotnega procesa; stroškovno\n" +" poročilo je potrjeno s strani vodje oz. vodij, zaposleni " +"dobi nadomestilo\n" +" svojih stroškov, nekateri stroški pa morajo biti " +"prefakturirani \n" +" kupcem.\n" +"

\n" +" " #. module: hr_expense #: view:hr.expense.expense:0 msgid "Generate Accounting Entries" -msgstr "" +msgstr "Generiraj knjigovodske transakcije" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -625,7 +643,7 @@ msgstr "Januar" #. module: hr_expense #: report:hr.expense:0 msgid "HR Expenses" -msgstr "" +msgstr "Stroški zaposlenih" #. module: hr_expense #: field:hr.expense.expense,message_summary:0 @@ -635,27 +653,27 @@ msgstr "Povzetek" #. module: hr_expense #: model:product.template,name:hr_expense.car_travel_product_template msgid "Car Travel Expenses" -msgstr "" +msgstr "Potni stroški" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Submit to Manager" -msgstr "" +msgstr "Posreduj vodji" #. module: hr_expense #: view:hr.expense.report:0 msgid "Done Expenses" -msgstr "" +msgstr "Povzročeni stroški" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_confirmedexpenses0 msgid "The employee validates his expense sheet" -msgstr "" +msgstr "Zaposleni potrdi svoje stroškovno poročilo" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expenses to Invoice" -msgstr "" +msgstr "Stroški za fakturiranje" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_supplierinvoice0 @@ -666,7 +684,7 @@ msgstr "Račun dobavitelja" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expenses Sheet" -msgstr "" +msgstr "Poročilo stroškov" #. module: hr_expense #: field:hr.expense.report,voucher_id:0 @@ -676,7 +694,7 @@ msgstr "Prejemek" #. module: hr_expense #: view:hr.expense.report:0 msgid "Approved Expenses" -msgstr "" +msgstr "Odobreni stroški" #. module: hr_expense #: report:hr.expense:0 @@ -709,12 +727,12 @@ msgstr "Ponovno zaračunaj" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expense Date" -msgstr "" +msgstr "Datum stroškov" #. module: hr_expense #: field:hr.expense.expense,user_valid:0 msgid "Validation By" -msgstr "" +msgstr "Potrdil" #. module: hr_expense #: view:hr.expense.expense:0 @@ -740,7 +758,7 @@ msgstr "Sprejmi" #. module: hr_expense #: report:hr.expense:0 msgid "This document must be dated and signed for reimbursement" -msgstr "" +msgstr "Ta dokument mora biti označen z datumom in podpisan za povračilo." #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 @@ -756,6 +774,11 @@ msgid "" "based on real costs, set the cost at 0.00. The user will set the real price " "when recording his expense sheet." msgstr "" +"Določite en proizvod za vsak tip stroška, dovoljenega zaposlenim (potovanje " +"z avtomobilom, hotel, restavracija, itd.) Če izvajate povračila zaposlenim v " +"fiksnem znesku, določite ceno (strošek) in enoto mere za ta proizvod. Če " +"povrnete dejanske stroške, postavite ceno na 0. Uporabnik bo vpisal pravilno " +"ceno, ko bo pripravljal svoje stroškovno poročilo." #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -799,7 +822,7 @@ msgstr "Cena" #. module: hr_expense #: field:hr.expense.report,no_of_account:0 msgid "# of Accounts" -msgstr "" +msgstr "# kontov" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -811,12 +834,12 @@ msgstr "Zavrnjeno" #. module: hr_expense #: field:product.product,hr_expense_ok:0 msgid "Can be Expensed" -msgstr "" +msgstr "Se lahko potroši" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_confirmed msgid "Expense confirmed, waiting confirmation" -msgstr "" +msgstr "Strošek potrjen, čakanje na potrditev" #. module: hr_expense #: report:hr.expense:0 @@ -826,18 +849,18 @@ msgstr "Sklic" #. module: hr_expense #: field:hr.expense.report,employee_id:0 msgid "Employee's Name" -msgstr "" +msgstr "Ime zaposlenega" #. module: hr_expense #: view:hr.expense.report:0 #: field:hr.expense.report,user_id:0 msgid "Validation User" -msgstr "" +msgstr "Uporabnik, ki potrdi" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Accounting Data" -msgstr "" +msgstr "Računovodski podatki" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -853,22 +876,22 @@ msgstr "Ime" #: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" -msgstr "" +msgstr "Izbrišete lahko samo stroške, ki so v osnutku!" #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Ledger Posting" -msgstr "" +msgstr "Izvedba knjiženja" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_approveinvoice0 msgid "Creates supplier invoice." -msgstr "" +msgstr "Ustvari dobaviteljev račun" #. module: hr_expense #: model:product.template,name:hr_expense.hotel_rent_product_template msgid "Hotel Accommodation" -msgstr "" +msgstr "Hotelska nastanitev" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -878,7 +901,7 @@ msgstr "April" #. module: hr_expense #: field:hr.expense.line,name:0 msgid "Expense Note" -msgstr "" +msgstr "Opomba k stroškom" #. module: hr_expense #: view:hr.expense.expense:0 @@ -912,7 +935,7 @@ msgstr "Stroški" #. module: hr_expense #: help:product.product,hr_expense_ok:0 msgid "Specify if the product can be selected in an HR expense line." -msgstr "" +msgstr "Določite, če je proizvod lahko izbran kot strošek zaposlenih." #. module: hr_expense #: view:hr.expense.expense:0 @@ -935,7 +958,7 @@ msgstr "Skupaj" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_reinvoicing0 msgid "Reinvoicing" -msgstr "" +msgstr "Prefakturiranje" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Neveljaven XML za arhitekturo pogleda." diff --git a/addons/hr_expense/i18n/sq.po b/addons/hr_expense/i18n/sq.po index b763fdfa70f..bb287de0cd0 100644 --- a/addons/hr_expense/i18n/sq.po +++ b/addons/hr_expense/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:52+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:13+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sr.po b/addons/hr_expense/i18n/sr.po index b79b5fc49a7..ebd590e2f36 100644 --- a/addons/hr_expense/i18n/sr.po +++ b/addons/hr_expense/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sr@latin.po b/addons/hr_expense/i18n/sr@latin.po index 9631f77f010..bbf4fa3bcbd 100644 --- a/addons/hr_expense/i18n/sr@latin.po +++ b/addons/hr_expense/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sv.po b/addons/hr_expense/i18n/sv.po index ac358feaf6a..ec7f8be800f 100644 --- a/addons/hr_expense/i18n/sv.po +++ b/addons/hr_expense/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/th.po b/addons/hr_expense/i18n/th.po index 80834fac33e..cdcf5f23490 100644 --- a/addons/hr_expense/i18n/th.po +++ b/addons/hr_expense/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/tlh.po b/addons/hr_expense/i18n/tlh.po index 64774bdc0e5..8f6a7fbd7b5 100644 --- a/addons/hr_expense/i18n/tlh.po +++ b/addons/hr_expense/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/tr.po b/addons/hr_expense/i18n/tr.po index 5ef8b9cdbbf..a8303590dda 100644 --- a/addons/hr_expense/i18n/tr.po +++ b/addons/hr_expense/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/uk.po b/addons/hr_expense/i18n/uk.po index cf91492e9aa..0dfa583e924 100644 --- a/addons/hr_expense/i18n/uk.po +++ b/addons/hr_expense/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/vi.po b/addons/hr_expense/i18n/vi.po index 333cc4b63ec..980e24906be 100644 --- a/addons/hr_expense/i18n/vi.po +++ b/addons/hr_expense/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/zh_CN.po b/addons/hr_expense/i18n/zh_CN.po index f60bdc2c2a6..30acde15ccc 100644 --- a/addons/hr_expense/i18n/zh_CN.po +++ b/addons/hr_expense/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/zh_TW.po b/addons/hr_expense/i18n/zh_TW.po index 29cf442efbc..4ea83a7b2cd 100644 --- a/addons/hr_expense/i18n/zh_TW.po +++ b/addons/hr_expense/i18n/zh_TW.po @@ -7,57 +7,57 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2009-01-30 13:19+0000\n" -"Last-Translator: <>\n" +"PO-Revision-Date: 2013-12-27 04:48+0000\n" +"Last-Translator: Andy Cheng \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-09-12 05:53+0000\n" -"X-Generator: Launchpad (build 16761)\n" +"X-Launchpad-Export-Date: 2014-01-28 06:14+0000\n" +"X-Generator: Launchpad (build 16914)\n" #. module: hr_expense #: view:hr.expense.expense:0 #: model:process.node,name:hr_expense.process_node_confirmedexpenses0 msgid "Confirmed Expenses" -msgstr "" +msgstr "已確認費用報支" #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_line msgid "Expense Line" -msgstr "" +msgstr "費用報支項目" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_reimbursement0 msgid "The accoutant reimburse the expenses" -msgstr "" +msgstr "會計師報支費用" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "" +msgstr "費用報支已核准" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 #: field:hr.expense.report,date_confirm:0 msgid "Confirmation Date" -msgstr "" +msgstr "確認日期" #. module: hr_expense #: view:hr.expense.expense:0 #: view:hr.expense.report:0 msgid "Group By..." -msgstr "" +msgstr "分組..." #. module: hr_expense #: model:product.template,name:hr_expense.air_ticket_product_template msgid "Air Ticket" -msgstr "" +msgstr "機票" #. module: hr_expense #: report:hr.expense:0 msgid "Validated By" -msgstr "" +msgstr "已完成審核" #. module: hr_expense #: view:hr.expense.expense:0 @@ -65,45 +65,45 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,department_id:0 msgid "Department" -msgstr "" +msgstr "部門" #. module: hr_expense #: view:hr.expense.expense:0 msgid "New Expense" -msgstr "" +msgstr "新增費用報支" #. module: hr_expense #: field:hr.expense.line,uom_id:0 #: view:product.product:0 msgid "Unit of Measure" -msgstr "" +msgstr "度量單位" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "March" -msgstr "" +msgstr "三月" #. module: hr_expense #: field:hr.expense.expense,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "未讀訊息" #. module: hr_expense #: field:hr.expense.expense,company_id:0 #: view:hr.expense.report:0 #: field:hr.expense.report,company_id:0 msgid "Company" -msgstr "" +msgstr "公司" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Set to Draft" -msgstr "" +msgstr "設為草稿" #. module: hr_expense #: view:hr.expense.expense:0 msgid "To Pay" -msgstr "" +msgstr "應付款" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 @@ -111,12 +111,12 @@ msgstr "" msgid "" "No expense journal found. Please make sure you have a journal with type " "'purchase' configured." -msgstr "" +msgstr "未找到費用日記帳。請確認您是否有設置型態為「採購」的日記帳。" #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_report msgid "Expenses Statistics" -msgstr "" +msgstr "費用報支統計" #. module: hr_expense #: view:hr.expense.expense:0 @@ -127,7 +127,7 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,day:0 msgid "Day" -msgstr "" +msgstr "日" #. module: hr_expense #: help:hr.expense.expense,date_valid:0 @@ -139,12 +139,12 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Notes" -msgstr "" +msgstr "備註" #. module: hr_expense #: field:hr.expense.expense,message_ids:0 msgid "Messages" -msgstr "" +msgstr "訊息" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 @@ -154,28 +154,28 @@ msgstr "" #: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" -msgstr "" +msgstr "錯誤!" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_refused msgid "Expense refused" -msgstr "" +msgstr "費用報支被拒" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.hr_expense_product #: view:product.product:0 msgid "Products" -msgstr "" +msgstr "產品" #. module: hr_expense #: view:hr.expense.report:0 msgid "Confirm Expenses" -msgstr "" +msgstr "確認費用報支" #. module: hr_expense #: selection:hr.expense.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "已取消" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_refused0 @@ -185,22 +185,22 @@ msgstr "" #. module: hr_expense #: help:hr.expense.expense,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "當有新訊息時通知您。" #. module: hr_expense #: selection:hr.expense.report,state:0 msgid "Waiting confirmation" -msgstr "" +msgstr "等待確認中" #. module: hr_expense #: selection:hr.expense.report,state:0 msgid "Accepted" -msgstr "" +msgstr "已接受" #. module: hr_expense #: field:hr.expense.line,ref:0 msgid "Reference" -msgstr "" +msgstr "參考" #. module: hr_expense #: report:hr.expense:0 @@ -228,7 +228,7 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,nbr:0 msgid "# of Lines" -msgstr "" +msgstr "項目數量" #. module: hr_expense #: help:hr.expense.expense,message_summary:0 @@ -241,38 +241,38 @@ msgstr "" #: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" -msgstr "" +msgstr "警告" #. module: hr_expense #: report:hr.expense:0 msgid "(Date and signature)" -msgstr "" +msgstr "(日期與簽名)" #. module: hr_expense #: report:hr.expense:0 msgid "Total:" -msgstr "" +msgstr "合計:" #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_refuseexpense0 msgid "Refuse expense" -msgstr "" +msgstr "拒絕費用報支" #. module: hr_expense #: field:hr.expense.report,price_average:0 msgid "Average Price" -msgstr "" +msgstr "平均價格" #. module: hr_expense #: view:hr.expense.expense:0 #: model:process.transition.action,name:hr_expense.process_transition_action_confirm0 msgid "Confirm" -msgstr "" +msgstr "確認" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_supplierinvoice0 msgid "The accoutant validates the sheet" -msgstr "" +msgstr "會計師核可該試算表" #. module: hr_expense #: field:hr.expense.report,delay_valid:0 @@ -289,29 +289,29 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,state:0 msgid "Status" -msgstr "" +msgstr "狀態" #. module: hr_expense #: field:hr.expense.line,analytic_account:0 #: view:hr.expense.report:0 #: field:hr.expense.report,analytic_account:0 msgid "Analytic account" -msgstr "" +msgstr "分析科目" #. module: hr_expense #: field:hr.expense.report,date:0 msgid "Date " -msgstr "" +msgstr "日期 " #. module: hr_expense #: view:hr.expense.report:0 msgid "Waiting" -msgstr "" +msgstr "等待中" #. module: hr_expense #: field:hr.expense.expense,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "關注者" #. module: hr_expense #: report:hr.expense:0 @@ -319,25 +319,25 @@ msgstr "" #: field:hr.expense.expense,employee_id:0 #: view:hr.expense.report:0 msgid "Employee" -msgstr "" +msgstr "員工" #. module: hr_expense #: view:hr.expense.expense:0 #: selection:hr.expense.expense,state:0 msgid "New" -msgstr "" +msgstr "新增" #. module: hr_expense #: report:hr.expense:0 #: field:hr.expense.report,product_qty:0 msgid "Qty" -msgstr "" +msgstr "數量" #. module: hr_expense #: view:hr.expense.report:0 #: field:hr.expense.report,price_total:0 msgid "Total Price" -msgstr "" +msgstr "總價" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_reinvoicing0 @@ -348,34 +348,34 @@ msgstr "" #: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." -msgstr "" +msgstr "員工必須要有住家住址" #. module: hr_expense #: view:board.board:0 #: view:hr.expense.expense:0 #: model:ir.actions.act_window,name:hr_expense.action_my_expense msgid "My Expenses" -msgstr "" +msgstr "我的費用報支" #. module: hr_expense #: view:hr.expense.report:0 msgid "Creation Date" -msgstr "" +msgstr "建立日期" #. module: hr_expense #: model:ir.actions.report.xml,name:hr_expense.hr_expenses msgid "HR expenses" -msgstr "" +msgstr "人資費用報支" #. module: hr_expense #: field:hr.expense.expense,id:0 msgid "Sheet ID" -msgstr "" +msgstr "試算表ID" #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_reimburseexpense0 msgid "Reimburse expense" -msgstr "" +msgstr "報銷費用" #. module: hr_expense #: field:hr.expense.expense,journal_id:0 @@ -387,34 +387,34 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,no_of_products:0 msgid "# of Products" -msgstr "" +msgstr "產品數" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "July" -msgstr "" +msgstr "七月" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_reimburseexpense0 msgid "After creating invoice, reimburse expenses" -msgstr "" +msgstr "建立發票後,報銷費用" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" -msgstr "" +msgstr "警告!" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_reimbursement0 msgid "Reimbursement" -msgstr "" +msgstr "報銷" #. module: hr_expense #: field:hr.expense.expense,date_valid:0 #: field:hr.expense.report,date_valid:0 msgid "Validation Date" -msgstr "" +msgstr "核可日期" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:226 @@ -427,7 +427,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_expense.action_hr_expense_report_all #: model:ir.ui.menu,name:hr_expense.menu_hr_expense_report_all msgid "Expenses Analysis" -msgstr "" +msgstr "費用分析" #. module: hr_expense #: view:hr.expense.expense:0 @@ -552,7 +552,7 @@ msgstr "" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_draftexpenses0 msgid "Draft Expenses" -msgstr "" +msgstr "費用報支草稿" #. module: hr_expense #: field:hr.expense.expense,message_is_follower:0 @@ -625,7 +625,7 @@ msgstr "" #. module: hr_expense #: report:hr.expense:0 msgid "HR Expenses" -msgstr "" +msgstr "人資費用報支" #. module: hr_expense #: field:hr.expense.expense,message_summary:0 @@ -645,7 +645,7 @@ msgstr "" #. module: hr_expense #: view:hr.expense.report:0 msgid "Done Expenses" -msgstr "" +msgstr "完成申報費用" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_confirmedexpenses0 @@ -666,7 +666,7 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expenses Sheet" -msgstr "" +msgstr "費用報支表" #. module: hr_expense #: field:hr.expense.report,voucher_id:0 @@ -907,7 +907,7 @@ msgstr "" #: model:ir.ui.menu,name:hr_expense.next_id_49 #: model:product.category,name:hr_expense.cat_expense msgid "Expenses" -msgstr "" +msgstr "費用報支" #. module: hr_expense #: help:product.product,hr_expense_ok:0 diff --git a/addons/hr_expense/report/hr_expense_report_view.xml b/addons/hr_expense/report/hr_expense_report_view.xml index be1588f3c3b..45a72fa0630 100644 --- a/addons/hr_expense/report/hr_expense_report_view.xml +++ b/addons/hr_expense/report/hr_expense_report_view.xml @@ -2,41 +2,14 @@ - - hr.expense.report.tree - hr.expense.report - - - - - - - - - - - - - - - - - - - - - - - - hr.expense.report.graph hr.expense.report - - - - + + + + @@ -79,7 +52,7 @@ Expenses Analysis hr.expense.report form - tree,graph + graph {'search_default_year':1,'search_default_month':1,'search_default_employee':1,'group_by_no_leaf':1,'group_by':[]}
diff --git a/addons/hr_expense/static/img/air_ticket-image.jpg b/addons/hr_expense/static/img/air_ticket-image.jpg new file mode 100644 index 00000000000..04ade76969b Binary files /dev/null and b/addons/hr_expense/static/img/air_ticket-image.jpg differ diff --git a/addons/hr_expense/static/img/car_travel-image.jpg b/addons/hr_expense/static/img/car_travel-image.jpg new file mode 100644 index 00000000000..fad495b0976 Binary files /dev/null and b/addons/hr_expense/static/img/car_travel-image.jpg differ diff --git a/addons/hr_expense/static/img/hotel_rent-image.jpg b/addons/hr_expense/static/img/hotel_rent-image.jpg new file mode 100644 index 00000000000..836b05147d1 Binary files /dev/null and b/addons/hr_expense/static/img/hotel_rent-image.jpg differ diff --git a/addons/hr_gamification/__init__.py b/addons/hr_gamification/__init__.py new file mode 100644 index 00000000000..1896704c7fc --- /dev/null +++ b/addons/hr_gamification/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 OpenERP SA (). +# +# 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 models +import wizard \ No newline at end of file diff --git a/addons/hr_gamification/__openerp__.py b/addons/hr_gamification/__openerp__.py new file mode 100644 index 00000000000..c75a4454437 --- /dev/null +++ b/addons/hr_gamification/__openerp__.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 OpenERP SA (). +# +# 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': 'HR Gamification', + 'version': '1.0', + 'author': 'OpenERP SA', + 'category': 'hidden', + 'depends': ['gamification', 'hr'], + 'description': """Use the HR ressources for the gamification process. + +The HR officer can now manage challenges and badges. +This allow the user to send badges to employees instead of simple users. +Badge received are displayed on the user profile. +""", + 'data': [ + 'security/ir.model.access.csv', + 'security/gamification_security.xml', + 'wizard/grant_badge.xml', + 'views/gamification.xml', + ], + 'js': ['static/src/js/gamification.js'], +} diff --git a/addons/hr_gamification/models/__init__.py b/addons/hr_gamification/models/__init__.py new file mode 100644 index 00000000000..51cf01dfa09 --- /dev/null +++ b/addons/hr_gamification/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 OpenERP SA (). +# +# 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 gamification diff --git a/addons/hr_gamification/models/gamification.py b/addons/hr_gamification/models/gamification.py new file mode 100644 index 00000000000..b2aa9039cb1 --- /dev/null +++ b/addons/hr_gamification/models/gamification.py @@ -0,0 +1,113 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2013 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 +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see +# +############################################################################## + +from openerp.osv import fields, osv + + +class hr_gamification_badge_user(osv.Model): + """User having received a badge""" + + _name = 'gamification.badge.user' + _inherit = ['gamification.badge.user'] + + _columns = { + 'employee_id': fields.many2one("hr.employee", string='Employee'), + } + + def _check_employee_related_user(self, cr, uid, ids, context=None): + for badge_user in self.browse(cr, uid, ids, context=context): + if badge_user.user_id and badge_user.employee_id: + if badge_user.employee_id not in badge_user.user_id.employee_ids: + return False + return True + + _constraints = [ + (_check_employee_related_user, "The selected employee does not correspond to the selected user.", ['employee_id']), + ] + + +class gamification_badge(osv.Model): + _name = 'gamification.badge' + _inherit = ['gamification.badge'] + + def get_granted_employees(self, cr, uid, badge_ids, context=None): + if context is None: + context = {} + + employee_ids = [] + badge_user_ids = self.pool.get('gamification.badge.user').search(cr, uid, [('badge_id', 'in', badge_ids), ('employee_id', '!=', False)], context=context) + for badge_user in self.pool.get('gamification.badge.user').browse(cr, uid, badge_user_ids, context): + employee_ids.append(badge_user.employee_id.id) + # remove duplicates + employee_ids = list(set(employee_ids)) + return { + 'type': 'ir.actions.act_window', + 'name': 'Granted Employees', + 'view_mode': 'kanban,tree,form', + 'view_type': 'form', + 'res_model': 'hr.employee', + 'domain': [('id', 'in', employee_ids)] + } + + +class hr_employee(osv.osv): + _name = "hr.employee" + _inherit = "hr.employee" + + def _get_employee_goals(self, cr, uid, ids, field_name, arg, context=None): + """Return the list of goals assigned to the employee""" + res = {} + for employee in self.browse(cr, uid, ids, context=context): + res[employee.id] = self.pool.get('gamification.goal').search(cr,uid,[('user_id', '=', employee.user_id.id), ('challenge_id.category', '=', 'hr')], context=context) + return res + + def _get_employee_badges(self, cr, uid, ids, field_name, arg, context=None): + """Return the list of badge_users assigned to the employee""" + res = {} + for employee in self.browse(cr, uid, ids, context=context): + res[employee.id] = self.pool.get('gamification.badge.user').search(cr, uid, [ + '|', + ('employee_id', '=', employee.id), + '&', + ('employee_id', '=', False), + ('user_id', '=', employee.user_id.id) + ], context=context) + return res + + def _has_badges(self, cr, uid, ids, field_name, arg, context=None): + """Return the list of badge_users assigned to the employee""" + res = {} + for employee in self.browse(cr, uid, ids, context=context): + employee_badge_ids = self.pool.get('gamification.badge.user').search(cr, uid, [ + '|', + ('employee_id', '=', employee.id), + '&', + ('employee_id', '=', False), + ('user_id', '=', employee.user_id.id) + ], context=context) + res[employee.id] = len(employee_badge_ids) > 0 + return res + + _columns = { + 'goal_ids': fields.function(_get_employee_goals, type="one2many", obj='gamification.goal', string="Employee HR Goals"), + 'badge_ids': fields.function(_get_employee_badges, type="one2many", obj='gamification.badge.user', string="Employee Badges"), + 'has_badges': fields.function(_has_badges, type="boolean", string="Has Badges"), + } diff --git a/addons/hr_gamification/security/gamification_security.xml b/addons/hr_gamification/security/gamification_security.xml new file mode 100644 index 00000000000..e0f9a6cf918 --- /dev/null +++ b/addons/hr_gamification/security/gamification_security.xml @@ -0,0 +1,17 @@ + + + + + + HR Officer can see any goal + + + + + + + [(1, '=', 1)] + + + + diff --git a/addons/hr_gamification/security/ir.model.access.csv b/addons/hr_gamification/security/ir.model.access.csv new file mode 100644 index 00000000000..b89db7cd104 --- /dev/null +++ b/addons/hr_gamification/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +challenge_officer,"Challenge Officer",gamification.model_gamification_challenge,base.group_hr_user,1,1,1,1 +challenge_line_officer,"Challenge Line Officer",gamification.model_gamification_challenge_line,base.group_hr_user,1,1,1,1 +badge_officer,"Badge Officer",gamification.model_gamification_badge,base.group_hr_user,1,1,1,1 +badge_user_officer,"Badge-user Officer",gamification.model_gamification_badge_user,base.group_hr_user,1,1,1,1 \ No newline at end of file diff --git a/addons/hr_gamification/static/src/js/gamification.js b/addons/hr_gamification/static/src/js/gamification.js new file mode 100644 index 00000000000..a9126464a10 --- /dev/null +++ b/addons/hr_gamification/static/src/js/gamification.js @@ -0,0 +1,19 @@ +openerp.hr_gamification = function(instance) { + instance.web_kanban.KanbanRecord.include({ + on_card_clicked: function() { + if (this.view.dataset.model === 'gamification.badge.user') { + var action = { + type: 'ir.actions.act_window', + res_model: 'gamification.badge', + view_mode: 'form', + view_type: 'form,kanban,tree', + views: [[false, 'form']], + res_id: this.record.badge_id.raw_value[0] + }; + this.do_action(action); + } else { + this._super.apply(this, arguments); + } + } + }); +}; diff --git a/addons/hr_gamification/views/gamification.xml b/addons/hr_gamification/views/gamification.xml new file mode 100644 index 00000000000..e2d45948b95 --- /dev/null +++ b/addons/hr_gamification/views/gamification.xml @@ -0,0 +1,104 @@ + + + + + + Badge Form + gamification.badge + + + + - -
    +
    +
    + + +
    -
    -
    -
    -
    -
    -
    -
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + + +
    -
    + +
    +
    +
    +
    +
    +
    +
    +
    + + +
    + +
    +
    +
    +

    Loading

    +
    +
    +
    + +
    + <!--[if IE]>
    @@ -49,17 +101,36 @@ - -
    - -
    +
    + 0 +
    +
    - - -
    -
    +
    +
    - +
    + +
    +
    +
    + + +
    + +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    @@ -73,12 +144,12 @@ -
    +
    -
    +
    @@ -105,67 +176,66 @@ -
  1. +
    - +
    -
  2. +
    -
  3. + -
  4. +
    -
    - +
    -
    -
    -
      -
    -
    +
    +
    +
    +
    -
    -
      -
    +
    +
    +
    -
    -
    +
    @@ -188,7 +258,6 @@
    -

    Product Weighting

    @@ -205,7 +274,7 @@ - +

    @@ -213,47 +282,36 @@
    -
    -

    Payment

    -
    -
    -
    -
    - - Total: +
    +
    +
    +
    +
    +
    + + Paid: - +
    -
    -
    -
    -
    + -
    -

    Receipt

    +
    @@ -263,7 +321,7 @@
    -

    Welcome

    +

    Welcome

    Please scan an item or your member card

    @@ -276,15 +334,15 @@ -
    -

    Please scan an item

    +
    +

    Please scan an item

    -

    Payment

    +

    Payment

    Please insert your card in the reader and follow the instructions to complete @@ -295,18 +353,11 @@

    -

    Please put your product on the scale

    +

    Please put your product on the scale

    - -
    - - -
    -
    -