diff --git a/addons/account/account.py b/addons/account/account.py index acf27c42392..c2e75e889f0 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -650,10 +650,10 @@ class account_account(osv.osv): if line_obj.search(cr, uid, [('account_id', 'in', account_ids)]): #Check for 'Closed' type if old_type == 'closed' and new_type !='closed': - raise osv.except_osv(_('Warning !'), _("You cannot change the type of account from 'Closed' to any other type as it contains journal items!")) + raise osv.except_osv(_('Warning!'), _("You cannot change the type of account from 'Closed' to any other type as it contains journal items!")) # Forbid to change an account type for restricted_groups as it contains journal items (or if one of its children does) if (new_type in restricted_groups): - raise osv.except_osv(_('Warning !'), _("You cannot change the type of account to '%s' type as it contains journal items!") % (new_type,)) + raise osv.except_osv(_('Warning!'), _("You cannot change the type of account to '%s' type as it contains journal items!") % (new_type,)) return True @@ -1006,8 +1006,7 @@ class account_period(osv.osv): def find(self, cr, uid, dt=None, context=None): if context is None: context = {} if not dt: - dt = fields.date.context_today(self,cr,uid,context=context) -#CHECKME: shouldn't we check the state of the period? + dt = fields.date.context_today(self, cr, uid, context=context) args = [('date_start', '<=' ,dt), ('date_stop', '>=', dt)] if context.get('company_id', False): args.append(('company_id', '=', context['company_id'])) @@ -1015,17 +1014,21 @@ class account_period(osv.osv): company_id = self.pool.get('res.users').browse(cr, uid, uid, context=context).company_id.id args.append(('company_id', '=', company_id)) result = [] + #WARNING: in next version the default value for account_periof_prefer_normal will be True if context.get('account_period_prefer_normal'): # look for non-special periods first, and fallback to all if no result is found result = self.search(cr, uid, args + [('special', '=', False)], context=context) if not result: result = self.search(cr, uid, args, context=context) if not result: - raise osv.except_osv(_('Error !'), _('There is no period defined for this date: %s.\nPlease create one.')%dt) + raise osv.except_osv(_('Error!'), _('There is no period defined for this date: %s.\nPlease create one.')%dt) return result def action_draft(self, cr, uid, ids, *args): mode = 'draft' + for period in self.browse(cr, uid, ids): + if period.fiscalyear_id.state == 'done': + raise osv.except_osv(_('Warning!'), _('You can not re-open a period which belongs to closed fiscal year')) cr.execute('update account_journal_period set state=%s where period_id in %s', (mode, tuple(ids),)) cr.execute('update account_period set state=%s where id in %s', (mode, tuple(ids),)) return True @@ -1037,9 +1040,15 @@ class account_period(osv.osv): context = {} ids = [] if name: - ids = self.search(cr, user, [('code','ilike',name)]+ args, limit=limit) + ids = self.search(cr, user, + [('code', 'ilike', name)] + args, + limit=limit, + context=context) if not ids: - ids = self.search(cr, user, [('name',operator,name)]+ args, limit=limit) + ids = self.search(cr, user, + [('name', operator, name)] + args, + limit=limit, + context=context) return self.name_get(cr, user, ids, context=context) def write(self, cr, uid, ids, vals, context=None): @@ -1062,10 +1071,14 @@ class account_period(osv.osv): raise osv.except_osv(_('Error!'), _('You should choose the periods that belong to the same company.')) if period_date_start > period_date_stop: raise osv.except_osv(_('Error!'), _('Start period should precede then end period.')) + + # /!\ We do not include a criterion on the company_id field below, to allow producing consolidated reports + # on multiple companies. It will only work when start/end periods are selected and no fiscal year is chosen. + #for period from = january, we want to exclude the opening period (but it has same date_from, so we have to check if period_from is special or not to include that clause or not in the search). if period_from.special: - return self.search(cr, uid, [('date_start', '>=', period_date_start), ('date_stop', '<=', period_date_stop), ('company_id', '=', company1_id)]) - return self.search(cr, uid, [('date_start', '>=', period_date_start), ('date_stop', '<=', period_date_stop), ('company_id', '=', company1_id), ('special', '=', False)]) + return self.search(cr, uid, [('date_start', '>=', period_date_start), ('date_stop', '<=', period_date_stop)]) + return self.search(cr, uid, [('date_start', '>=', period_date_start), ('date_stop', '<=', period_date_stop), ('special', '=', False)]) account_period() @@ -1150,6 +1163,29 @@ class account_move(osv.osv): _description = "Account Entry" _order = 'id desc' + def account_move_prepare(self, cr, uid, journal_id, date=False, ref='', company_id=False, context=None): + ''' + Prepares and returns a dictionary of values, ready to be passed to create() based on the parameters received. + ''' + if not date: + date = fields.date.today() + period_obj = self.pool.get('account.period') + if not company_id: + user = self.pool.get('res.users').browse(cr, uid, uid, context=context) + company_id = user.company_id.id + if context is None: + context = {} + #put the company in context to find the good period + ctx = context.copy() + ctx.update({'company_id': company_id, 'account_period_prefer_normal': True}) + return { + 'journal_id': journal_id, + 'date': date, + 'period_id': period_obj.find(cr, uid, date, context=ctx)[0], + 'ref': ref, + 'company_id': company_id, + } + def name_search(self, cr, user, name, args=None, operator='ilike', context=None, limit=80): """ Returns a list of tupples containing id, name, as internally it is called {def name_get} @@ -1357,6 +1393,7 @@ class account_move(osv.osv): 'ref':False, 'balance':False, 'account_tax_id':False, + 'statement_id': False, }) if 'journal_id' in vals and vals.get('journal_id', False): @@ -1393,6 +1430,7 @@ class account_move(osv.osv): context = {} if context is None else context.copy() default.update({ 'state':'draft', + 'ref': False, 'name':'/', }) context.update({ @@ -1652,7 +1690,7 @@ class account_move_reconcile(osv.osv): elif reconcile.line_partial_ids: first_partner = reconcile.line_partial_ids[0].partner_id.id move_lines = reconcile.line_partial_ids - if any([line.partner_id.id != first_partner for line in move_lines]): + if any([(line.account_id.type in ('receivable', 'payable') and line.partner_id.id != first_partner) for line in move_lines]): return False return True @@ -1768,7 +1806,8 @@ class account_tax_code(osv.osv): if context.get('period_id', False): period_id = context['period_id'] else: - period_id = self.pool.get('account.period').find(cr, uid) + ctx = dict(context, account_period_prefer_normal=True) + period_id = self.pool.get('account.period').find(cr, uid, context=ctx) if not period_id: return dict.fromkeys(ids, 0.0) period_id = period_id[0] @@ -1838,6 +1877,12 @@ class account_tax_code(osv.osv): account_tax_code() +def get_precision_tax(): + def change_digit_tax(cr): + res = pooler.get_pool(cr.dbname).get('decimal.precision').precision_get(cr, SUPERUSER_ID, 'Account') + return (16, res+3) + return change_digit_tax + class account_tax(osv.osv): """ A tax object. @@ -1850,12 +1895,13 @@ class account_tax(osv.osv): return result in the context Ex: result=round(price_unit*0.21,4) """ - - def get_precision_tax(): - def change_digit_tax(cr): - res = pooler.get_pool(cr.dbname).get('decimal.precision').precision_get(cr, SUPERUSER_ID, 'Account') - return (16, res+2) - return change_digit_tax + def copy_data(self, cr, uid, id, default=None, context=None): + if default is None: + default = {} + name = self.read(cr, uid, id, ['name'], context=context)['name'] + default = default.copy() + default.update({'name': name + _(' (Copy)')}) + return super(account_tax, self).copy_data(cr, uid, id, default=default, context=context) _name = 'account.tax' _description = 'Tax' @@ -2278,14 +2324,14 @@ class account_model(osv.osv): move_date = datetime.strptime(move_date,"%Y-%m-%d") for model in self.browse(cr, uid, ids, context=context): ctx = context.copy() - ctx.update({'company_id': model.company_id.id}) + ctx.update({'company_id': model.company_id.id, 'account_period_prefer_normal': True}) period_ids = period_obj.find(cr, uid, dt=context.get('date', False), context=ctx) period_id = period_ids and period_ids[0] or False ctx.update({'journal_id': model.journal_id.id,'period_id': period_id}) try: entry['name'] = model.name%{'year': move_date.strftime('%Y'), 'month': move_date.strftime('%m'), 'date': move_date.strftime('%Y-%m')} except: - raise osv.except_osv(_('Wrong model !'), _('You have a wrong expression "%(...)s" in your model !')) + raise osv.except_osv(_('Wrong Model!'), _('You have a wrong expression "%(...)s" in your model!')) move_id = account_move_obj.create(cr, uid, { 'ref': entry['name'], 'period_id': period_id, @@ -2297,7 +2343,7 @@ class account_model(osv.osv): analytic_account_id = False if line.analytic_account_id: if not model.journal_id.analytic_journal_id: - raise osv.except_osv(_('No Analytic Journal !'),_("You have to define an analytic journal on the '%s' journal!") % (model.journal_id.name,)) + raise osv.except_osv(_('No Analytic Journal!'),_("You have to define an analytic journal on the '%s' journal!") % (model.journal_id.name,)) analytic_account_id = line.analytic_account_id.id val = { 'move_id': move_id, @@ -2782,7 +2828,7 @@ class account_tax_template(osv.osv): 'chart_template_id': fields.many2one('account.chart.template', 'Chart Template', required=True), 'name': fields.char('Tax Name', size=64, required=True), 'sequence': fields.integer('Sequence', required=True, help="The sequence field is used to order the taxes lines from lower sequences to higher ones. The order is important if you have a tax that has several tax children. In this case, the evaluation order is important."), - 'amount': fields.float('Amount', required=True, digits=(14,4), help="For Tax Type percent enter % ratio between 0-1."), + 'amount': fields.float('Amount', required=True, digits_compute=get_precision_tax(), help="For Tax Type percent enter % ratio between 0-1."), 'type': fields.selection( [('percent','Percent'), ('fixed','Fixed'), ('none','None'), ('code','Python Code'), ('balance','Balance')], 'Tax Type', required=True), 'applicable_type': fields.selection( [('true','True'), ('code','Python Code')], 'Applicable Type', required=True, help="If not applicable (computed through a Python code), the tax won't appear on the invoice."), 'domain':fields.char('Domain', size=32, help="This field is only used if you develop your own module allowing developers to create specific taxes in a custom domain."), diff --git a/addons/account/account_bank.py b/addons/account/account_bank.py index 44411cd637a..acb0e640a7a 100644 --- a/addons/account/account_bank.py +++ b/addons/account/account_bank.py @@ -65,12 +65,11 @@ class bank(osv.osv): # Find the code and parent of the bank account to create dig = 6 current_num = 1 - ids = obj_acc.search(cr, uid, [('type','=','liquidity'), ('company_id', '=', bank.company_id.id)], context=context) + ids = obj_acc.search(cr, uid, [('type','=','liquidity'), ('company_id', '=', bank.company_id.id), ('parent_id', '!=', False)], context=context) # No liquidity account exists, no template available if not ids: continue - ref_acc_bank_temp = obj_acc.browse(cr, uid, ids[0], context=context) - ref_acc_bank = ref_acc_bank_temp.parent_id + ref_acc_bank = obj_acc.browse(cr, uid, ids[0], context=context).parent_id while True: new_code = str(ref_acc_bank.code.ljust(dig-len(str(current_num)), '0')) + str(current_num) ids = obj_acc.search(cr, uid, [('code', '=', new_code), ('company_id', '=', bank.company_id.id)]) @@ -82,7 +81,7 @@ class bank(osv.osv): 'name': name, 'code': new_code, 'type': 'liquidity', - 'user_type': ref_acc_bank_temp.user_type.id, + 'user_type': ref_acc_bank.user_type.id, 'reconcile': False, 'parent_id': ref_acc_bank.id, 'company_id': bank.company_id.id, diff --git a/addons/account/account_bank_statement.py b/addons/account/account_bank_statement.py index 8e1a5dd26c6..7a87c34b08a 100644 --- a/addons/account/account_bank_statement.py +++ b/addons/account/account_bank_statement.py @@ -61,7 +61,8 @@ class account_bank_statement(osv.osv): return res def _get_period(self, cr, uid, context=None): - periods = self.pool.get('account.period').find(cr, uid,context=context) + ctx = dict(context or {}, account_period_prefer_normal=True) + periods = self.pool.get('account.period').find(cr, uid, context=ctx) if periods: return periods[0] return False @@ -159,7 +160,7 @@ class account_bank_statement(osv.osv): if context is None: context = {} ctx = context.copy() - ctx.update({'company_id': company_id}) + ctx.update({'company_id': company_id, 'account_period_prefer_normal': True}) pids = period_pool.find(cr, uid, dt=date, context=ctx) if pids: res.update({'period_id': pids[0]}) @@ -420,7 +421,7 @@ class account_bank_statement(osv.osv): for st_line in st.line_ids: if st_line.analytic_account_id: if not st.journal_id.analytic_journal_id: - raise osv.except_osv(_('No Analytic Journal !'),_("You have to assign an analytic journal on the '%s' journal!") % (st.journal_id.name,)) + raise osv.except_osv(_('No Analytic Journal!'),_("You have to assign an analytic journal on the '%s' journal!") % (st.journal_id.name,)) if not st_line.amount: continue st_line_number = self.get_next_st_line_number(cr, uid, st_number, st_line, context) diff --git a/addons/account/account_cash_statement.py b/addons/account/account_cash_statement.py index 86d3b0d24de..bd053b22352 100644 --- a/addons/account/account_cash_statement.py +++ b/addons/account/account_cash_statement.py @@ -253,7 +253,7 @@ class account_cash_statement(osv.osv): for statement in statement_pool.browse(cr, uid, ids, context=context): vals = {} if not self._user_allow(cr, uid, statement.id, context=context): - raise osv.except_osv(_('Error!'), (_('You do not have rights to open this %s journal !') % (statement.journal_id.name, ))) + raise osv.except_osv(_('Error!'), (_('You do not have rights to open this %s journal!') % (statement.journal_id.name, ))) if statement.name and statement.name == '/': c = {'fiscalyear_id': statement.period_id.fiscalyear_id.id} diff --git a/addons/account/account_financial_report_data.xml b/addons/account/account_financial_report_data.xml index 6410a5e887c..e8ff33151c3 100644 --- a/addons/account/account_financial_report_data.xml +++ b/addons/account/account_financial_report_data.xml @@ -6,16 +6,19 @@ --> Profit and Loss + sum Income + detail_with_hierarchy account_type Expense + detail_with_hierarchy account_type diff --git a/addons/account/account_installer.xml b/addons/account/account_installer.xml index 58e824a6250..b03babc63ac 100644 --- a/addons/account/account_installer.xml +++ b/addons/account/account_installer.xml @@ -20,10 +20,11 @@

+ - +
diff --git a/addons/account/product_view.xml b/addons/account/product_view.xml index 44d53839700..2c540cb6ee6 100644 --- a/addons/account/product_view.xml +++ b/addons/account/product_view.xml @@ -11,11 +11,11 @@ - + - + diff --git a/addons/account/project/project_view.xml b/addons/account/project/project_view.xml index 175a227a9ea..e5433321f45 100644 --- a/addons/account/project/project_view.xml +++ b/addons/account/project/project_view.xml @@ -11,8 +11,8 @@ - + @@ -31,7 +31,7 @@ - + @@ -68,6 +68,7 @@ + @@ -131,6 +132,7 @@ + @@ -169,6 +171,7 @@ + @@ -176,7 +179,6 @@ - diff --git a/addons/account/report/account_entries_report.py b/addons/account/report/account_entries_report.py index d53e6153981..6dd451599b4 100644 --- a/addons/account/report/account_entries_report.py +++ b/addons/account/report/account_entries_report.py @@ -81,7 +81,8 @@ class account_entries_report(osv.osv): period_obj = self.pool.get('account.period') for arg in args: if arg[0] == 'period_id' and arg[2] == 'current_period': - current_period = period_obj.find(cr, uid)[0] + ctx = dict(context or {}, account_period_prefer_normal=True) + current_period = period_obj.find(cr, uid, context=ctx)[0] args.append(['period_id','in',[current_period]]) break elif arg[0] == 'period_id' and arg[2] == 'current_year': @@ -100,7 +101,8 @@ class account_entries_report(osv.osv): fiscalyear_obj = self.pool.get('account.fiscalyear') period_obj = self.pool.get('account.period') if context.get('period', False) == 'current_period': - current_period = period_obj.find(cr, uid)[0] + ctx = dict(context, account_period_prefer_normal=True) + current_period = period_obj.find(cr, uid, context=ctx)[0] domain.append(['period_id','in',[current_period]]) elif context.get('year', False) == 'current_year': current_year = fiscalyear_obj.find(cr, uid) diff --git a/addons/account/report/account_financial_report.py b/addons/account/report/account_financial_report.py index d94955a764a..864c4bbc7d1 100644 --- a/addons/account/report/account_financial_report.py +++ b/addons/account/report/account_financial_report.py @@ -65,7 +65,7 @@ class report_account_common(report_sxw.rml_parse, common_report_header): vals['debit'] = report.debit vals['credit'] = report.credit if data['form']['enable_filter']: - vals['balance_cmp'] = self.pool.get('account.financial.report').browse(self.cr, self.uid, report.id, context=data['form']['comparison_context']).balance + vals['balance_cmp'] = self.pool.get('account.financial.report').browse(self.cr, self.uid, report.id, context=data['form']['comparison_context']).balance * report.sign or 0.0 lines.append(vals) account_ids = [] if report.display_detail == 'no_detail': @@ -97,7 +97,7 @@ class report_account_common(report_sxw.rml_parse, common_report_header): if not currency_obj.is_zero(self.cr, self.uid, account.company_id.currency_id, vals['balance']): flag = True if data['form']['enable_filter']: - vals['balance_cmp'] = account_obj.browse(self.cr, self.uid, account.id, context=data['form']['comparison_context']).balance + vals['balance_cmp'] = account_obj.browse(self.cr, self.uid, account.id, context=data['form']['comparison_context']).balance * report.sign or 0.0 if not currency_obj.is_zero(self.cr, self.uid, account.company_id.currency_id, vals['balance_cmp']): flag = True if flag: diff --git a/addons/account/report/account_general_ledger.py b/addons/account/report/account_general_ledger.py index 498cb1369a8..4f712ad58cc 100644 --- a/addons/account/report/account_general_ledger.py +++ b/addons/account/report/account_general_ledger.py @@ -23,7 +23,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # ############################################################################## diff --git a/addons/account/report/account_invoice_report.py b/addons/account/report/account_invoice_report.py index af6ae1eede7..31725a46b46 100644 --- a/addons/account/report/account_invoice_report.py +++ b/addons/account/report/account_invoice_report.py @@ -210,8 +210,8 @@ class account_invoice_report(osv.osv): cr.id IN (SELECT id FROM res_currency_rate cr2 WHERE (cr2.currency_id = sub.currency_id) - AND ((sub.date IS NOT NULL AND cr.name <= sub.date) - OR (sub.date IS NULL AND cr.name <= NOW())) + AND ((sub.date IS NOT NULL AND cr2.name <= sub.date) + OR (sub.date IS NULL AND cr2.name <= NOW())) ORDER BY name DESC LIMIT 1) )""" % ( self._table, diff --git a/addons/account/report/account_journal_sale_purchase.rml b/addons/account/report/account_journal_sale_purchase.rml index 236879669f9..3ee0b484c9a 100644 --- a/addons/account/report/account_journal_sale_purchase.rml +++ b/addons/account/report/account_journal_sale_purchase.rml @@ -239,7 +239,7 @@ [[ line.account_id.code ]] [[ line.partner_id and strip_name(line.partner_id.name,15) ]] [[ strip_name(line.name,25) ]] - [[ line.tax_code_id and (line.tax_code_id.code + ':') ]] + [[ line.tax_code_id and line.tax_code_id.code and (line.tax_code_id.code + ':') ]] [[ line.tax_amount and formatLang(line.tax_amount, currency_obj=company.currency_id) ]] [[ formatLang(line.debit, currency_obj=company.currency_id) ]] [[ formatLang(line.credit, currency_obj=company.currency_id) ]] @@ -292,7 +292,7 @@ [[ line.account_id.code ]] [[ line.partner_id and strip_name(line.partner_id.name,12) ]] [[ strip_name(line.name,16) ]] - [[ line.tax_code_id and (line.tax_code_id.code + ':') ]] + [[ line.tax_code_id and line.tax_code_id.code and (line.tax_code_id.code + ':') ]] [[ line.tax_amount and formatLang(line.tax_amount, currency_obj=company.currency_id) ]] [[ formatLang(line.debit, currency_obj=company.currency_id) ]] [[ formatLang(line.credit, currency_obj=company.currency_id) ]] diff --git a/addons/account/report/account_print_invoice.rml b/addons/account/report/account_print_invoice.rml index 4ffa7a33f9d..3582221df44 100644 --- a/addons/account/report/account_print_invoice.rml +++ b/addons/account/report/account_print_invoice.rml @@ -99,42 +99,39 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -144,12 +141,12 @@ - Description - Taxes - Quantity - Unit Price - Disc.(%) - Price + Description + Taxes + Quantity + Unit Price + Disc.(%) + Price @@ -168,33 +165,33 @@ Tel. : [[ (o.partner_id.phone) or removeParentNode('para') ]] Fax : [[ (o.partner_id.fax) or removeParentNode('para') ]] - VAT : [[ (o.partner_id.vat) or removeParentNode('para') ]] + TIN : [[ (o.partner_id.vat) or removeParentNode('para') ]] - Invoice [[ ((o.type == 'out_invoice' and (o.state == 'open' or o.state == 'paid')) or removeParentNode('para')) and '' ]] [[ o.number ]] - PRO-FORMA [[ ((o.type == 'out_invoice' and o.state == 'proforma2') or removeParentNode('para')) and '' ]] - Draft Invoice [[ ((o.type == 'out_invoice' and o.state == 'draft') or removeParentNode('para')) and '' ]] - Cancelled Invoice [[ ((o.type == 'out_invoice' and o.state == 'cancel') or removeParentNode('para')) and '' ]] [[ o.number ]] - Refund [[ (o.type=='out_refund' or removeParentNode('para')) and '' ]] [[ o.number ]] - Supplier Refund [[ (o.type=='in_refund' or removeParentNode('para')) and '' ]] [[ o.number ]] - Supplier Invoice [[ (o.type=='in_invoice' or removeParentNode('para')) and '' ]] [[ o.number ]] + Invoice [[ ((o.type == 'out_invoice' and (o.state == 'open' or o.state == 'paid')) or removeParentNode('para')) and '' ]] [[ o.number ]] + PRO-FORMA [[ ((o.type == 'out_invoice' and o.state == 'proforma2') or removeParentNode('para')) and '' ]] + Draft Invoice [[ ((o.type == 'out_invoice' and o.state == 'draft') or removeParentNode('para')) and '' ]] + Cancelled Invoice [[ ((o.type == 'out_invoice' and o.state == 'cancel') or removeParentNode('para')) and '' ]] [[ o.number ]] + Refund [[ (o.type=='out_refund' or removeParentNode('para')) and '' ]] [[ o.number ]] + Supplier Refund [[ (o.type=='in_refund' or removeParentNode('para')) and '' ]] [[ o.number ]] + Supplier Invoice [[ (o.type=='in_invoice' or removeParentNode('para')) and '' ]] [[ o.number ]] - Description + Description - Invoice Date - - - Source + Invoice Date - Customer Code + Source + + + Customer Code @@ -220,22 +217,22 @@ - Description + Description - Taxes + Taxes - Quantity + Quantity - Unit Price + Unit Price - Disc.(%) + Disc.(%) - Price + Price @@ -298,10 +295,10 @@ - Total: + Total: - [[ formatLang(o.amount_total, digits=get_digits(dp='Account'), currency_obj=o.currency_id) ]] + [[ formatLang(o.amount_total, digits=get_digits(dp='Account'), currency_obj=o.currency_id) ]] @@ -311,13 +308,13 @@ - Tax [[ o.tax_line==[] and removeParentNode('blockTable') ]] + Tax [[ o.tax_line==[] and removeParentNode('blockTable') ]] - Base + Base - Amount + Amount @@ -361,7 +358,7 @@ - Fiscal Position Remark : + Fiscal Position Remark : [[ (o.fiscal_position and o.fiscal_position.note and format(o.fiscal_position.note)) or removeParentNode('blockTable') ]] diff --git a/addons/account/res_config.py b/addons/account/res_config.py index 53c604161ea..f1f1aee7d41 100644 --- a/addons/account/res_config.py +++ b/addons/account/res_config.py @@ -25,6 +25,7 @@ from dateutil.relativedelta import relativedelta from operator import itemgetter from os.path import join as opj +from openerp.tools import DEFAULT_SERVER_DATE_FORMAT, DEFAULT_SERVER_DATETIME_FORMAT as DF from openerp.tools.translate import _ from openerp.osv import fields, osv from openerp import tools @@ -132,12 +133,43 @@ class account_config_settings(osv.osv_memory): count = self.pool.get('res.company').search_count(cr, uid, [], context=context) return bool(count == 1) + def _get_default_fiscalyear_data(self, cr, uid, company_id, context=None): + """Compute default period, starting and ending date for fiscalyear + - if in a fiscal year, use its period, starting and ending date + - if past fiscal year, use its period, and new dates [ending date of the latest +1 day ; ending date of the latest +1 year] + - if no fiscal year, use monthly, 1st jan, 31th dec of this year + :return: (date_start, date_stop, period) at format DEFAULT_SERVER_DATETIME_FORMAT + """ + fiscalyear_ids = self.pool.get('account.fiscalyear').search(cr, uid, + [('date_start', '<=', time.strftime(DF)), ('date_stop', '>=', time.strftime(DF)), + ('company_id', '=', company_id)]) + if fiscalyear_ids: + # is in a current fiscal year, use this one + fiscalyear = self.pool.get('account.fiscalyear').browse(cr, uid, fiscalyear_ids[0], context=context) + if len(fiscalyear.period_ids) == 5: # 4 periods of 3 months + opening period + period = '3months' + else: + period = 'month' + return (fiscalyear.date_start, fiscalyear.date_stop, period) + else: + past_fiscalyear_ids = self.pool.get('account.fiscalyear').search(cr, uid, + [('date_stop', '<=', time.strftime(DF)), ('company_id', '=', company_id)]) + if past_fiscalyear_ids: + # use the latest fiscal, sorted by (start_date, id) + latest_year = self.pool.get('account.fiscalyear').browse(cr, uid, past_fiscalyear_ids[-1], context=context) + latest_stop = datetime.datetime.strptime(latest_year.date_stop, DF) + if len(latest_year.period_ids) == 5: + period = '3months' + else: + period = 'month' + return ((latest_stop+datetime.timedelta(days=1)).strftime(DF), latest_stop.replace(year=latest_stop.year+1).strftime(DF), period) + else: + return (time.strftime('%Y-01-01'), time.strftime('%Y-12-31'), 'month') + + _defaults = { 'company_id': _default_company, 'has_default_company': _default_has_default_company, - 'date_start': lambda *a: time.strftime('%Y-01-01'), - 'date_stop': lambda *a: time.strftime('%Y-12-31'), - 'period': 'month', } def create(self, cr, uid, values, context=None): @@ -161,6 +193,7 @@ class account_config_settings(osv.osv_memory): fiscalyear_count = self.pool.get('account.fiscalyear').search_count(cr, uid, [('date_start', '<=', time.strftime('%Y-%m-%d')), ('date_stop', '>=', time.strftime('%Y-%m-%d')), ('company_id', '=', company_id)]) + date_start, date_stop, period = self._get_default_fiscalyear_data(cr, uid, company_id, context=context) values = { 'expects_chart_of_accounts': company.expects_chart_of_accounts, 'currency_id': company.currency_id.id, @@ -170,6 +203,9 @@ class account_config_settings(osv.osv_memory): 'has_fiscal_year': bool(fiscalyear_count), 'chart_template_id': False, 'tax_calculation_rounding_method': company.tax_calculation_rounding_method, + 'date_start': date_start, + 'date_stop': date_stop, + 'period': period, } # update journals and sequences for journal_type in ('sale', 'sale_refund', 'purchase', 'purchase_refund'): diff --git a/addons/account/static/src/js/account_move_reconciliation.js b/addons/account/static/src/js/account_move_reconciliation.js index dbbfe3cc069..cbc0abc4f4d 100644 --- a/addons/account/static/src/js/account_move_reconciliation.js +++ b/addons/account/static/src/js/account_move_reconciliation.js @@ -26,7 +26,7 @@ openerp.account = function (instance) { if (this.partners) { this.$el.prepend(QWeb.render("AccountReconciliation", {widget: this})); this.$(".oe_account_recon_previous").click(function() { - self.current_partner = (self.current_partner - 1) % self.partners.length; + self.current_partner = (((self.current_partner - 1) % self.partners.length) + self.partners.length) % self.partners.length; self.search_by_partner(); }); this.$(".oe_account_recon_next").click(function() { diff --git a/addons/account/static/src/xml/account_move_reconciliation.xml b/addons/account/static/src/xml/account_move_reconciliation.xml index d7b5301238d..3074fdb49b1 100644 --- a/addons/account/static/src/xml/account_move_reconciliation.xml +++ b/addons/account/static/src/xml/account_move_reconciliation.xml @@ -22,13 +22,13 @@
- Last Reconciliation: + Latest Manual Reconciliation Processed:
- +
diff --git a/addons/account/wizard/account_fiscalyear_close.py b/addons/account/wizard/account_fiscalyear_close.py index d4f7b3e6654..c2acfb75f22 100644 --- a/addons/account/wizard/account_fiscalyear_close.py +++ b/addons/account/wizard/account_fiscalyear_close.py @@ -38,7 +38,7 @@ class account_fiscalyear_close(osv.osv_memory): 'report_name': fields.char('Name of new entries',size=64, required=True, help="Give name of the new entries"), } _defaults = { - 'report_name': _('End of Fiscal Year Entry'), + 'report_name': lambda self, cr, uid, context: _('End of Fiscal Year Entry'), } def data_save(self, cr, uid, ids, context=None): diff --git a/addons/account/wizard/account_invoice_refund.py b/addons/account/wizard/account_invoice_refund.py index 2d95687ff2d..d62fd331774 100644 --- a/addons/account/wizard/account_invoice_refund.py +++ b/addons/account/wizard/account_invoice_refund.py @@ -184,9 +184,9 @@ class account_invoice_refund(osv.osv_memory): invoice = invoice[0] del invoice['id'] invoice_lines = inv_line_obj.browse(cr, uid, invoice['invoice_line'], context=context) - invoice_lines = inv_obj._refund_cleanup_lines(cr, uid, invoice_lines) + invoice_lines = inv_obj._refund_cleanup_lines(cr, uid, invoice_lines, context=context) tax_lines = inv_tax_obj.browse(cr, uid, invoice['tax_line'], context=context) - tax_lines = inv_obj._refund_cleanup_lines(cr, uid, tax_lines) + tax_lines = inv_obj._refund_cleanup_lines(cr, uid, tax_lines, context=context) invoice.update({ 'type': inv.type, 'date_invoice': date, diff --git a/addons/account/wizard/account_reconcile.py b/addons/account/wizard/account_reconcile.py index 81609249fd7..28de637d16f 100644 --- a/addons/account/wizard/account_reconcile.py +++ b/addons/account/wizard/account_reconcile.py @@ -84,7 +84,8 @@ class account_move_line_reconcile(osv.osv_memory): context = {} date = time.strftime('%Y-%m-%d') - ids = period_obj.find(cr, uid, dt=date, context=context) + ctx = dict(context or {}, account_period_prefer_normal=True) + ids = period_obj.find(cr, uid, dt=date, context=ctx) if ids: period_id = ids[0] account_move_line_obj.reconcile(cr, uid, context['active_ids'], 'manual', account_id, @@ -149,7 +150,7 @@ class account_move_line_reconcile_writeoff(osv.osv_memory): context['analytic_id'] = data['analytic_id'][0] if context['date_p']: date = context['date_p'] - + context['account_period_prefer_normal'] = True ids = period_obj.find(cr, uid, dt=date, context=context) if ids: period_id = ids[0] diff --git a/addons/account/wizard/account_tax_chart.py b/addons/account/wizard/account_tax_chart.py index 84859e2077c..da2e9677739 100644 --- a/addons/account/wizard/account_tax_chart.py +++ b/addons/account/wizard/account_tax_chart.py @@ -38,7 +38,8 @@ class account_tax_chart(osv.osv_memory): def _get_period(self, cr, uid, context=None): """Return default period value""" - period_ids = self.pool.get('account.period').find(cr, uid) + ctx = dict(context or {}, account_period_prefer_normal=True) + period_ids = self.pool.get('account.period').find(cr, uid, context=ctx) return period_ids and period_ids[0] or False def account_tax_chart_open_window(self, cr, uid, ids, context=None): diff --git a/addons/account/wizard/account_validate_account_move.py b/addons/account/wizard/account_validate_account_move.py index faf7f8e2ccd..4372ce12f04 100644 --- a/addons/account/wizard/account_validate_account_move.py +++ b/addons/account/wizard/account_validate_account_move.py @@ -58,7 +58,7 @@ class validate_account_move_lines(osv.osv_memory): move_ids.append(line.move_id.id) move_ids = list(set(move_ids)) if not move_ids: - raise osv.except_osv(_('Warning!'), _('Selected Entry Lines does not have any account move enties in draft state.')) + raise osv.except_osv(_('Warning!'), _('Selected Entry Lines does not have any account move entries in draft state.')) obj_move.button_validate(cr, uid, move_ids, context) return {'type': 'ir.actions.act_window_close'} validate_account_move_lines() diff --git a/addons/account/wizard/pos_box.py b/addons/account/wizard/pos_box.py index 49178dfd3ea..5619da0d13e 100644 --- a/addons/account/wizard/pos_box.py +++ b/addons/account/wizard/pos_box.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python from openerp.osv import fields, osv import openerp.addons.decimal_precision as dp from openerp.tools.translate import _ @@ -23,7 +22,7 @@ class CashBox(osv.osv_memory): records = self.pool.get(active_model).browse(cr, uid, active_ids, context=context) - return self._run(cr, uid, ids, records, context=None) + return self._run(cr, uid, ids, records, context=context) def _run(self, cr, uid, ids, records, context=None): for box in self.browse(cr, uid, ids, context=context): diff --git a/addons/account_accountant/i18n/account_accountant.pot b/addons/account_accountant/i18n/account_accountant.pot index 4b3cbf354ae..c633f5c0a66 100644 --- a/addons/account_accountant/i18n/account_accountant.pot +++ b/addons/account_accountant/i18n/account_accountant.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/account_accountant/i18n/ar.po b/addons/account_accountant/i18n/ar.po index 9fc933ab59d..b997380e265 100644 --- a/addons/account_accountant/i18n/ar.po +++ b/addons/account_accountant/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 562c2758aa1..74640863fb3 100644 --- a/addons/account_accountant/i18n/az.po +++ b/addons/account_accountant/i18n/az.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Azerbaijani \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 aa02140c37c..57c3fadab0e 100644 --- a/addons/account_accountant/i18n/bg.po +++ b/addons/account_accountant/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 5fc6f6b97e8..752bf278fb9 100644 --- a/addons/account_accountant/i18n/bn.po +++ b/addons/account_accountant/i18n/bn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 9206f20e181..f6a92eaf051 100644 --- a/addons/account_accountant/i18n/bs.po +++ b/addons/account_accountant/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 048231799d7..eca37a9d6e0 100644 --- a/addons/account_accountant/i18n/ca.po +++ b/addons/account_accountant/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 88540a03300..fd617fb6189 100644 --- a/addons/account_accountant/i18n/cs.po +++ b/addons/account_accountant/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-30 10:18+0000\n" "Last-Translator: Jan Grmela \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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 450d7feb133..bbbc260a75e 100644 --- a/addons/account_accountant/i18n/da.po +++ b/addons/account_accountant/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 8754df7e88d..79a873413b0 100644 --- a/addons/account_accountant/i18n/de.po +++ b/addons/account_accountant/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/el.po b/addons/account_accountant/i18n/el.po index 059c637abe5..5108836289e 100644 --- a/addons/account_accountant/i18n/el.po +++ b/addons/account_accountant/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 b1b882e25a7..273394fad92 100644 --- a/addons/account_accountant/i18n/en_GB.po +++ b/addons/account_accountant/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-06 14:17+0000\n" "Last-Translator: mrx5682 \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 67b3f037634..f20cfe73be8 100644 --- a/addons/account_accountant/i18n/es.po +++ b/addons/account_accountant/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 new file mode 100644 index 00000000000..71aa3b70c1e --- /dev/null +++ b/addons/account_accountant/i18n/es_CO.po @@ -0,0 +1,23 @@ +# Spanish (Colombia) 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-11 19:01+0000\n" +"Last-Translator: Juan Erazo \n" +"Language-Team: Spanish (Colombia) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: account_accountant +#: model:ir.actions.client,name:account_accountant.action_client_account_menu +msgid "Open Accounting Menu" +msgstr "Abrir Menú de Contabilidad" diff --git a/addons/account_accountant/i18n/es_CR.po b/addons/account_accountant/i18n/es_CR.po index 50789a14d57..00b9cdf1899 100644 --- a/addons/account_accountant/i18n/es_CR.po +++ b/addons/account_accountant/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_DO.po b/addons/account_accountant/i18n/es_DO.po index 6be595cd76a..64a63c0cf70 100644 --- a/addons/account_accountant/i18n/es_DO.po +++ b/addons/account_accountant/i18n/es_DO.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Dominican Republic) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 1c3d68dfa6a..a71554538bd 100644 --- a/addons/account_accountant/i18n/es_EC.po +++ b/addons/account_accountant/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 c4bcda8fe7c..25aa3becec0 100644 --- a/addons/account_accountant/i18n/es_MX.po +++ b/addons/account_accountant/i18n/es_MX.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 5f882943c30..805c0307fdf 100644 --- a/addons/account_accountant/i18n/es_PY.po +++ b/addons/account_accountant/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 8d605c7d136..504340589ea 100644 --- a/addons/account_accountant/i18n/et.po +++ b/addons/account_accountant/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fa.po b/addons/account_accountant/i18n/fa.po index 0fb1007851d..525ee311035 100644 --- a/addons/account_accountant/i18n/fa.po +++ b/addons/account_accountant/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 abe9d60bd5a..9ff655634e5 100644 --- a/addons/account_accountant/i18n/fi.po +++ b/addons/account_accountant/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fr.po b/addons/account_accountant/i18n/fr.po index 0952ba8c10f..9148bf79381 100644 --- a/addons/account_accountant/i18n/fr.po +++ b/addons/account_accountant/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 3774724502b..fd43f6f6bf5 100644 --- a/addons/account_accountant/i18n/gl.po +++ b/addons/account_accountant/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 b3b02f746d7..6335851ce87 100644 --- a/addons/account_accountant/i18n/he.po +++ b/addons/account_accountant/i18n/he.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 7fd9a94295e..163dd64ea01 100644 --- a/addons/account_accountant/i18n/hi.po +++ b/addons/account_accountant/i18n/hi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 b568f2e6259..2524e67cb26 100644 --- a/addons/account_accountant/i18n/hr.po +++ b/addons/account_accountant/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 d92e436b262..2f03e20543f 100644 --- a/addons/account_accountant/i18n/hu.po +++ b/addons/account_accountant/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-02 10:25+0000\n" "Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 7d1d8f21c07..dc7e0f5ff99 100644 --- a/addons/account_accountant/i18n/id.po +++ b/addons/account_accountant/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 cf9b68ed1ec..c28b44c76af 100644 --- a/addons/account_accountant/i18n/it.po +++ b/addons/account_accountant/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 c010c5d563f..ac5fe68c467 100644 --- a/addons/account_accountant/i18n/ja.po +++ b/addons/account_accountant/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 90129994221..ef576bbe31a 100644 --- a/addons/account_accountant/i18n/ko.po +++ b/addons/account_accountant/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 24ca280ec0c..0e21986c1a2 100644 --- a/addons/account_accountant/i18n/lo.po +++ b/addons/account_accountant/i18n/lo.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lao \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 6ce88f58ee9..5864187a99b 100644 --- a/addons/account_accountant/i18n/lt.po +++ b/addons/account_accountant/i18n/lt.po @@ -7,17 +7,17 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-24 18:15+0000\n" +"Last-Translator: Giedrius Slavinskas - inovera.lt \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Atverti apskaitos meniu" diff --git a/addons/account_accountant/i18n/lv.po b/addons/account_accountant/i18n/lv.po index c785fa53b8a..075d332efcd 100644 --- a/addons/account_accountant/i18n/lv.po +++ b/addons/account_accountant/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 fff5596e187..04df6e114b3 100644 --- a/addons/account_accountant/i18n/mk.po +++ b/addons/account_accountant/i18n/mk.po @@ -2,22 +2,23 @@ # 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. -# +# Sofce Dimitrijeva , 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-02-27 19:21+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Отвори мени Сметководство" diff --git a/addons/account_accountant/i18n/mn.po b/addons/account_accountant/i18n/mn.po index f0d1097a559..8595fb6fcb3 100644 --- a/addons/account_accountant/i18n/mn.po +++ b/addons/account_accountant/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-06 04:28+0000\n" "Last-Translator: gobi \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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 1b65b778fb1..651ec556224 100644 --- a/addons/account_accountant/i18n/nb.po +++ b/addons/account_accountant/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 ca014272ca7..89398becf7e 100644 --- a/addons/account_accountant/i18n/nl.po +++ b/addons/account_accountant/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 798683c64d4..af745d963d2 100644 --- a/addons/account_accountant/i18n/nl_BE.po +++ b/addons/account_accountant/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 0816b611b1a..84ad0979f8f 100644 --- a/addons/account_accountant/i18n/oc.po +++ b/addons/account_accountant/i18n/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pl.po b/addons/account_accountant/i18n/pl.po index 27105810630..e5f2084706c 100644 --- a/addons/account_accountant/i18n/pl.po +++ b/addons/account_accountant/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 075a7cc4031..0d4e175e3e6 100644 --- a/addons/account_accountant/i18n/pt.po +++ b/addons/account_accountant/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 104aa652ed9..e55dbddd003 100644 --- a/addons/account_accountant/i18n/pt_BR.po +++ b/addons/account_accountant/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 7dca469f03d..df58d9ead37 100644 --- a/addons/account_accountant/i18n/ro.po +++ b/addons/account_accountant/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-07 16:18+0000\n" -"Last-Translator: Fekete Mihai \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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 7db15c1bb07..1d49b9c1d91 100644 --- a/addons/account_accountant/i18n/ru.po +++ b/addons/account_accountant/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 0c245dc3a24..5268649bcf9 100644 --- a/addons/account_accountant/i18n/sk.po +++ b/addons/account_accountant/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 b5cb4981ace..6f818a17b7c 100644 --- a/addons/account_accountant/i18n/sl.po +++ b/addons/account_accountant/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 6538531ea79..9c436868912 100644 --- a/addons/account_accountant/i18n/sq.po +++ b/addons/account_accountant/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 dab66df5e62..d757b06c661 100644 --- a/addons/account_accountant/i18n/sr.po +++ b/addons/account_accountant/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 daf0763e7b6..0ab0ebd9fad 100644 --- a/addons/account_accountant/i18n/sr@latin.po +++ b/addons/account_accountant/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 3b8deb623d4..ef2b41409a5 100644 --- a/addons/account_accountant/i18n/sv.po +++ b/addons/account_accountant/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-17 23:23+0000\n" "Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 3ce379df2dd..3927d572cd4 100644 --- a/addons/account_accountant/i18n/ta.po +++ b/addons/account_accountant/i18n/ta.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 3841c29b7ec..3cf9de49c93 100644 --- a/addons/account_accountant/i18n/th.po +++ b/addons/account_accountant/i18n/th.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 39919adf554..f58c3be6f39 100644 --- a/addons/account_accountant/i18n/tr.po +++ b/addons/account_accountant/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-09 10:32+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-10 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 40c7aaf8b14..edcf0a4aab4 100644 --- a/addons/account_accountant/i18n/uk.po +++ b/addons/account_accountant/i18n/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 2af3961eaeb..9a52fabdb9c 100644 --- a/addons/account_accountant/i18n/vi.po +++ b/addons/account_accountant/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 3577baee80e..4b6b26445a3 100644 --- a/addons/account_accountant/i18n/zh_CN.po +++ b/addons/account_accountant/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:31+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\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 eda53b524e3..4e5e1c041db 100644 --- a/addons/account_accountant/i18n/zh_TW.po +++ b/addons/account_accountant/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-30 11:24+0000\n" "Last-Translator: Charles Hsu \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-01-31 05:17+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:09+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_analytic_analysis/account_analytic_analysis.py b/addons/account_analytic_analysis/account_analytic_analysis.py index 708c4b56629..89e39c71660 100644 --- a/addons/account_analytic_analysis/account_analytic_analysis.py +++ b/addons/account_analytic_analysis/account_analytic_analysis.py @@ -206,15 +206,14 @@ class account_analytic_account(osv.osv): return res if child_ids: - cr.execute("SELECT account_analytic_line.account_id, COALESCE(SUM(amount), 0.0) \ - FROM account_analytic_line \ - JOIN account_analytic_journal \ - ON account_analytic_line.journal_id = account_analytic_journal.id \ - WHERE account_analytic_line.account_id IN %s \ - AND account_analytic_journal.type = 'sale' \ - GROUP BY account_analytic_line.account_id", (child_ids,)) - for account_id, sum in cr.fetchall(): - res[account_id] = round(sum,2) + #Search all invoice lines not in cancelled state that refer to this analytic account + inv_line_obj = self.pool.get("account.invoice.line") + inv_lines = inv_line_obj.search(cr, uid, ['&', ('account_analytic_id', 'in', child_ids), ('invoice_id.state', '!=', 'cancel')], context=context) + for line in inv_line_obj.browse(cr, uid, inv_lines, context=context): + res[line.account_analytic_id.id] += line.price_subtotal + for acc in self.browse(cr, uid, res.keys(), context=context): + res[acc.id] = res[acc.id] - (acc.timesheet_ca_invoiced or 0.0) + res_final = res return res_final @@ -295,13 +294,12 @@ class account_analytic_account(osv.osv): res = {} for account in self.browse(cr, uid, ids, context=context): res[account.id] = 0.0 - sale_ids = sale_obj.search(cr, uid, [('project_id','=', account.id), ('partner_id', '=', account.partner_id.id)], context=context) + sale_ids = sale_obj.search(cr, uid, [('project_id','=', account.id), ('state', '=', 'manual')], context=context) for sale in sale_obj.browse(cr, uid, sale_ids, context=context): - if not sale.invoiced: - res[account.id] += sale.amount_untaxed - for invoice in sale.invoice_ids: - if invoice.state not in ('draft', 'cancel'): - res[account.id] -= invoice.amount_untaxed + res[account.id] += sale.amount_untaxed + for invoice in sale.invoice_ids: + if invoice.state != 'cancel': + res[account.id] -= invoice.amount_untaxed return res def _timesheet_ca_invoiced_calc(self, cr, uid, ids, name, arg, context=None): @@ -527,10 +525,38 @@ class account_analytic_account(osv.osv): for user_id, data in remind.items(): context["data"] = data _logger.debug("Sending reminder to uid %s", user_id) - self.pool.get('email.template').send_mail(cr, uid, template_id, user_id, context=context) + self.pool.get('email.template').send_mail(cr, uid, template_id, user_id, force_send=True, context=context) return True + def onchange_invoice_on_timesheets(self, cr, uid, ids, invoice_on_timesheets, context=None): + if not invoice_on_timesheets: + return {} + result = {'value': {'use_timesheets': True}} + try: + to_invoice = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'hr_timesheet_invoice', 'timesheet_invoice_factor1') + result['value']['to_invoice'] = to_invoice[1] + except ValueError: + pass + return result + + + def hr_to_invoice_timesheets(self, cr, uid, ids, context=None): + domain = [('invoice_id','=',False),('to_invoice','!=',False), ('journal_id.type', '=', 'general'), ('account_id', 'in', ids)] + names = [record.name for record in self.browse(cr, uid, ids, context=context)] + name = _('Timesheets to Invoice of %s') % ','.join(names) + return { + 'type': 'ir.actions.act_window', + 'name': name, + 'view_type': 'form', + 'view_mode': 'tree,form', + 'domain' : domain, + 'res_model': 'account.analytic.line', + 'nodestroy': True, + } + + + class account_analytic_account_summary_user(osv.osv): _name = "account_analytic_analysis.summary.user" _description = "Hours Summary by User" diff --git a/addons/account_analytic_analysis/account_analytic_analysis_cron.xml b/addons/account_analytic_analysis/account_analytic_analysis_cron.xml index 3264facdf89..4a9cf457c3f 100644 --- a/addons/account_analytic_analysis/account_analytic_analysis_cron.xml +++ b/addons/account_analytic_analysis/account_analytic_analysis_cron.xml @@ -30,7 +30,7 @@ Hello ${object.name}, ${account.date_start} to ${account.date and account.date or '???'} % if account.quantity_max != 0.0: - ${account.quantity}/${account.quantity_max} hours + ${account.remaining_hours}/${account.quantity_max} units % endif ${account.partner_id.phone or ''}, ${account.partner_id.email or ''} @@ -55,6 +55,19 @@ Hello ${object.name}, ${account_table(ctx["data"]["future"].iteritems())} % endif +

+ You can check all contracts to be renewed using the menu: +

+
    +
  • Sales / Invoicing / Contracts to Renew
  • +
+

+ Thanks, +

+ +
+-- 
+OpenERP Automatic Email
 
]]>
diff --git a/addons/account_analytic_analysis/account_analytic_analysis_view.xml b/addons/account_analytic_analysis/account_analytic_analysis_view.xml index dfbded83baa..c70a2493be9 100644 --- a/addons/account_analytic_analysis/account_analytic_analysis_view.xml +++ b/addons/account_analytic_analysis/account_analytic_analysis_view.xml @@ -5,6 +5,15 @@ Sales Orders sale.order account.analytic.account + +

+ Click to create a quotation that can be converted into a sales + order. +

+ Use sale orders to track everything that should be invoiced + at a fix price on a contract. +

+
@@ -26,6 +35,9 @@ + + {'required': [('type','=','contract'),'|',('fix_price_invoices','=',True), ('invoice_on_timesheets', '=', True)]} + @@ -62,20 +74,20 @@ or view - + No order to invoice, create - - - - - + + + + + + this.attr('data-modes', 'default'); + diff --git a/addons/base_action_rule/base_action_rule.py b/addons/base_action_rule/base_action_rule.py index a3237c1620b..a73933ff0f2 100644 --- a/addons/base_action_rule/base_action_rule.py +++ b/addons/base_action_rule/base_action_rule.py @@ -62,6 +62,7 @@ class base_action_rule(osv.osv): 'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of rules."), 'trg_date_id': fields.many2one('ir.model.fields', string='Trigger Date', + help="When should the condition be triggered. If present, will be checked by the scheduler. If empty, will be checked at creation and update.", domain="[('model_id', '=', model_id), ('ttype', 'in', ('date', 'datetime'))]"), 'trg_date_range': fields.integer('Delay after trigger date', help="Delay after the trigger date." \ @@ -214,6 +215,13 @@ class base_action_rule(osv.osv): self._register_hook(cr, ids) return True + def onchange_model_id(self, cr, uid, ids, model_id, context=None): + data = {'model': False, 'filter_pre_id': False, 'filter_id': False} + if model_id: + model = self.pool.get('ir.model').browse(cr, uid, model_id, context=context) + data.update({'model': model.model}) + return {'value': data} + def _check(self, cr, uid, automatic=False, use_new_cursor=False, context=None): """ This Function is called by scheduler. """ context = context or {} diff --git a/addons/base_action_rule/base_action_rule_view.xml b/addons/base_action_rule/base_action_rule_view.xml index 25ea4048bad..5eaaf08dad4 100644 --- a/addons/base_action_rule/base_action_rule_view.xml +++ b/addons/base_action_rule/base_action_rule_view.xml @@ -15,7 +15,7 @@

- + @@ -27,8 +27,8 @@ - - + + diff --git a/addons/base_action_rule/i18n/ar.po b/addons/base_action_rule/i18n/ar.po index 8cf510a3728..72f83c0ce4d 100644 --- a/addons/base_action_rule/i18n/ar.po +++ b/addons/base_action_rule/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/base_action_rule.pot b/addons/base_action_rule/i18n/base_action_rule.pot index 1970e2bf814..40e4eae2e92 100644 --- a/addons/base_action_rule/i18n/base_action_rule.pot +++ b/addons/base_action_rule/i18n/base_action_rule.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,6 +25,11 @@ msgstr "" 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 +#: help:base.action.rule,trg_date_id:0 +msgid "When should the condition be triggered. If present, will be checked by the scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/bg.po b/addons/base_action_rule/i18n/bg.po index 187d25bc719..16e8c9078eb 100644 --- a/addons/base_action_rule/i18n/bg.po +++ b/addons/base_action_rule/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/bs.po b/addons/base_action_rule/i18n/bs.po index 88973510e46..d81fed0dd48 100644 --- a/addons/base_action_rule/i18n/bs.po +++ b/addons/base_action_rule/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/ca.po b/addons/base_action_rule/i18n/ca.po index ee12dcf6df3..9b76d6f3764 100644 --- a/addons/base_action_rule/i18n/ca.po +++ b/addons/base_action_rule/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/cs.po b/addons/base_action_rule/i18n/cs.po index 75057d566d0..ced0f905697 100644 --- a/addons/base_action_rule/i18n/cs.po +++ b/addons/base_action_rule/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-19 11:49+0000\n" "Last-Translator: Radomil Urbánek \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-02-20 05:28+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -33,6 +33,13 @@ msgstr "" "zadejte jméno (Např.: Vytvořeno 01.01.2012) a přidejte volbu \"sdílet se " "všemi uživateli\"" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/da.po b/addons/base_action_rule/i18n/da.po index 0952e540e3c..95ad5e312ec 100644 --- a/addons/base_action_rule/i18n/da.po +++ b/addons/base_action_rule/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/de.po b/addons/base_action_rule/i18n/de.po index fc7c04400ff..342813a67ed 100644 --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/i18n/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-05 15:33+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -34,6 +34,13 @@ msgstr "" "speichern\" und vergeben eine Bezeichnung (z.B: Datumsfilter 01/01/2012), " "ebenso aktivieren Sie die Option \"Mit allen Benutzern teilen\"" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/el.po b/addons/base_action_rule/i18n/el.po index 165a42932ad..1f4a93d3719 100644 --- a/addons/base_action_rule/i18n/el.po +++ b/addons/base_action_rule/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/es.po b/addons/base_action_rule/i18n/es.po index 3e255e21327..a527cc45257 100644 --- a/addons/base_action_rule/i18n/es.po +++ b/addons/base_action_rule/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -33,6 +33,13 @@ msgstr "" "actual\", introduzca el nombre (por ejemplo, 'Creado el 01/01/2012') y " "marque la opción \"Compartir con todos los usuarios\"" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/es_CR.po b/addons/base_action_rule/i18n/es_CR.po index 09681fa64d4..13cf7e9e5cb 100644 --- a/addons/base_action_rule/i18n/es_CR.po +++ b/addons/base_action_rule/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/es_EC.po b/addons/base_action_rule/i18n/es_EC.po index fc41289d680..ecdc7e1fea8 100644 --- a/addons/base_action_rule/i18n/es_EC.po +++ b/addons/base_action_rule/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/es_PY.po b/addons/base_action_rule/i18n/es_PY.po index ec482a37826..4932723a2a1 100644 --- a/addons/base_action_rule/i18n/es_PY.po +++ b/addons/base_action_rule/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/fa.po b/addons/base_action_rule/i18n/fa.po index 1dc24c4f8ed..51b22da9004 100644 --- a/addons/base_action_rule/i18n/fa.po +++ b/addons/base_action_rule/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/fi.po b/addons/base_action_rule/i18n/fi.po index 6297918c7a6..9754e863812 100644 --- a/addons/base_action_rule/i18n/fi.po +++ b/addons/base_action_rule/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po index d4d0f678e1d..d75da122ab3 100644 --- a/addons/base_action_rule/i18n/fr.po +++ b/addons/base_action_rule/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-11 09:12+0000\n" "Last-Translator: WANTELLET Sylvain \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/gl.po b/addons/base_action_rule/i18n/gl.po index abe4ceb3847..27310d1e9af 100644 --- a/addons/base_action_rule/i18n/gl.po +++ b/addons/base_action_rule/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/gu.po b/addons/base_action_rule/i18n/gu.po index a7964c244f0..3a5031ab85a 100644 --- a/addons/base_action_rule/i18n/gu.po +++ b/addons/base_action_rule/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/hr.po b/addons/base_action_rule/i18n/hr.po index fd8b087cf75..c8c02ac1226 100644 --- a/addons/base_action_rule/i18n/hr.po +++ b/addons/base_action_rule/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/hu.po b/addons/base_action_rule/i18n/hu.po index 2cbf67bd180..ce4d6ad953b 100644 --- a/addons/base_action_rule/i18n/hu.po +++ b/addons/base_action_rule/i18n/hu.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-19 17:59+0000\n" +"Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "Folyamatban" #. module: base_action_rule #: view:base.action.rule:0 @@ -29,6 +29,16 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- Ugyanebben a \"Keresés\" nézetben, válassza ki a \"Jelenlegi szűrő " +"elmentése\" menüt, írja be a nevet (Pl: Létrehoz 01/01/2012) és adja hozzá a " +"\"Ossza meg az összes felhasználóval\" lehetőséget" + +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +48,7 @@ msgstr "Műveleti előírások" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Válasszon szűrőt vagy időzítőt mint lehetőséget." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,17 +58,17 @@ msgstr "Felelős" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Példák: e-mail emlékeztetők, tárgyi szolgáltatás hívása, stb." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Követők hozzáadása" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Felelős beállítása" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -67,21 +77,24 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"A emlékeztető dátumának késleltetése. Negatív számot is írhat ha az " +"emlékeztető kapcsolására az emlékeztető ideje előtt van szüksége, mint " +"emlékeztető küldése 15 perccel a találkozó előtt." #. 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 "Lezárt" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Új" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,17 +109,17 @@ msgstr "Feltételek" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Függőben lévő" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Szűró frissítése előtt" #. module: base_action_rule #: view:base.action.rule:0 @@ -118,6 +131,7 @@ msgstr "Műveleti előírások" msgid "" "If present, this condition must be satisfied after the update of the record." msgstr "" +"Ha létezik, ennek a feltételnek teljesülni kell a rekord frissítése után." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,12 +141,12 @@ msgstr "Mezők módosítása" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "A szűrőnek ezért elérhetőnek kell lennie ezen az oldalon." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Szűrő frissítése után" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +156,7 @@ msgstr "Órák" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Új szűrő létrehozásához:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -163,11 +177,15 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"Egy műveleti szabály beállított, ha létrehozza vagy módosítja a \"Vonatkozó " +"Dokumentum Modell\"-t. Az előszűrő feltétele beállítható a módosítást " +"megelőzően, ugyanakkor az utófeltétel szűrő a módosítás után állítható be. " +"Az előfeltétel szűrő ezért nem működik a létrehozáskor." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Feltételek szűrése" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +194,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- Menjen a \"Vonatkozó Dokumentum Modell\" oldalra és állítsa be a szűrési " +"paramétereket a \"Keresés\" nézetben (Például a szűrő az " +"Érdeklődések/Lehetőségek alapján: Létrehozás dátuma \"egyenlő\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -207,7 +228,7 @@ msgstr "Napok" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Időzítő" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -217,22 +238,22 @@ msgstr "Késedelem típusa" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Szerver műveletének futtatása" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "Ha nincs bejelölve, a szabály eltüntetett és nem végrehajtott." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Megszakítva" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Modell" #. module: base_action_rule #: field:base.action.rule,last_run:0 @@ -247,13 +268,14 @@ msgstr "Percek" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +msgstr "Ide vonatkozó dokumentum modell" #. 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 "" +"Ha létezik, ennek a feltételnek teljesülnie kell a rekord frissítése előtt." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -281,6 +303,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új automatikus művelet szabály létrehozásához. \n" +"

\n" +" Használjon automatikus műveleteket automatikus művelet " +"indításához \n" +" különböző képernyőkön. Például: ha egy érdeklődést egy " +"felhasználó létrehozott akkor\n" +" az automatikusan egy csoporthoz lesz iktatva, vagy egy\n" +" lehetőség, mely függőben van 14 nap után is el fog indítani " +"\n" +" egy automatikus emlékeztető e-mailt.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 @@ -290,7 +325,7 @@ msgstr "Dátum létrehozása" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Utolsó művelet" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -306,9 +341,9 @@ msgstr "Indítás dátuma" #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Szerver műveletek" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Tárgy" diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po index f1eff971d20..3104d223a9c 100644 --- a/addons/base_action_rule/i18n/it.po +++ b/addons/base_action_rule/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/ja.po b/addons/base_action_rule/i18n/ja.po index 3b0acca1211..1fca5cda69e 100644 --- a/addons/base_action_rule/i18n/ja.po +++ b/addons/base_action_rule/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/lt.po b/addons/base_action_rule/i18n/lt.po index 353717ab04b..807ff400a8f 100644 --- a/addons/base_action_rule/i18n/lt.po +++ b/addons/base_action_rule/i18n/lt.po @@ -1,26 +1,26 @@ # Lithuanian 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. +# Giedrius Slavinskas , 2012. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-30 16:26+0000\n" +"Last-Translator: Giedrius Slavinskas - inovera.lt \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "Vykdoma" #. module: base_action_rule #: view:base.action.rule:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" @@ -43,7 +50,7 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" -msgstr "Atsakingas" +msgstr "Atsakingas asmuo" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 @@ -76,12 +83,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Uždaryta" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Naujas" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,12 +103,12 @@ msgstr "Sąlygos" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Laukianti" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 @@ -191,7 +198,7 @@ msgstr "Automatiniai veiksmai" #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." -msgstr "Suteikia eilės tvarką, pagal kurį atvaizduojamas taisyklių sąrašas" +msgstr "Eilės tvarka, pagal kurią išdėstomas taisyklių sąrašas." #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -226,12 +233,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Atšauktas" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Modelis" #. module: base_action_rule #: field:base.action.rule,last_run:0 @@ -289,7 +296,7 @@ msgstr "Sukūrimo data" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Paskutinis veiksmas" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -299,7 +306,7 @@ msgstr "Partneris" #. module: base_action_rule #: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" -msgstr "Įvykio data" +msgstr "Iššaukimo data" #. module: base_action_rule #: view:base.action.rule:0 @@ -310,4 +317,4 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Tema" diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po index acadc0bc481..dd9e7dc4d62 100644 --- a/addons/base_action_rule/i18n/lv.po +++ b/addons/base_action_rule/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/mk.po b/addons/base_action_rule/i18n/mk.po new file mode 100644 index 00000000000..90444a99d7a --- /dev/null +++ b/addons/base_action_rule/i18n/mk.po @@ -0,0 +1,335 @@ +# Macedonian 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. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: OpenERP Macedonian \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-31 13:29+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\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 "" +"- Во овој приказ \"Пребарај\", селектирајте го менито \"Зачувај тековен " +"филтер\", внесете го името (пр. Креирај 01/01/2012) и додадете ја опцијата " +"\"Сподели со сите корисници\"" + +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +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 "Примери: потсетници за email, услуга јави се на објектот и др." + +#. 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 "" +"Одложување после датумот на активирање. Не може да ставите негативен број " +"доколку ви е потребно одложување пред датумот на активирање, како на пример " +"испраќање на потсетник 15 минути пред состанокот." + +#. module: base_action_rule +#: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test +msgid "base.action.rule.lead.test" +msgstr "base.action.rule.lead.test" + +#. module: base_action_rule +#: selection:base.action.rule.lead.test,state:0 +msgid "Closed" +msgstr "Затворено" + +#. 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 "Правилo на акцијата" + +#. module: base_action_rule +#: help:base.action.rule,filter_id:0 +msgid "" +"If present, this condition must be satisfied after the update of the record." +msgstr "" +"Доколку го има, овој услов мора да биде задоволен после ажурирањето на " +"записот." + +#. module: base_action_rule +#: view:base.action.rule:0 +msgid "Fields to Change" +msgstr "Полиња за изменување" + +#. 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 "" +"- Одете на страницата \"Модел на поврзан документ\" и подесете ги " +"параметрите на филтерот во приказ \"Пребарај\" (Пример за филтер заснован на " +"Leads/Можности: Датум на креирање \"е еднаква на\" 01/01/2012)" + +#. 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/mn.po b/addons/base_action_rule/i18n/mn.po index d40f17e0537..02b4c233dc8 100644 --- a/addons/base_action_rule/i18n/mn.po +++ b/addons/base_action_rule/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-15 15:56+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-03 03:54+0000\n" "Last-Translator: gobi \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-02-16 05:39+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -29,6 +29,16 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- Энэхүү ижил \"Хайлт\" харагдацад, \"Идэвхтэй Шүүлтүүрийг Хадгалах\" менюг " +"сонго, нэрийг оруул (Ж: Үүсгэсэн огноо 01/01/2012) дараа нь \"Бүх " +"хэрэглэгчидтэй хуваалцах\" сонголтыг нэм" + +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +48,7 @@ msgstr "Үйл ажиллагааны дүрэм" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Шүүлтүүр эсвэл цагийн тоолуурыг нөхцлөөр сонго" #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,7 +58,7 @@ msgstr "Хариуцлагатай" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Жишээнүүд: имэйл сануулга, обьектын сервисийг дуудах, гм" #. module: base_action_rule #: field:base.action.rule,act_followers:0 @@ -58,7 +68,7 @@ msgstr "Дагагчид нэмэх" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Хариуцагчийг тааруулах" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -67,11 +77,13 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"Өдөөгч огнооны дараа азнана. Сөрөг тоо тавьж өдөөх огнооноос өмнө азналт " +"хийлгэж бас болно, уулзалтаас 15 минутын өмнө сануулга явуулдагтай ижил." #. 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 @@ -106,7 +118,7 @@ msgstr "Төлөв" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Шүүлтүүрийг Шинэчлэхийн Өмнө" #. module: base_action_rule #: view:base.action.rule:0 @@ -118,6 +130,8 @@ msgstr "Үйл ажиллаагааны дүрэм" msgid "" "If present, this condition must be satisfied after the update of the record." msgstr "" +"Хэрэв байвал энэ нөхцөл нь бичлэгийг шинэчилсэн дараа энэ нөхцөл хангагдаж " +"байх ёстой." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,12 +141,12 @@ msgstr "Солих утгууд" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Шүүлтүүр нь энэ хуудсанд байх ёстой." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Шүүлтүүрийг Шинэчилсний Дараа" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +156,7 @@ msgstr "Цаг" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Шинэ шүүлтүүр үүсгэх" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -163,11 +177,15 @@ msgid "" "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 "" +msgstr "Шүүлтийн Нөхцөл" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +194,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- \"Холбогдох Баримтын Модель\" хуудас руу очиж шүүлтийн параметрүүдийг " +"\"Хайлт\" харагдацад тохируул (Жишээлбэл Сэжим/Боломжийн шүүлтүүр үүсгэсэн " +"огноо дээр суурилж болно: Үүсгэсэн Огноо \"тэнцүү\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -206,7 +227,7 @@ msgstr "Өдөр" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Цаг тоологч" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -216,22 +237,22 @@ msgstr "Саатлын төрөл" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Ажиллах сервер үйлдэл" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "Тэмдэглээгүй бол дүрэм харагдахгүй бөгөөд ажиллахгүй." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Цуцлагдсан" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Модел" #. module: base_action_rule #: field:base.action.rule,last_run:0 @@ -246,13 +267,13 @@ msgstr "Минут" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +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 "" +msgstr "Байгаа бол энэ нөхцөл нь бичлэгийг шинэчлэхийн биелж байх ёстой." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -280,6 +301,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Шинэ автомат үйлдлийн дүрэмийг тохируулахдаа дарна. \n" +"

\n" +" Автомат үйлдэлүүд нь янз бүрийн дэлгэцүүд дээр автомат \n" +" үйлдлүүдийг өдөөдөг. Жишээ: Тухайлсан нэг хэрэглэгчийн \n" +" үүсгэсэн борлуулалтын сэжим нь тухайлсан борлуулалтын \n" +" багт оноогдож болно. Эсвэл хүлээж буй төлөвтэй 14 хоносон \n" +" боломжийн хувьд автомат сануулга имэйлийг илгээж болно.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 @@ -289,7 +320,7 @@ msgstr "Үүссэн Огноо" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Сүүлийн үйлдэл" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -305,9 +336,9 @@ msgstr "Гарааны огноо" #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Сервер үйлдлүүд" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Гарчиг" diff --git a/addons/base_action_rule/i18n/nb.po b/addons/base_action_rule/i18n/nb.po index 047bf5ca99e..cded5a8676f 100644 --- a/addons/base_action_rule/i18n/nb.po +++ b/addons/base_action_rule/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/nl.po b/addons/base_action_rule/i18n/nl.po index ffe2df9d0b7..003a3c5b1fb 100644 --- a/addons/base_action_rule/i18n/nl.po +++ b/addons/base_action_rule/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-13 18:35+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-08 09:49+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-09 06:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -32,6 +32,16 @@ msgstr "" "- In deze zelfde \"Zoek\" weergave, selecteer het menu \"Sla huidig filter " "op\", geef een naam in en voeg de optie \"Deel met alle gebruikers\" toe." +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" +"Wanneer moet de conditie worden aangeroepen. Indien aanwezig wordt deze " +"aangevinkt door de planner. Indien leeg, wordt deze aangevinkt bij het " +"aanmaken of bijwerken." + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" @@ -302,13 +312,13 @@ msgstr "" "

\n" " Klik om een nieuwe automatische actie regel in te stellen\n" "

\n" -" gebruik automatische acties, om automatisch acties aan te " +" Gebruik automatische acties, om automatisch acties aan te " "roepen\n" " voor verschillende schermen. Bijvoorbeeld: Een lead " "aangemaakt door\n" " een specifieke gebruiker kan automatisch worden toegewezen " "aan een\n" -" specifiek verkoopteam. Of een prospect welke nog steeds d " +" specifiek verkoopteam. Of een prospect welke nog steeds de " "status 'in afwachting'\n" " heeft na 14 dagen activeert een herinnering e-mail.\n" "

\n" diff --git a/addons/base_action_rule/i18n/pl.po b/addons/base_action_rule/i18n/pl.po index 70d6a0d226e..4cbeaf70123 100644 --- a/addons/base_action_rule/i18n/pl.po +++ b/addons/base_action_rule/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po index 30b537fb1bd..5af731cf9c0 100644 --- a/addons/base_action_rule/i18n/pt.po +++ b/addons/base_action_rule/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-16 12:59+0000\n" "Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/pt_BR.po b/addons/base_action_rule/i18n/pt_BR.po index 59712b756b2..8f78d139345 100644 --- a/addons/base_action_rule/i18n/pt_BR.po +++ b/addons/base_action_rule/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -33,6 +33,13 @@ msgstr "" "o nome (Ex: Criar o 01/01/2012) e adicione a opção \"Compartilhar com todos " "os usuários\"" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/ro.po b/addons/base_action_rule/i18n/ro.po index 84a54ff4240..556e88f8e95 100644 --- a/addons/base_action_rule/i18n/ro.po +++ b/addons/base_action_rule/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-19 13:22+0000\n" -"Last-Translator: Fekete Mihai \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-01-20 05:17+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -33,6 +33,13 @@ msgstr "" "Actual\", introduceti numele (De exemplu: Creati data 01/01/2012) si " "adaugati optiunea \"Imparte cu toti utilizatorii\"." +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index 58226ca3241..820696bc705 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-22 16:10+0000\n" "Last-Translator: Denis Karataev \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-01-23 06:03+0000\n" -"X-Generator: Launchpad (build 16441)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" @@ -58,7 +65,7 @@ msgstr "Добавить подписчиков" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Указать ответственного" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -71,7 +78,7 @@ 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 @@ -142,7 +149,7 @@ msgstr "Часы" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Для создания нового фильтра:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -167,7 +174,7 @@ msgstr "" #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Условие фильтра" #. module: base_action_rule #: view:base.action.rule:0 @@ -216,7 +223,7 @@ msgstr "Тип задержки" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Действия сервера для запуска" #. module: base_action_rule #: help:base.action.rule,active:0 @@ -246,7 +253,7 @@ msgstr "Минуты" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +msgstr "Модель связанного документа" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 @@ -310,4 +317,4 @@ msgstr "Действия сервера" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Тема" diff --git a/addons/base_action_rule/i18n/sl.po b/addons/base_action_rule/i18n/sl.po index 553657fc185..a180b0a59e6 100644 --- a/addons/base_action_rule/i18n/sl.po +++ b/addons/base_action_rule/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-31 00:23+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/sq.po b/addons/base_action_rule/i18n/sq.po index 22cf97fd316..27bd58a977f 100644 --- a/addons/base_action_rule/i18n/sq.po +++ b/addons/base_action_rule/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/sr.po b/addons/base_action_rule/i18n/sr.po index ec22dc0b45c..f10cf81aace 100644 --- a/addons/base_action_rule/i18n/sr.po +++ b/addons/base_action_rule/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:14+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/sr@latin.po b/addons/base_action_rule/i18n/sr@latin.po index 6539a330234..a225c1794a9 100644 --- a/addons/base_action_rule/i18n/sr@latin.po +++ b/addons/base_action_rule/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/sv.po b/addons/base_action_rule/i18n/sv.po index 0e96f8afbb0..4d838780fe4 100644 --- a/addons/base_action_rule/i18n/sv.po +++ b/addons/base_action_rule/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/tr.po b/addons/base_action_rule/i18n/tr.po index 18ea4652e0c..83e1ff3eea5 100644 --- a/addons/base_action_rule/i18n/tr.po +++ b/addons/base_action_rule/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-06 10:45+0000\n" -"Last-Translator: Ahmet Altınışık \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-09 14:31+0000\n" +"Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-11 06:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -29,6 +29,18 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"-Bu aynı \"Arama\" görünümünde \"Geçerli Süzgeci Kaydet\" menüsünü seçin, " +"adını girin (Örn: 01/01/2012 yi oluştur) ve \"Bütün kullanıcılarla paylaş\" " +"seçeneğini ekleyin" + +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" +"Koşul ne zaman başlatılmalıdır. Eğer mevcutsa, planlamacı tarafından " +"denetlenecektir. Boşsa, oluşturma ve güncelleme sırasında denetlenecektir." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +50,7 @@ msgstr "Eylem Kuralları" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Koşul olarak bir süzgeç ya da bir zaman sayacı seçin." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,12 +60,12 @@ msgstr "Sorumlu" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Örnekler: eposta anımsatıcıları, nesne servisi çağır, v.b." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "İzleyici Ekle" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 @@ -67,6 +79,9 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"Tetikleme tarihinden sonraki gecikme. Tetikleme tarihinden önce bir gecikme " +"gerektiriyorsa eksş bir değer girebilirsiniz, toplantı tarihinden 15 dakika " +"önce anımsatma gönderme gibi." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test @@ -106,7 +121,7 @@ msgstr "Durum" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Güncelleme Süzgeçi Öncesi" #. module: base_action_rule #: view:base.action.rule:0 @@ -117,7 +132,7 @@ msgstr "Eylem Kuralı" #: help:base.action.rule,filter_id:0 msgid "" "If present, this condition must be satisfied after the update of the record." -msgstr "" +msgstr "Varsa, bu koşul kaydın güncellenmesinden sonra tatminkar olmalıdır." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,12 +142,12 @@ msgstr "Değiştirilecek Alanlar" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Bu yüzden süzgeçin bu sayfada olması gerekir." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Güncelleme Süzgeçi Sonrası" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +157,7 @@ msgstr "Saatler" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Yeni bir süzgeç oluşturmak için:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -163,11 +178,15 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"Bir işlem kuralı, \"İlişkili Belge Model\"ini oluştururken ya da " +"değiştirirken denetlenir. Önkoşul süzgeci, değiştirilmeden sonraki eski " +"koşul denetlenirken değiştirilmeden hemen önce denetlenir. Bundan dolayı bir " +"önkoşul süzgeci oluşturulma sırasında çalışmayacaktır." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Süzgeç Koşulu" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +195,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- \"İlişkili Belge Modeli\" sayfanıza gidin ve \"Arama\" görünümündeki " +"süzgeç parametrelerini doldurun (Adaylara/Fırsatlara göre süzgeç örnekleri: " +"Oluşturma Tarihi \"eşittir\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -216,12 +238,12 @@ msgstr "Gecikme türü" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Çalıştırılacak sunucu işlemleri" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "İşaret kaldırılırsa, kural gizlenecek ve çalıştırılamayacaktır." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -252,7 +274,7 @@ msgstr "İlgili Döküman Modeli" #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." -msgstr "" +msgstr "Varsa, bu koşul kaydın güncellenmesinden önce tatminkar olmalıdır." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -280,6 +302,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir otomatik işlem kuralı ayarlamak için tıklayın. \n" +"

\n" +" Çeşitli ekranlarda otomatik tetikleme işlemleri için " +"otomatik\n" +" işlemler kullanın. Örnek: belirli bir kullanıcı tarafından " +"oluşturulan\n" +" bir aday otomatik olarak bir satış takımına ayarlanabilir ya " +"da bir fırsat\n" +" hala 14 günlük bir bekleme durumundayken bir otomatik " +"eposta\n" +" anımsatmasını tetikleyebilir.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po index 945212a9d8e..0e542afe263 100644 --- a/addons/base_action_rule/i18n/zh_CN.po +++ b/addons/base_action_rule/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_action_rule/i18n/zh_TW.po b/addons/base_action_rule/i18n/zh_TW.po index 71bef65f0c5..b8665dd9e2c 100644 --- a/addons/base_action_rule/i18n/zh_TW.po +++ b/addons/base_action_rule/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-31 03:34+0000\n" "Last-Translator: Charles Hsu \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-02-01 05:49+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -30,6 +30,13 @@ msgid "" "all users\"" msgstr "" +#. module: base_action_rule +#: help:base.action.rule,trg_date_id:0 +msgid "" +"When should the condition be triggered. If present, will be checked by the " +"scheduler. If empty, will be checked at creation and update." +msgstr "" + #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule msgid "Action Rules" diff --git a/addons/base_calendar/base_calendar.py b/addons/base_calendar/base_calendar.py index ab0d8d324b4..25bfcac448c 100644 --- a/addons/base_calendar/base_calendar.py +++ b/addons/base_calendar/base_calendar.py @@ -858,7 +858,9 @@ class calendar_alarm(osv.osv): if hasattr(res_obj, 'rrule') and res_obj.rrule: event_date = datetime.strptime(res_obj.date, '%Y-%m-%d %H:%M:%S') - recurrent_dates = get_recurrent_dates(res_obj.rrule, res_obj.exdate, event_date, res_obj.exrule) + #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': diff --git a/addons/base_calendar/base_calendar_data.xml b/addons/base_calendar/base_calendar_data.xml index 727a0703db2..64aa7ba59b6 100644 --- a/addons/base_calendar/base_calendar_data.xml +++ b/addons/base_calendar/base_calendar_data.xml @@ -126,7 +126,7 @@ Run Event Reminder - 1 + 5 minutes -1 diff --git a/addons/base_calendar/base_calendar_view.xml b/addons/base_calendar/base_calendar_view.xml index e3ad980dae7..92ffad4be9a 100644 --- a/addons/base_calendar/base_calendar_view.xml +++ b/addons/base_calendar/base_calendar_view.xml @@ -70,7 +70,7 @@
diff --git a/addons/base_calendar/i18n/af.po b/addons/base_calendar/i18n/af.po index 143ce4dc8ae..e8f0ec1c231 100644 --- a/addons/base_calendar/i18n/af.po +++ b/addons/base_calendar/i18n/af.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "Uitnodig besonderhede" msgid "Fourth" msgstr "Vierde" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Beskikbaar" @@ -249,7 +243,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fout!" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Waarskuwing!" @@ -525,7 +519,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -638,6 +632,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -744,7 +743,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1164,11 +1163,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1203,12 +1197,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1457,7 +1450,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1470,7 +1463,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1567,7 +1560,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/ar.po b/addons/base_calendar/i18n/ar.po index 34de1445a45..6aa9b548531 100644 --- a/addons/base_calendar/i18n/ar.po +++ b/addons/base_calendar/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-27 19:55+0000\n" "Last-Translator: gehad shaat \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "تفاصيل الدعوة" msgid "Fourth" msgstr "رابعاً" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "المستخدمون" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "المنطقة الزمنية" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "حرّ" @@ -249,7 +243,7 @@ msgid "To" msgstr "إلى" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "خطأ!" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "تحذير!" @@ -524,7 +518,7 @@ msgid "Event alarm information" msgstr "معلومات عن منبه الحدث" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -637,6 +631,11 @@ msgstr "عام لكل الموظفيين" msgid "hours" msgstr "ساعات" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -743,7 +742,7 @@ msgid "Declined" msgstr "مرفوض" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1166,11 +1165,6 @@ msgstr "تكرار كل (يوم/أسبوع/شهر/سنة)" msgid "All Day?" msgstr "طوال اليوم؟" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "إلغاء" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1206,12 +1200,11 @@ msgid "Select Weekdays" msgstr "اختر أيام الأسبوع" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "مشغول" @@ -1462,7 +1455,7 @@ msgid "Weekday" msgstr "يوم العمل" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "الفترة لا يمكن أن تكون بالسالب (-)" @@ -1475,7 +1468,7 @@ msgid "By day" msgstr "باليوم" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "يجب أن تحدد تاريخ الدعوة أولا" @@ -1572,7 +1565,6 @@ msgstr "الثّانية" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "متفرّغ/مشغول" @@ -1614,3 +1606,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "الخامس" + +#~ msgid "Users" +#~ msgstr "المستخدمون" + +#~ msgid "Cancel" +#~ msgstr "إلغاء" diff --git a/addons/base_calendar/i18n/base_calendar.pot b/addons/base_calendar/i18n/base_calendar.pot index 8e9433af7d0..2b2ac7a79ad 100644 --- a/addons/base_calendar/i18n/base_calendar.pot +++ b/addons/base_calendar/i18n/base_calendar.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -95,11 +95,6 @@ msgstr "" msgid "Fourth" msgstr "" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -167,7 +162,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "" @@ -245,7 +239,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -355,10 +349,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -515,7 +509,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -628,6 +622,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -734,7 +733,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1148,11 +1147,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "

\n" @@ -1181,12 +1175,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1428,7 +1421,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1441,7 +1434,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1538,7 +1531,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/bg.po b/addons/base_calendar/i18n/bg.po index c7b2fcbd668..17da6e92f37 100644 --- a/addons/base_calendar/i18n/bg.po +++ b/addons/base_calendar/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Детайли за покана" msgid "Fourth" msgstr "Четвърти" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Потребители" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Часови пояс" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Свободен" @@ -251,7 +245,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Грешка!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Предупреждение!" @@ -525,7 +519,7 @@ msgid "Event alarm information" msgstr "Информация за аларма на събитие" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -638,6 +632,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -744,7 +743,7 @@ msgid "Declined" msgstr "Отказано" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1165,11 +1164,6 @@ msgstr "Повтаряй всеки (Дни/Седмица/Месец/Годи msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Отказ" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1206,12 +1200,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Зает" @@ -1460,7 +1453,7 @@ msgid "Weekday" msgstr "Ден от седмицата" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1473,7 +1466,7 @@ msgid "By day" msgstr "По дни" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1570,7 +1563,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Свободен/зает" @@ -1608,3 +1600,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Пети" + +#~ msgid "Users" +#~ msgstr "Потребители" + +#~ msgid "Cancel" +#~ msgstr "Отказ" diff --git a/addons/base_calendar/i18n/bn.po b/addons/base_calendar/i18n/bn.po index 1ee87ee4800..6d6e7f24925 100644 --- a/addons/base_calendar/i18n/bn.po +++ b/addons/base_calendar/i18n/bn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bengali \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "" msgid "Fourth" msgstr "" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "টাইমজোন" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "ফ্রী" @@ -249,7 +243,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "ভুল" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/bs.po b/addons/base_calendar/i18n/bs.po index 314351589ef..ca4fe7cb8e4 100644 --- a/addons/base_calendar/i18n/bs.po +++ b/addons/base_calendar/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "" msgid "Fourth" msgstr "" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "" @@ -249,7 +243,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/ca.po b/addons/base_calendar/i18n/ca.po index 96e0f84bf62..ec1736d7fea 100644 --- a/addons/base_calendar/i18n/ca.po +++ b/addons/base_calendar/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detalls de la invitació" msgid "Fourth" msgstr "Quart" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Usuaris" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Zona horària" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Lliure" @@ -251,7 +245,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Error!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Avís!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Informació de l'avís de l'esdeveniment" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -640,6 +634,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -747,7 +746,7 @@ msgid "Declined" msgstr "Rebutjat" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1173,11 +1172,6 @@ msgstr "Repeteix cada (dies/setmana/mes/any)" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Canceŀla" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1214,12 +1208,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Ocupat" @@ -1474,7 +1467,7 @@ msgid "Weekday" msgstr "Dia de la setmana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1487,7 +1480,7 @@ msgid "By day" msgstr "Per dia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1585,7 +1578,6 @@ msgstr "Segon" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Lliure/Ocupat" @@ -1628,3 +1620,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Cinquè" + +#~ msgid "Users" +#~ msgstr "Usuaris" + +#~ msgid "Cancel" +#~ msgstr "Canceŀla" diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index bc88b5e0cb2..6192a4f7338 100644 --- a/addons/base_calendar/i18n/cs.po +++ b/addons/base_calendar/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-13 19:13+0000\n" "Last-Translator: Radomil Urbánek \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-02-14 05:36+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Podrobnosti pozvání" msgid "Fourth" msgstr "Čtvrtý" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Uživatelé" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Časové pásmo" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Volno" @@ -251,7 +245,7 @@ msgid "To" msgstr "Adresát" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Chyba!" @@ -365,10 +359,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varování!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Informace budíku události" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Počet nemůže být záporný nebo nulový." @@ -640,6 +634,11 @@ msgstr "Veřejné pro zaměstnance" msgid "hours" msgstr "hodin" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Odmítnuto" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Seskupení podle data není podporováno, použijte zobrazení kalendáře." @@ -1168,11 +1167,6 @@ msgstr "Opakovat každý (den/týden/měsíc/rok)" msgid "All Day?" msgstr "Celodenní?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Zrušit" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1215,12 +1209,11 @@ msgid "Select Weekdays" msgstr "Vyberte dny v týdnu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Zaneprázdněn" @@ -1478,7 +1471,7 @@ msgid "Weekday" msgstr "Den v týdnu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Rozsah nemůže být záporný." @@ -1491,7 +1484,7 @@ msgid "By day" msgstr "Podle dne" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Nejprve musíte určit datum pozvání." @@ -1588,7 +1581,6 @@ msgstr "Druhý" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Volný/Zaneprázdněný" @@ -1626,3 +1618,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Pátý" + +#~ msgid "Users" +#~ msgstr "Uživatelé" + +#~ msgid "Cancel" +#~ msgstr "Zrušit" diff --git a/addons/base_calendar/i18n/da.po b/addons/base_calendar/i18n/da.po index 6bb2e21e8fe..c9f169b3b29 100644 --- a/addons/base_calendar/i18n/da.po +++ b/addons/base_calendar/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "" msgid "Fourth" msgstr "" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Ledig" @@ -249,7 +243,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fejl!" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Advarsel!" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/de.po b/addons/base_calendar/i18n/de.po index 5edcf929b59..7cf23842d59 100644 --- a/addons/base_calendar/i18n/de.po +++ b/addons/base_calendar/i18n/de.po @@ -7,16 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-07 22:48+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-20 23:58+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -102,11 +102,6 @@ msgstr "Details Einladung" msgid "Fourth" msgstr "4ter" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Benutzer" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -174,7 +169,6 @@ msgstr "Zeitzone" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Verfügbar" @@ -252,7 +246,7 @@ msgid "To" msgstr "Bis" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fehler !" @@ -366,10 +360,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Warnung!" @@ -530,7 +524,7 @@ msgid "Event alarm information" msgstr "Termin Erinnerung" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Sie können nicht negativ oder 0 sein" @@ -643,6 +637,11 @@ msgstr "Öffentlich für Mitarbeiter" msgid "hours" msgstr "Stunden" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "Veranstaltung stornieren" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -749,7 +748,7 @@ msgid "Declined" msgstr "Abgesagt" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1177,11 +1176,6 @@ msgstr "Wiederholungsintervall (Tag/Woche/Monat/Jahr)" msgid "All Day?" msgstr "Gesamter Tag?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Abbrechen" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1226,12 +1220,11 @@ msgid "Select Weekdays" msgstr "Auswahl Wochentage" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Beschäftigt" @@ -1492,7 +1485,7 @@ msgid "Weekday" msgstr "Wochentag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Zeitraum kann nicht negativ sein" @@ -1505,7 +1498,7 @@ msgid "By day" msgstr "Nach Tag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Als erstes müssen Sie dann das Datum der Einladung akzeptieren." @@ -1602,7 +1595,6 @@ msgstr "Sekunde" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Verfügb./ Beschäft." @@ -1646,3 +1638,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "5ter" + +#~ msgid "Users" +#~ msgstr "Benutzer" + +#~ msgid "Cancel" +#~ msgstr "Abbrechen" diff --git a/addons/base_calendar/i18n/el.po b/addons/base_calendar/i18n/el.po index f0eed696ebb..8bc72e1dd3f 100644 --- a/addons/base_calendar/i18n/el.po +++ b/addons/base_calendar/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Λεπτομέρειες πρόσκλησης" msgid "Fourth" msgstr "Τέταρτο" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Χρήστες" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Ζώνη ώρας" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Ελεύθερος/η" @@ -251,7 +245,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Λάθος!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Προειδοποίηση" @@ -525,7 +519,7 @@ msgid "Event alarm information" msgstr "Πληροφορίες Υπενθύμισης Γεγονότος" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -638,6 +632,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -745,7 +744,7 @@ msgid "Declined" msgstr "Απορρίφθηκε" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1167,11 +1166,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Ακύρωση" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1206,12 +1200,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Απασχολημένος/η" @@ -1462,7 +1455,7 @@ msgid "Weekday" msgstr "Καθημερινή" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1475,7 +1468,7 @@ msgid "By day" msgstr "Κατά ημέρα" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1572,7 +1565,6 @@ msgstr "Δευτερόλεπτο" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Ελεύθερο/Απασχολημένο" @@ -1610,3 +1602,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Πέμπτος" + +#~ msgid "Cancel" +#~ msgstr "Ακύρωση" + +#~ msgid "Users" +#~ msgstr "Χρήστες" diff --git a/addons/base_calendar/i18n/es.po b/addons/base_calendar/i18n/es.po index 01280234f6b..a93440ab95d 100644 --- a/addons/base_calendar/i18n/es.po +++ b/addons/base_calendar/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detalles de la invitación" msgid "Fourth" msgstr "Cuarto" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Usuarios" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Zona horaria" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Libre" @@ -251,7 +245,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -365,10 +359,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Aviso!" @@ -529,7 +523,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "La cuenta no puede ser negativa o cero" @@ -642,6 +636,11 @@ msgstr "Público para empleados" msgid "hours" msgstr "horas" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -748,7 +747,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1176,11 +1175,6 @@ msgstr "Repetir cada (días/semana/mes/año)" msgid "All Day?" msgstr "¿Todo el día?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Cancelar" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1225,12 +1219,11 @@ msgid "Select Weekdays" msgstr "Seleccione días de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Ocupado" @@ -1493,7 +1486,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "El intervalo no puede ser negativo" @@ -1506,7 +1499,7 @@ msgid "By day" msgstr "Por día" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Primero debe especificar la fecha de la invitación." @@ -1603,7 +1596,6 @@ msgstr "Segundo" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Libre/Ocupado" @@ -1647,3 +1639,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Quinto" + +#~ msgid "Users" +#~ msgstr "Usuarios" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" diff --git a/addons/base_calendar/i18n/es_CR.po b/addons/base_calendar/i18n/es_CR.po index 90d92d206fa..6931e3c8d89 100644 --- a/addons/base_calendar/i18n/es_CR.po +++ b/addons/base_calendar/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detalles de la invitación" msgid "Fourth" msgstr "Cuarto" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Usuarios" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Zona horaria" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Libre" @@ -251,7 +245,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Aviso!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -640,6 +634,11 @@ msgstr "Público para empleados" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1172,11 +1171,6 @@ msgstr "Repetir cada (días/semana/mes/año)" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Cancelar" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1213,12 +1207,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Ocupado" @@ -1474,7 +1467,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1487,7 +1480,7 @@ msgid "By day" msgstr "Por día" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1584,7 +1577,6 @@ msgstr "Segundo" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Libre/Ocupado" @@ -1628,3 +1620,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Quinto" + +#~ msgid "Users" +#~ msgstr "Usuarios" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" diff --git a/addons/base_calendar/i18n/es_EC.po b/addons/base_calendar/i18n/es_EC.po index 9921048e7c9..115d2de2885 100644 --- a/addons/base_calendar/i18n/es_EC.po +++ b/addons/base_calendar/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detalles de la invitación" msgid "Fourth" msgstr "Cuarto" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Libre" @@ -251,7 +245,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Advertencia!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -640,6 +634,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1166,11 +1165,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1205,12 +1199,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1459,7 +1452,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1472,7 +1465,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1569,7 +1562,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/es_MX.po b/addons/base_calendar/i18n/es_MX.po index fcb00c6d478..a0100f0ef98 100644 --- a/addons/base_calendar/i18n/es_MX.po +++ b/addons/base_calendar/i18n/es_MX.po @@ -1,929 +1,879 @@ -# Spanish translation for openobject-addons -# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# Spanish (Mexico) translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2010. +# FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2011-01-11 11:14+0000\n" -"PO-Revision-Date: 2011-01-18 01:17+0000\n" -"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " -"\n" -"Language-Team: Spanish \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-24 15:25+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:52+0000\n" -"X-Generator: Launchpad (build 13830)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "El evento comienza" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -msgid "Hourly" -msgstr "Cada hora" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Required to Join" -msgstr "Requerido para unirse" +#: view:calendar.event:0 +msgid "My Events" +msgstr "" #. module: base_calendar #: help:calendar.event,exdate:0 #: help:calendar.todo,exdate:0 +#: help:crm.meeting,exdate:0 msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" -"Esta propiedad define la lista de excepciones de fecha/hora para un evento " -"de calendario recurrente." #. module: base_calendar -#: constraint:res.users:0 -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" - -#. module: base_calendar -#: field:calendar.event.edit.all,name:0 -msgid "Title" -msgstr "Título" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 -msgid "Monthly" -msgstr "Mensual" +#: selection:crm.meeting,rrule_type:0 +msgid "Week(s)" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 -msgid "Invited User" -msgstr "Usuario invitado" +#: field:calendar.event,we:0 +#: field:calendar.todo,we:0 +#: field:crm.meeting,we:0 +msgid "Wed" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 -msgid "Invitation" -msgstr "Invitación" +#: selection:calendar.attendee,cutype:0 +msgid "Unknown" +msgstr "" #. module: base_calendar #: help:calendar.event,recurrency:0 #: help:calendar.todo,recurrency:0 +#: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "Reunión periódica" +msgstr "" + +#. module: base_calendar +#: model:crm.meeting.type,name:base_calendar.categ_meet5 +msgid "Feedback Meeting" +msgstr "" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm msgid "Alarms" -msgstr "Alarmas" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 +#: selection:crm.meeting,week_list:0 msgid "Sunday" -msgstr "Domingo" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 #: field:calendar.attendee,role:0 msgid "Role" -msgstr "Rol" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 #: view:calendar.event:0 +#: view:crm.meeting:0 msgid "Invitation details" -msgstr "Detalles de la invitación" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 +#: selection:crm.meeting,byday:0 msgid "Fourth" -msgstr "Cuarto" +msgstr "" #. module: base_calendar -#: field:calendar.event,show_as:0 -#: field:calendar.todo,show_as:0 -msgid "Show as" -msgstr "Mostrar como" - -#. module: base_calendar -#: field:base.calendar.set.exrule,day:0 -#: selection:base.calendar.set.exrule,select1:0 #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 #: field:calendar.todo,day:0 #: selection:calendar.todo,select1:0 +#: field:crm.meeting,day:0 +#: selection:crm.meeting,select1:0 msgid "Date of month" -msgstr "Día del mes" +msgstr "" #. module: base_calendar #: selection:calendar.event,class:0 #: selection:calendar.todo,class:0 +#: selection:crm.meeting,class:0 msgid "Public" -msgstr "Público" +msgstr "" #. module: base_calendar -#: view:calendar.event:0 -msgid " " -msgstr " " +#: selection:calendar.alarm,trigger_interval:0 +#: selection:res.alarm,trigger_interval:0 +msgid "Hours" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "March" -msgstr "Marzo" +msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:414 -#: code:addons/base_calendar/wizard/base_calendar_set_exrule.py:90 -#, python-format -msgid "Warning !" -msgstr "¡Aviso!" +#: help:calendar.attendee,cutype:0 +msgid "Specify the type of Invitation" +msgstr "" + +#. module: base_calendar +#: view:crm.meeting:0 +#: field:crm.meeting,message_unread:0 +msgid "Unread Messages" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 +#: selection:crm.meeting,week_list:0 msgid "Friday" -msgstr "Viernes" +msgstr "" #. module: base_calendar #: field:calendar.event,allday:0 #: field:calendar.todo,allday:0 +#: field:crm.meeting,allday:0 msgid "All Day" -msgstr "Todo el día" +msgstr "" #. module: base_calendar -#: field:base.calendar.set.exrule,select1:0 -#: field:calendar.event,select1:0 -#: field:calendar.todo,select1:0 -msgid "Option" -msgstr "Opción" +#: field:calendar.event,vtimezone:0 +#: field:calendar.todo,vtimezone:0 +#: field:crm.meeting,vtimezone:0 +msgid "Timezone" +msgstr "" #. module: base_calendar #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 -#: selection:res.users,availability:0 +#: selection:crm.meeting,show_as:0 msgid "Free" -msgstr "Libre" +msgstr "" + +#. module: base_calendar +#: help:crm.meeting,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" #. module: base_calendar #: help:calendar.attendee,rsvp:0 msgid "Indicats whether the favor of a reply is requested" -msgstr "Indica si es requerida la confirmación de una respuesta." +msgstr "" #. module: base_calendar -#: model:ir.model,name:base_calendar.model_ir_attachment -msgid "ir.attachment" -msgstr "ir.adjunto" +#: field:calendar.alarm,alarm_id:0 +msgid "Basic Alarm" +msgstr "" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 msgid "The users that the original request was delegated to" -msgstr "Los usuarios a los que les fue delegado la petición original" +msgstr "" #. module: base_calendar #: field:calendar.attendee,ref:0 msgid "Event Ref" -msgstr "Ref. evento" +msgstr "" #. module: base_calendar -#: field:base.calendar.set.exrule,we:0 -#: field:calendar.event,we:0 -#: field:calendar.todo,we:0 -msgid "Wed" -msgstr "Mié" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Show Time as" -msgstr "Mostrar hora como" - -#. module: base_calendar -#: field:base.calendar.set.exrule,tu:0 #: field:calendar.event,tu:0 #: field:calendar.todo,tu:0 +#: field:crm.meeting,tu:0 msgid "Tue" -msgstr "Mar" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,rrule_type:0 -#: selection:calendar.todo,rrule_type:0 -msgid "Yearly" -msgstr "Anualmente" +#: selection:calendar.event,byday:0 +#: selection:calendar.todo,byday:0 +#: selection:crm.meeting,byday:0 +msgid "Third" +msgstr "" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event ends" -msgstr "El evento finaliza" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 +#: selection:crm.meeting,byday:0 msgid "Last" -msgstr "Última" +msgstr "" #. module: base_calendar -#: help:calendar.attendee,state:0 -msgid "Status of the attendee's participation" -msgstr "Estado de la participación de los asistentes" +#: help:crm.meeting,message_ids:0 +msgid "Messages and communication history" +msgstr "" #. module: base_calendar -#: selection:calendar.attendee,cutype:0 -msgid "Room" -msgstr "Sala" +#: field:crm.meeting,message_ids:0 +msgid "Messages" +msgstr "" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.todo,freq:0 #: selection:res.alarm,trigger_interval:0 msgid "Days" -msgstr "Días" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 #: view:calendar.event:0 -msgid "Invitation Detail" -msgstr "Detalle de la invitación" +msgid "To" +msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1355 -#: code:addons/base_calendar/wizard/base_calendar_invite_attendee.py:96 -#: code:addons/base_calendar/wizard/base_calendar_invite_attendee.py:143 -#: code:addons/base_calendar/wizard/base_calendar_set_exrule.py:128 -#: code:addons/base_calendar/wizard/base_calendar_set_exrule.py:136 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" -msgstr "¡Error!" +msgstr "" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "Presidente" +msgstr "" + +#. module: base_calendar +#: view:crm.meeting:0 +msgid "My Meetings" +msgstr "" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Procedure" -msgstr "Procedimiento" +msgstr "" + +#. module: base_calendar +#: field:calendar.event,recurrent_id:0 +#: field:calendar.todo,recurrent_id:0 +#: field:crm.meeting,recurrent_id:0 +msgid "Recurrent ID" +msgstr "" #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 msgid "Cancelled" -msgstr "Cancelada" +msgstr "" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 #: selection:res.alarm,trigger_interval:0 msgid "Minutes" -msgstr "Minutos" +msgstr "" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Display" -msgstr "Mostrar" +msgstr "" #. module: base_calendar -#: view:calendar.event.edit.all:0 -msgid "Edit all Occurrences" -msgstr "Editar todas las ocurrencias" +#: help:calendar.attendee,state:0 +msgid "Status of the attendee's participation" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 -msgid "Invitation type" -msgstr "Tipo de invitación" +#: view:crm.meeting:0 +msgid "Mail To" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -msgid "Secondly" -msgstr "En segundo lugar" +#: field:crm.meeting,name:0 +msgid "Meeting Subject" +msgstr "" #. module: base_calendar -#: field:calendar.alarm,event_date:0 -#: field:calendar.attendee,event_date:0 #: view:calendar.event:0 -msgid "Event Date" -msgstr "Fecha evento" +msgid "End of Recurrence" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 #: view:calendar.event:0 msgid "Group By..." -msgstr "Agrupar por..." - -#. module: base_calendar -#: help:base_calendar.invite.attendee,email:0 -msgid "Provide external email address who will receive this invitation." msgstr "" -"Proporcione las direcciones de correo externas de quienes recibiran esta " -"invitacion." #. module: base_calendar -#: model:ir.module.module,description:base_calendar.module_meta_information -msgid "" -"Full featured calendar system that supports:\n" -" - Calendar of events\n" -" - Alerts (create requests)\n" -" - Recurring events\n" -" - Invitations to people" +#: view:calendar.event:0 +msgid "Recurrency Option" msgstr "" -"Completo sistema de calendario que soporta:\n" -" - Calendario de eventos\n" -" - Alertas (crea peticiones)\n" -" - Eventos recursivos\n" -" - Invitación de personas" #. module: base_calendar -#: help:calendar.attendee,cutype:0 -msgid "Specify the type of Invitation" -msgstr "Especifique el tipo de invitación" +#: view:calendar.event:0 +msgid "Choose day where repeat the meeting" +msgstr "" #. module: base_calendar -#: selection:calendar.event,freq:0 -#: selection:calendar.todo,freq:0 -msgid "Years" -msgstr "Años" +#: view:crm.meeting:0 +#: model:ir.actions.act_window,name:base_calendar.action_crm_meeting +msgid "Meetings" +msgstr "" + +#. module: base_calendar +#: field:calendar.event,recurrent_id_date:0 +#: field:calendar.todo,recurrent_id_date:0 +#: field:crm.meeting,recurrent_id_date:0 +msgid "Recurrent ID date" +msgstr "" #. module: base_calendar #: field:calendar.alarm,event_end_date:0 #: field:calendar.attendee,event_end_date:0 msgid "Event End Date" -msgstr "Fecha del final del evento" +msgstr "" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "Participación opcional" +msgstr "" #. module: base_calendar -#: field:calendar.event,date_deadline:0 -#: field:calendar.todo,date_deadline:0 -msgid "Deadline" -msgstr "Fecha límite" +#: help:crm.meeting,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: base_calendar -#: code:addons/base_calendar/base_calendar.py:385 -#: code:addons/base_calendar/base_calendar.py:1088 -#: code:addons/base_calendar/base_calendar.py:1090 +#: code:addons/base_calendar/base_calendar.py:399 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" -msgstr "¡Aviso!" +msgstr "" #. module: base_calendar #: help:calendar.event,active:0 #: help:calendar.todo,active:0 +#: help:crm.meeting,active:0 msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" -"Si el campo activo se establece a verdadero, se omitirá la alarma del " -"evento, sin embargo no se eliminará." #. module: base_calendar -#: model:ir.module.module,shortdesc:base_calendar.module_meta_information -msgid "Basic Calendar Functionality" -msgstr "Funcionalidad básica del calendario" +#: field:calendar.alarm,repeat:0 +#: field:calendar.event,count:0 +#: field:calendar.todo,count:0 +#: field:crm.meeting,count:0 +#: field:res.alarm,repeat:0 +msgid "Repeat" +msgstr "" #. module: base_calendar #: field:calendar.event,organizer:0 #: field:calendar.event,organizer_id:0 #: field:calendar.todo,organizer:0 #: field:calendar.todo,organizer_id:0 +#: field:crm.meeting,organizer:0 +#: field:crm.meeting,organizer_id:0 msgid "Organizer" -msgstr "Organizador" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 #: view:calendar.event:0 #: field:calendar.event,user_id:0 #: field:calendar.todo,user_id:0 +#: field:crm.meeting,user_id:0 msgid "Responsible" -msgstr "Responsable" +msgstr "" #. module: base_calendar #: view:calendar.event:0 -#: model:res.request.link,name:base_calendar.request_link_meeting +#: model:res.request.link,name:base_calendar.request_link_event msgid "Event" -msgstr "Evento" - -#. module: base_calendar -#: help:calendar.event,edit_all:0 -#: help:calendar.todo,edit_all:0 -msgid "Edit all Occurrences of recurrent Meeting." -msgstr "Editar todas las ocurrencias de la reunión recurrente." +msgstr "" #. module: base_calendar #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "Before" -msgstr "Antes de" +msgstr "" #. module: base_calendar #: view:calendar.event:0 #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 +#: field:crm.meeting,date_open:0 +#: selection:crm.meeting,state:0 msgid "Confirmed" -msgstr "Confirmada" - -#. module: base_calendar -#: model:ir.actions.act_window,name:base_calendar.action_calendar_event_edit_all -msgid "Edit all events" -msgstr "Editar todos los eventos" +msgstr "" #. module: base_calendar #: field:calendar.alarm,attendee_ids:0 #: field:calendar.event,attendee_ids:0 +#: field:calendar.event,partner_ids:0 #: field:calendar.todo,attendee_ids:0 +#: field:calendar.todo,partner_ids:0 +#: field:crm.meeting,attendee_ids:0 +#: field:crm.meeting,partner_ids:0 msgid "Attendees" -msgstr "Asistentes" +msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Confirm" -msgstr "Confirmar" +msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_todo msgid "Calendar Task" -msgstr "Calendario de tareas" +msgstr "" #. module: base_calendar -#: field:base.calendar.set.exrule,su:0 #: field:calendar.event,su:0 #: field:calendar.todo,su:0 +#: field:crm.meeting,su:0 msgid "Sun" -msgstr "Dom" +msgstr "" #. module: base_calendar #: field:calendar.attendee,cutype:0 msgid "Invite Type" -msgstr "Tipo de invitación" - -#. module: base_calendar -#: help:calendar.attendee,partner_id:0 -msgid "Partner related to contact" -msgstr "Partner relacionado con el contacto" +msgstr "" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder details" -msgstr "Detalles del recordatorio" +msgstr "" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 msgid "Delegrated From" -msgstr "Delegado desde" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,select1:0 #: selection:calendar.event,select1:0 #: selection:calendar.todo,select1:0 +#: selection:crm.meeting,select1:0 msgid "Day of month" -msgstr "Día del mes" - -#. module: base_calendar -#: view:calendar.event:0 -#: field:calendar.event,location:0 -#: field:calendar.event.edit.all,location:0 -#: field:calendar.todo,location:0 -msgid "Location" -msgstr "Lugar" - -#. module: base_calendar -#: field:base_calendar.invite.attendee,send_mail:0 -msgid "Send mail?" -msgstr "¿Enviar email?" - -#. module: base_calendar -#: field:base_calendar.invite.attendee,email:0 -#: selection:calendar.alarm,action:0 -#: field:calendar.attendee,email:0 -msgid "Email" -msgstr "Correo electrónico" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Event Detail" -msgstr "Detalles del evento" - -#. module: base_calendar -#: selection:calendar.alarm,state:0 -msgid "Run" -msgstr "Ejecutar" - -#. module: base_calendar -#: field:calendar.event,exdate:0 -#: field:calendar.todo,exdate:0 -msgid "Exception Date/Times" -msgstr "Fecha/horas excepción" - -#. module: base_calendar -#: selection:calendar.event,class:0 -#: selection:calendar.todo,class:0 -msgid "Confidential" -msgstr "Confidencial" - -#. module: base_calendar -#: field:base.calendar.set.exrule,end_date:0 -#: field:calendar.event,end_date:0 -#: field:calendar.todo,end_date:0 -msgid "Repeat Until" -msgstr "Repetir hasta" - -#. module: base_calendar -#: model:ir.actions.act_window,help:base_calendar.action_res_alarm_view -msgid "" -"Create specific calendar alarms that may be assigned to calendar events or " -"meetings." msgstr "" -"Crear alarmas específicas que puedan ser asignadas a eventos de calendario o " -"reuniones." #. module: base_calendar -#: view:calendar.event:0 -msgid "Visibility" -msgstr "Visibilidad" +#: field:crm.meeting,message_follower_ids:0 +msgid "Followers" +msgstr "" #. module: base_calendar -#: field:calendar.attendee,rsvp:0 -msgid "Required Reply?" -msgstr "¿Respuesta requerida?" - -#. module: base_calendar -#: field:calendar.event,base_calendar_url:0 -#: field:calendar.todo,base_calendar_url:0 -msgid "Caldav URL" -msgstr "URL de caldav" - -#. module: base_calendar -#: view:base.calendar.set.exrule:0 -msgid "Select range to Exclude" -msgstr "Elija el rango a excluir" - -#. module: base_calendar -#: field:calendar.event,recurrent_uid:0 -#: field:calendar.todo,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID recurrente" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 -#: selection:calendar.event,month_list:0 -#: selection:calendar.todo,month_list:0 -msgid "July" -msgstr "Julio" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: selection:calendar.attendee,state:0 -msgid "Accepted" -msgstr "Aceptada" - -#. module: base_calendar -#: field:base.calendar.set.exrule,th:0 -#: field:calendar.event,th:0 -#: field:calendar.todo,th:0 -msgid "Thu" -msgstr "Jue" - -#. module: base_calendar -#: field:calendar.attendee,child_ids:0 -msgid "Delegrated To" -msgstr "Delegada en" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Required Reply" -msgstr "Respuesta requerida" - -#. module: base_calendar -#: selection:calendar.event,end_type:0 -#: selection:calendar.todo,end_type:0 -msgid "Forever" -msgstr "Siempre" +#: field:calendar.event,location:0 +#: field:calendar.todo,location:0 +#: field:crm.meeting,location:0 +msgid "Location" +msgstr "" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Participation required" -msgstr "Participación requerida" +msgstr "" #. module: base_calendar -#: view:base.calendar.set.exrule:0 -msgid "_Cancel" -msgstr "_Cancelar" +#: view:calendar.event:0 +#: field:calendar.event,show_as:0 +#: field:calendar.todo,show_as:0 +#: field:crm.meeting,show_as:0 +msgid "Show Time as" +msgstr "" + +#. module: base_calendar +#: selection:calendar.alarm,action:0 +#: field:calendar.attendee,email:0 +msgid "Email" +msgstr "" + +#. module: base_calendar +#: selection:calendar.attendee,cutype:0 +msgid "Room" +msgstr "" + +#. module: base_calendar +#: selection:calendar.alarm,state:0 +msgid "Run" +msgstr "" + +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_calendar_alarm +msgid "Event alarm information" +msgstr "" + +#. module: base_calendar +#: code:addons/base_calendar/base_calendar.py:1017 +#, python-format +msgid "Count cannot be negative or 0." +msgstr "" + +#. module: base_calendar +#: field:crm.meeting,create_date:0 +msgid "Creation Date" +msgstr "" + +#. module: base_calendar +#: view:crm.meeting:0 +#: model:ir.model,name:base_calendar.model_crm_meeting +#: model:res.request.link,name:base_calendar.request_link_meeting +msgid "Meeting" +msgstr "" + +#. module: base_calendar +#: selection:calendar.event,rrule_type:0 +#: selection:calendar.todo,rrule_type:0 +#: selection:crm.meeting,rrule_type:0 +msgid "Month(s)" +msgstr "" + +#. module: base_calendar +#: view:calendar.event:0 +msgid "Visibility" +msgstr "" + +#. module: base_calendar +#: field:calendar.attendee,rsvp:0 +msgid "Required Reply?" +msgstr "" + +#. module: base_calendar +#: field:calendar.event,base_calendar_url:0 +#: field:calendar.todo,base_calendar_url:0 +#: field:crm.meeting,base_calendar_url:0 +msgid "Caldav URL" +msgstr "" + +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_mail_wizard_invite +msgid "Invite wizard" +msgstr "" + +#. module: base_calendar +#: selection:calendar.event,month_list:0 +#: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 +msgid "July" +msgstr "" + +#. module: base_calendar +#: selection:calendar.attendee,state:0 +msgid "Accepted" +msgstr "" + +#. module: base_calendar +#: field:calendar.event,th:0 +#: field:calendar.todo,th:0 +#: field:crm.meeting,th:0 +msgid "Thu" +msgstr "" + +#. module: base_calendar +#: view:crm.meeting:0 +msgid "Meeting Details" +msgstr "" + +#. module: base_calendar +#: field:calendar.attendee,child_ids:0 +msgid "Delegrated To" +msgstr "" + +#. module: base_calendar +#: code:addons/base_calendar/crm_meeting.py:102 +#, python-format +msgid "The following contacts have no email address :" +msgstr "" + +#. module: base_calendar +#: selection:calendar.event,rrule_type:0 +#: selection:calendar.todo,rrule_type:0 +#: selection:crm.meeting,rrule_type:0 +msgid "Year(s)" +msgstr "" + +#. module: base_calendar +#: view:crm.meeting.type:0 +#: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type +#: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type +msgid "Meeting Types" +msgstr "" #. module: base_calendar #: field:calendar.event,create_date:0 #: field:calendar.todo,create_date:0 msgid "Created" -msgstr "Creada" +msgstr "" #. module: base_calendar #: selection:calendar.event,class:0 #: selection:calendar.todo,class:0 -msgid "Private" -msgstr "Privada" +#: selection:crm.meeting,class:0 +msgid "Public for Employees" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,rrule_type:0 -#: selection:calendar.todo,rrule_type:0 -msgid "Daily" -msgstr "Diariamente" +#: view:crm.meeting:0 +msgid "hours" +msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:385 -#, python-format -msgid "Can not Duplicate" -msgstr "No se puede duplicar" - -#. module: base_calendar -#: field:calendar.event,class:0 -#: field:calendar.todo,class:0 -msgid "Mark as" -msgstr "Marcar como" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: field:calendar.attendee,partner_address_id:0 -msgid "Contact" -msgstr "Contacto" - -#. module: base_calendar -#: help:calendar.event,rrule_type:0 -#: help:calendar.todo,rrule_type:0 -msgid "Let the event automatically repeat at that interval" -msgstr "Permite que el evento se repita automáticamente en ese intervalo" - -#. module: base_calendar -#: view:calendar.attendee:0 #: view:calendar.event:0 -msgid "Delegate" -msgstr "Delegar" +msgid "Cancel Event" +msgstr "" #. module: base_calendar -#: field:base_calendar.invite.attendee,partner_id:0 -#: view:calendar.attendee:0 #: field:calendar.attendee,partner_id:0 -msgid "Partner" -msgstr "Empresa" +msgid "Contact" +msgstr "" #. module: base_calendar -#: view:base_calendar.invite.attendee:0 -#: selection:base_calendar.invite.attendee,type:0 -msgid "Partner Contacts" -msgstr "Contactos de la empresa" +#: field:calendar.attendee,language:0 +msgid "Language" +msgstr "" #. module: base_calendar -#: view:base.calendar.set.exrule:0 -msgid "_Ok" -msgstr "_Aceptar" +#: field:calendar.event,end_date:0 +#: field:calendar.todo,end_date:0 +#: field:crm.meeting,end_date:0 +msgid "Repeat Until" +msgstr "" + +#. module: base_calendar +#: view:crm.meeting:0 +msgid "Options" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 +#: selection:crm.meeting,byday:0 msgid "First" -msgstr "Primera" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Privacy" -msgstr "Privacidad" - -#. module: base_calendar -#: field:calendar.event,vtimezone:0 -#: field:calendar.todo,vtimezone:0 -msgid "Timezone" -msgstr "Zona horaria" +msgstr "" #. module: base_calendar #: view:calendar.event:0 +#: view:crm.meeting:0 msgid "Subject" -msgstr "Asunto" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "September" -msgstr "Septiembre" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "December" -msgstr "Diciembre" +msgstr "" #. module: base_calendar -#: help:base_calendar.invite.attendee,send_mail:0 -msgid "Check this if you want to send an Email to Invited Person" -msgstr "Marque aquí si quiere enviar un correo a la persona invitada" +#: selection:calendar.event,week_list:0 +#: selection:calendar.todo,week_list:0 +#: selection:crm.meeting,week_list:0 +msgid "Tuesday" +msgstr "" + +#. module: base_calendar +#: field:crm.meeting,categ_ids:0 +msgid "Tags" +msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Availability" -msgstr "Disponibilidad" - -#. module: base_calendar -#: view:calendar.event.edit.all:0 -msgid "_Save" -msgstr "_Guardar" +msgstr "" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Individual" -msgstr "Individual" +msgstr "" #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 +#: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "Repetir x veces" +msgstr "" #. module: base_calendar #: field:calendar.alarm,user_id:0 msgid "Owner" -msgstr "Dueño" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 -msgid "Delegation Info" -msgstr "Información delegación" +#: help:calendar.event,rrule_type:0 +#: help:calendar.todo,rrule_type:0 +#: help:crm.meeting,rrule_type:0 +msgid "Let the event automatically repeat at that interval" +msgstr "" #. module: base_calendar -#: view:calendar.event:0 -#: field:calendar.event.edit.all,date:0 -msgid "Start Date" -msgstr "Fecha inicio" +#: model:ir.ui.menu,name:base_calendar.mail_menu_calendar +msgid "Calendar" +msgstr "" #. module: base_calendar #: field:calendar.attendee,cn:0 msgid "Common name" -msgstr "Nombre común" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 #: selection:calendar.attendee,state:0 msgid "Declined" -msgstr "Rechazada" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 -msgid "My Role" -msgstr "Mi rol" +#: code:addons/base_calendar/base_calendar.py:1462 +#, python-format +msgid "Group by date is not supported, use the calendar view instead." +msgstr "" #. module: base_calendar #: view:calendar.event:0 -msgid "My Events" -msgstr "Mis eventos" - -#. module: base_calendar -#: view:calendar.attendee:0 -#: view:calendar.event:0 +#: view:crm.meeting:0 msgid "Decline" -msgstr "Rechazar" - -#. module: base_calendar -#: selection:calendar.event,freq:0 -#: selection:calendar.todo,freq:0 -msgid "Weeks" -msgstr "Semanas" +msgstr "" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Group" -msgstr "Grupo" +msgstr "" #. module: base_calendar -#: field:calendar.event,edit_all:0 -#: field:calendar.todo,edit_all:0 -msgid "Edit All" -msgstr "Editar todo" +#: selection:calendar.event,class:0 +#: selection:calendar.todo,class:0 +#: selection:crm.meeting,class:0 +msgid "Private" +msgstr "" #. module: base_calendar -#: field:base_calendar.invite.attendee,contact_ids:0 -msgid "Contacts" -msgstr "Contactos" +#: view:calendar.event:0 +#: field:calendar.event,class:0 +#: field:calendar.todo,class:0 +#: field:crm.meeting,class:0 +msgid "Privacy" +msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm msgid "Basic Alarm Information" -msgstr "Información sobre la alarma básica" +msgstr "" #. module: base_calendar -#: field:base.calendar.set.exrule,fr:0 #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 +#: field:crm.meeting,fr:0 msgid "Fri" -msgstr "Vie" +msgstr "" #. module: base_calendar -#: selection:calendar.alarm,trigger_interval:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.todo,freq:0 -#: selection:res.alarm,trigger_interval:0 -msgid "Hours" -msgstr "Horas" - -#. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1090 -#, python-format -msgid "Count can not be Negative" -msgstr "La cuenta no puede ser negativa" +#: view:calendar.event:0 +msgid "Invitation Detail" +msgstr "" #. module: base_calendar #: field:calendar.attendee,member:0 msgid "Member" -msgstr "Miembro" +msgstr "" #. module: base_calendar #: help:calendar.event,location:0 #: help:calendar.todo,location:0 +#: help:crm.meeting,location:0 msgid "Location of Event" -msgstr "Ubicación del evento" +msgstr "" #. module: base_calendar #: field:calendar.event,rrule:0 #: field:calendar.todo,rrule:0 +#: field:crm.meeting,rrule:0 msgid "Recurrent Rule" -msgstr "Regla recurrente" +msgstr "" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Draft" -msgstr "Borrador" +msgstr "" #. module: base_calendar #: field:calendar.alarm,attach:0 msgid "Attachment" -msgstr "Adjunto" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 -msgid "Invitation From" -msgstr "Invitación desde" +#: field:crm.meeting,date_closed:0 +msgid "Closed" +msgstr "" #. module: base_calendar #: view:calendar.event:0 -msgid "End of Recurrency" -msgstr "Fin de recurrencia" +msgid "From" +msgstr "" #. module: base_calendar #: view:calendar.event:0 -#: field:calendar.event.edit.all,alarm_id:0 +#: field:calendar.event,alarm_id:0 +#: field:calendar.todo,alarm_id:0 +#: field:crm.meeting,alarm_id:0 msgid "Reminder" -msgstr "Recordatorio" +msgstr "" #. module: base_calendar -#: view:base.calendar.set.exrule:0 -#: model:ir.model,name:base_calendar.model_base_calendar_set_exrule -msgid "Set Exrule" -msgstr "Establecer Exregla" +#: selection:calendar.event,end_type:0 +#: selection:calendar.todo,end_type:0 +#: selection:crm.meeting,end_type:0 +msgid "Number of repetitions" +msgstr "" + +#. module: base_calendar +#: model:crm.meeting.type,name:base_calendar.categ_meet2 +msgid "Internal Meeting" +msgstr "" #. module: base_calendar #: view:calendar.event:0 #: model:ir.actions.act_window,name:base_calendar.action_view_event #: model:ir.ui.menu,name:base_calendar.menu_events msgid "Events" -msgstr "Eventos" +msgstr "" #. module: base_calendar -#: model:ir.actions.act_window,name:base_calendar.action_view_calendar_invite_attendee_wizard -#: model:ir.model,name:base_calendar.model_base_calendar_invite_attendee -msgid "Invite Attendees" -msgstr "Invitar asistentes" +#: field:calendar.alarm,state:0 +#: field:calendar.attendee,state:0 +#: view:calendar.event:0 +#: field:calendar.event,state:0 +#: field:calendar.todo,state:0 +#: field:crm.meeting,state:0 +msgid "Status" +msgstr "" #. module: base_calendar #: help:calendar.attendee,email:0 msgid "Email of Invited Person" -msgstr "Email del invitado" +msgstr "" #. module: base_calendar -#: field:calendar.alarm,repeat:0 -#: field:calendar.event,count:0 -#: field:calendar.todo,count:0 -#: field:res.alarm,repeat:0 -msgid "Repeat" -msgstr "Repetir" +#: model:crm.meeting.type,name:base_calendar.categ_meet1 +msgid "Customer Meeting" +msgstr "" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -931,186 +881,193 @@ msgid "" "Reference to the URIthat points to the directory information corresponding " "to the attendee." msgstr "" -"La referencia a la URI que apunta a la información del directorio " -"correspondiente al participante." #. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "August" -msgstr "Agosto" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 +#: selection:crm.meeting,week_list:0 msgid "Monday" -msgstr "Lunes" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 -#: selection:calendar.event,byday:0 -#: selection:calendar.todo,byday:0 -msgid "Third" -msgstr "Tercero" +#: model:crm.meeting.type,name:base_calendar.categ_meet4 +msgid "Open Discussion" +msgstr "" + +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_model +msgid "Models" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "June" -msgstr "Junio" +msgstr "" #. module: base_calendar -#: field:calendar.alarm,alarm_id:0 -msgid "Basic Alarm" -msgstr "Alarma básica" - -#. module: base_calendar -#: view:base.calendar.set.exrule:0 +#: field:calendar.alarm,event_date:0 +#: field:calendar.attendee,event_date:0 #: view:calendar.event:0 -msgid "The" -msgstr "El" +msgid "Event Date" +msgstr "" + +#. module: base_calendar +#: view:crm.meeting:0 +msgid "Invitations" +msgstr "" + +#. module: base_calendar +#: view:calendar.event:0 +#: view:crm.meeting:0 +msgid "The" +msgstr "" + +#. module: base_calendar +#: field:crm.meeting,write_date:0 +msgid "Write Date" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 #: field:calendar.attendee,delegated_from:0 msgid "Delegated From" -msgstr "Delegado desde" +msgstr "" + +#. module: base_calendar +#: field:crm.meeting,message_is_follower:0 +msgid "Is a Follower" +msgstr "" #. module: base_calendar #: field:calendar.attendee,user_id:0 msgid "User" -msgstr "Usuario" +msgstr "" #. module: base_calendar #: view:calendar.event:0 #: field:calendar.event,date:0 +#: field:crm.meeting,date:0 msgid "Date" -msgstr "Fecha" +msgstr "" + +#. module: base_calendar +#: view:calendar.event:0 +msgid "Start Date" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "November" -msgstr "Noviembre" +msgstr "" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "Indicar los grupos a los que pertenece el asistente" +msgstr "" #. module: base_calendar -#: view:base_calendar.invite.attendee:0 -msgid "Data" -msgstr "Datos" - -#. module: base_calendar -#: field:base.calendar.set.exrule,mo:0 #: field:calendar.event,mo:0 #: field:calendar.todo,mo:0 +#: field:crm.meeting,mo:0 msgid "Mon" -msgstr "Lun" +msgstr "" #. module: base_calendar -#: field:base.calendar.set.exrule,count:0 -msgid "Count" -msgstr "Total" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,freq:0 -#: selection:calendar.todo,freq:0 -msgid "No Repeat" -msgstr "No repetir" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "October" -msgstr "Octubre" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 +#: selection:calendar.attendee,state:0 #: view:calendar.event:0 +#: selection:calendar.event,state:0 +#: selection:calendar.todo,state:0 +#: view:crm.meeting:0 msgid "Uncertain" -msgstr "Incierto" +msgstr "" #. module: base_calendar -#: field:calendar.attendee,language:0 -msgid "Language" -msgstr "Idioma" +#: constraint:calendar.event:0 +#: constraint:calendar.todo:0 +#: constraint:crm.meeting:0 +msgid "Error ! End date cannot be set before start date." +msgstr "" #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "Disparadores" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "January" -msgstr "Enero" +msgstr "" #. module: base_calendar #: field:calendar.alarm,trigger_related:0 #: field:res.alarm,trigger_related:0 msgid "Related to" -msgstr "Relacionado con" +msgstr "" #. module: base_calendar -#: field:base.calendar.set.exrule,interval:0 #: field:calendar.alarm,trigger_interval:0 #: field:res.alarm,trigger_interval:0 msgid "Interval" -msgstr "Intervalo" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 +#: selection:crm.meeting,week_list:0 msgid "Wednesday" -msgstr "Miércoles" - -#. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1088 -#, python-format -msgid "Interval can not be Negative" -msgstr "El intervalo no puede ser negativo" +msgstr "" #. module: base_calendar #: field:calendar.alarm,name:0 #: view:calendar.event:0 +#: field:crm.meeting,message_summary:0 msgid "Summary" -msgstr "Resumen" +msgstr "" #. module: base_calendar #: field:calendar.alarm,active:0 #: field:calendar.event,active:0 #: field:calendar.todo,active:0 +#: field:crm.meeting,active:0 #: field:res.alarm,active:0 msgid "Active" -msgstr "Activo" +msgstr "" + +#. module: base_calendar +#: code:addons/base_calendar/base_calendar.py:399 +#, python-format +msgid "You cannot duplicate a calendar attendee." +msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Choose day in the month where repeat the meeting" -msgstr "Elija el día del mes en que se repetirá la reunión" +msgstr "" #. module: base_calendar #: field:calendar.alarm,action:0 msgid "Action" -msgstr "Acción" - -#. module: base_calendar -#: help:base_calendar.invite.attendee,type:0 -msgid "Select whom you want to Invite" -msgstr "Seleccione a quien quiere invitar" +msgstr "" #. module: base_calendar #: help:calendar.alarm,duration:0 @@ -1119,52 +1076,38 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" -"Duración' y 'Repetir' son ambos opcionales, pero si uno está activo también " -"debe estarlo el otro" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_calendar_event_edit_all -msgid "Calendar Edit all event" -msgstr "Editar todos los eventos del calendario" #. module: base_calendar #: help:calendar.attendee,role:0 msgid "Participation role for the calendar user" -msgstr "Rol de participación para el usuario del calendario." +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 #: field:calendar.attendee,delegated_to:0 msgid "Delegated To" -msgstr "Delegado a" +msgstr "" #. module: base_calendar #: help:calendar.alarm,action:0 msgid "Defines the action to be invoked when an alarm is triggered" -msgstr "Define la acción a invocar cuando salte la alarma" +msgstr "" + +#. module: base_calendar +#: view:crm.meeting:0 +msgid "Starting at" +msgstr "" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 +#: selection:crm.meeting,end_type:0 msgid "End date" -msgstr "Fecha de fin" +msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Search Events" -msgstr "Buscar eventos" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Recurrency Option" -msgstr "Opción de recurrencia" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -#: selection:calendar.event,rrule_type:0 -#: selection:calendar.todo,rrule_type:0 -msgid "Weekly" -msgstr "Semanal" +msgstr "" #. module: base_calendar #: help:calendar.alarm,active:0 @@ -1173,87 +1116,65 @@ msgid "" "If the active field is set to true, it will allow you to hide the event " "alarm information without removing it." msgstr "" -"Si el campo activo es verdadero, le permitirá ocultar la notificación de " -"aviso del evento sin eliminarlo." #. module: base_calendar -#: field:calendar.event,recurrent_id:0 -#: field:calendar.todo,recurrent_id:0 -msgid "Recurrent ID date" -msgstr "ID fecha recurrente" +#: field:calendar.event,end_type:0 +#: field:calendar.todo,end_type:0 +#: field:crm.meeting,end_type:0 +msgid "Recurrence Termination" +msgstr "" #. module: base_calendar -#: sql_constraint:res.users:0 -msgid "You can not have two users with the same login !" -msgstr "¡No puede tener dos usuarios con el mismo identificador de usuario!" - -#. module: base_calendar -#: field:calendar.alarm,state:0 -#: view:calendar.attendee:0 -#: field:calendar.attendee,state:0 -#: view:calendar.event:0 -#: field:calendar.event,state:0 -#: field:calendar.todo,state:0 -msgid "State" -msgstr "Estado" +#: view:crm.meeting:0 +msgid "Until" +msgstr "" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder Details" -msgstr "Detalles del recordatorio" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 -msgid "To Review" -msgstr "A revisar" +#: model:crm.meeting.type,name:base_calendar.categ_meet3 +msgid "Off-site Meeting" +msgstr "" #. module: base_calendar -#: field:base.calendar.set.exrule,freq:0 -#: field:calendar.event,freq:0 -#: field:calendar.todo,freq:0 -msgid "Frequency" -msgstr "Frecuencia" +#: view:crm.meeting:0 +msgid "Day of Month" +msgstr "" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Done" -msgstr "Hecho" +msgstr "" #. module: base_calendar #: help:calendar.event,interval:0 #: help:calendar.todo,interval:0 +#: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "Repetir cada (días/semana/mes/año)" +msgstr "" #. module: base_calendar -#: view:base_calendar.invite.attendee:0 -#: field:base_calendar.invite.attendee,user_ids:0 -msgid "Users" -msgstr "Usuarios" +#: view:crm.meeting:0 +msgid "All Day?" +msgstr "" #. module: base_calendar -#: view:base.calendar.set.exrule:0 -msgid "of" -msgstr "de" - -#. module: base_calendar -#: view:base_calendar.invite.attendee:0 -#: view:calendar.event:0 -#: view:calendar.event.edit.all:0 -msgid "Cancel" -msgstr "Cancelar" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "res.users" -msgstr "res.usuarios" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 -#: selection:calendar.event,week_list:0 -#: selection:calendar.todo,week_list:0 -msgid "Tuesday" -msgstr "Martes" +#: model:ir.actions.act_window,help:base_calendar.action_crm_meeting +msgid "" +"

\n" +" Click to schedule a new meeting.\n" +"

\n" +" The calendar is shared between employees and fully integrated " +"with\n" +" other applications such as the employee holidays or the " +"business\n" +" opportunities.\n" +"

\n" +" " +msgstr "" #. module: base_calendar #: help:calendar.alarm,description:0 @@ -1262,129 +1183,103 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" -"Facilita una descripción más completa del componente del calendario que la " -"facilitada por la propiedad \"RESUMEN\"" #. module: base_calendar #: view:calendar.event:0 msgid "Responsible User" -msgstr "Usuario responsable" +msgstr "" #. module: base_calendar +#: view:crm.meeting:0 +msgid "Select Weekdays" +msgstr "" + +#. module: base_calendar +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 -#: selection:res.users,availability:0 +#: selection:crm.meeting,show_as:0 +#, python-format msgid "Busy" -msgstr "Ocupado" +msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_event msgid "Calendar Event" -msgstr "Evento de calendario" - -#. module: base_calendar -#: selection:calendar.attendee,state:0 -#: selection:calendar.event,state:0 -#: selection:calendar.todo,state:0 -msgid "Tentative" -msgstr "Provisional" - -#. module: base_calendar -#: field:calendar.event,interval:0 -#: field:calendar.todo,interval:0 -msgid "Repeat every" -msgstr "Repetir cada" - -#. module: base_calendar -#: selection:calendar.event,end_type:0 -#: selection:calendar.todo,end_type:0 -msgid "Fix amout of times" -msgstr "Cantidad fija de veces" +msgstr "" #. module: base_calendar #: field:calendar.event,recurrency:0 #: field:calendar.todo,recurrency:0 +#: field:crm.meeting,recurrency:0 msgid "Recurrent" -msgstr "Recurrente" +msgstr "" #. module: base_calendar #: field:calendar.event,rrule_type:0 #: field:calendar.todo,rrule_type:0 +#: field:crm.meeting,rrule_type:0 msgid "Recurrency" -msgstr "Recurrencia" +msgstr "" #. module: base_calendar -#: model:ir.actions.act_window,name:base_calendar.action_view_attendee_form -#: model:ir.ui.menu,name:base_calendar.menu_attendee_invitations -msgid "Event Invitations" -msgstr "Invitaciones al evento" - -#. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 +#: selection:crm.meeting,week_list:0 msgid "Thursday" -msgstr "Jueves" +msgstr "" #. module: base_calendar #: field:calendar.event,exrule:0 #: field:calendar.todo,exrule:0 +#: field:crm.meeting,exrule:0 msgid "Exception Rule" -msgstr "Regla de excepción" +msgstr "" #. module: base_calendar #: help:calendar.attendee,language:0 msgid "" "To specify the language for text values in aproperty or property parameter." msgstr "" -"Para indicar el idioma de los valores de texto en una propiedad o parámetro " -"de propiedad." #. module: base_calendar #: view:calendar.event:0 msgid "Details" -msgstr "Detalles" +msgstr "" #. module: base_calendar #: help:calendar.event,exrule:0 #: help:calendar.todo,exrule:0 +#: help:crm.meeting,exrule:0 msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" -"Define una regla o patrón de repetición de tiempo a excluir de la regla " -"recurrente." #. module: base_calendar -#: field:base.calendar.set.exrule,month_list:0 #: field:calendar.event,month_list:0 #: field:calendar.todo,month_list:0 +#: field:crm.meeting,month_list:0 msgid "Month" -msgstr "Mes" - -#. module: base_calendar -#: view:base_calendar.invite.attendee:0 -#: view:calendar.event:0 -msgid "Invite People" -msgstr "Invitar personas" - -#. module: base_calendar -#: help:calendar.event,rrule:0 -#: help:calendar.todo,rrule:0 -msgid "" -"Defines a rule or repeating pattern for recurring events\n" -"e.g.: Every other month on the last Sunday of the month for 10 occurrences: " -" FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=-1SU" msgstr "" -"Define una regla o patrón repetitivo para eventos recurrentes.\n" -"Por ejemplo: Para 10 ocurrencias cada último domingo de cada dos meses : " -"FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=-1SU" + +#. module: base_calendar +#: selection:calendar.event,rrule_type:0 +#: selection:calendar.todo,rrule_type:0 +#: selection:crm.meeting,rrule_type:0 +msgid "Day(s)" +msgstr "" + +#. module: base_calendar +#: view:calendar.event:0 +msgid "Confirmed Events" +msgstr "" #. module: base_calendar #: field:calendar.attendee,dir:0 msgid "URI Reference" -msgstr "Referencia URI" +msgstr "" #. module: base_calendar #: field:calendar.alarm,description:0 @@ -1393,110 +1288,115 @@ msgstr "Referencia URI" #: field:calendar.event,name:0 #: field:calendar.todo,description:0 #: field:calendar.todo,name:0 +#: field:crm.meeting,description:0 msgid "Description" -msgstr "Descripción" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "May" -msgstr "Mayo" - -#. module: base_calendar -#: field:base_calendar.invite.attendee,type:0 -#: view:calendar.attendee:0 -msgid "Type" -msgstr "Tipo" - -#. module: base_calendar -#: view:calendar.attendee:0 -msgid "Search Invitations" -msgstr "Buscar invitaciones" +msgstr "" #. module: base_calendar #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "After" -msgstr "Después de" +msgstr "" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Stop" -msgstr "Parar" +msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_values msgid "ir.values" -msgstr "ir.valores" +msgstr "" #. module: base_calendar -#: model:ir.model,name:base_calendar.model_ir_model -msgid "Objects" -msgstr "Objetos" +#: view:crm.meeting:0 +msgid "Search Meetings" +msgstr "" + +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_ir_attachment +msgid "ir.attachment" +msgstr "" + +#. module: base_calendar +#: model:ir.model,name:base_calendar.model_crm_meeting_type +msgid "Meeting Type" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 #: selection:calendar.attendee,state:0 msgid "Delegated" -msgstr "Delegada" +msgstr "" #. module: base_calendar -#: field:base.calendar.set.exrule,sa:0 #: field:calendar.event,sa:0 #: field:calendar.todo,sa:0 +#: field:crm.meeting,sa:0 msgid "Sat" -msgstr "Sáb" +msgstr "" #. module: base_calendar -#: view:calendar.event:0 -msgid "Choose day where repeat the meeting" -msgstr "Eligir día en el que repetir la cita" +#: model:ir.actions.act_window,help:base_calendar.action_res_alarm_view +msgid "" +"

\n" +" Click to setup a new alarm type.\n" +"

\n" +" You can define a customized type of calendar alarm that may " +"be\n" +" assigned to calendar events or meetings.\n" +"

\n" +" " +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,freq:0 -msgid "Minutely" -msgstr "Cada minuto" +#: selection:crm.meeting,state:0 +msgid "Unconfirmed" +msgstr "" #. module: base_calendar #: help:calendar.attendee,sent_by:0 msgid "Specify the user that is acting on behalf of the calendar user" msgstr "" -"Indique el usuario que está actuando en nombre del usuario del calendario." #. module: base_calendar #: view:calendar.event:0 -#: field:calendar.event.edit.all,date_deadline:0 +#: field:calendar.event,date_deadline:0 +#: field:calendar.todo,date_deadline:0 +#: field:crm.meeting,date_deadline:0 msgid "End Date" -msgstr "Fecha final" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "February" -msgstr "Febrero" - -#. module: base_calendar -#: selection:calendar.event,freq:0 -#: selection:calendar.todo,freq:0 -msgid "Months" -msgstr "Meses" +msgstr "" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Resource" -msgstr "Recurso" +msgstr "" #. module: base_calendar +#: field:crm.meeting.type,name:0 #: field:res.alarm,name:0 msgid "Name" -msgstr "Nombre" +msgstr "" #. module: base_calendar -#: model:ir.model,name:base_calendar.model_calendar_alarm -msgid "Event alarm information" -msgstr "Información del aviso del evento" +#: field:calendar.event,exdate:0 +#: field:calendar.todo,exdate:0 +#: field:crm.meeting,exdate:0 +msgid "Exception Date/Times" +msgstr "" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1504,154 +1404,162 @@ msgid "" "Contains the text to be used as the message subject for " "email or contains the text to be used for display" msgstr "" -"Contiene el texto a usar como asunto del mensaje para correos electrónicos, " -"o contiene el texto a mostrar" #. module: base_calendar -#: field:calendar.event,alarm_id:0 -#: field:calendar.event,base_calendar_alarm_id:0 -#: field:calendar.todo,alarm_id:0 -#: field:calendar.todo,base_calendar_alarm_id:0 -msgid "Alarm" -msgstr "Alarma" - -#. module: base_calendar -#: code:addons/base_calendar/wizard/base_calendar_set_exrule.py:90 -#, python-format -msgid "Please Apply Recurrency before applying Exception Rule." +#: model:ir.model,name:base_calendar.model_mail_message +msgid "Message" +msgstr "" + +#. module: base_calendar +#: field:calendar.event,base_calendar_alarm_id:0 +#: field:calendar.todo,base_calendar_alarm_id:0 +#: field:crm.meeting,base_calendar_alarm_id:0 +msgid "Alarm" msgstr "" -"Por favor, aplique la repetición antes de aplicar la excepción de la regla" #. module: base_calendar #: field:calendar.attendee,sent_by_uid:0 msgid "Sent By User" -msgstr "Enviado por usuario" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,month_list:0 #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 +#: selection:crm.meeting,month_list:0 msgid "April" -msgstr "Abril" +msgstr "" + +#. module: base_calendar +#: code:addons/base_calendar/crm_meeting.py:106 +#, python-format +msgid "Email addresses not found" +msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency period" -msgstr "Periodo de recurrencia" +msgstr "" #. module: base_calendar -#: field:base.calendar.set.exrule,week_list:0 #: field:calendar.event,week_list:0 #: field:calendar.todo,week_list:0 +#: field:crm.meeting,week_list:0 msgid "Weekday" -msgstr "Día de la semana" +msgstr "" + +#. module: base_calendar +#: code:addons/base_calendar/base_calendar.py:1015 +#, python-format +msgid "Interval cannot be negative." +msgstr "" #. module: base_calendar -#: field:base.calendar.set.exrule,byday:0 #: field:calendar.event,byday:0 #: field:calendar.todo,byday:0 +#: field:crm.meeting,byday:0 msgid "By day" -msgstr "Por día" +msgstr "" + +#. module: base_calendar +#: code:addons/base_calendar/base_calendar.py:441 +#, python-format +msgid "First you have to specify the date of the invitation." +msgstr "" #. module: base_calendar #: field:calendar.alarm,model_id:0 msgid "Model" -msgstr "Modelo" +msgstr "" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Audio" -msgstr "Audio" +msgstr "" #. module: base_calendar #: field:calendar.event,id:0 #: field:calendar.todo,id:0 +#: field:crm.meeting,id:0 msgid "ID" -msgstr "ID" +msgstr "" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "Con propósito informativo" +msgstr "" #. module: base_calendar -#: view:base_calendar.invite.attendee:0 -msgid "Invite" -msgstr "Invitar" +#: field:calendar.event,select1:0 +#: field:calendar.todo,select1:0 +#: field:crm.meeting,select1:0 +msgid "Option" +msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_attendee msgid "Attendee information" -msgstr "Información asistentes" +msgstr "" #. module: base_calendar #: field:calendar.alarm,res_id:0 msgid "Resource ID" -msgstr "ID del registro" +msgstr "" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Needs Action" -msgstr "Necesita acción" +msgstr "" #. module: base_calendar #: field:calendar.attendee,sent_by:0 msgid "Sent By" -msgstr "Enviado por" +msgstr "" #. module: base_calendar #: field:calendar.event,sequence:0 #: field:calendar.todo,sequence:0 +#: field:crm.meeting,sequence:0 msgid "Sequence" -msgstr "Secuencia" +msgstr "" #. module: base_calendar #: help:calendar.event,alarm_id:0 #: help:calendar.todo,alarm_id:0 +#: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "Configure una alarma en este momento, antes de que ocurra el evento" +msgstr "" #. module: base_calendar -#: selection:base_calendar.invite.attendee,type:0 -msgid "Internal User" -msgstr "Usuario interno" - -#. module: base_calendar -#: view:calendar.attendee:0 #: view:calendar.event:0 +#: view:crm.meeting:0 msgid "Accept" -msgstr "Aceptar" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,week_list:0 #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 +#: selection:crm.meeting,week_list:0 msgid "Saturday" -msgstr "Sábado" +msgstr "" #. module: base_calendar -#: view:calendar.attendee:0 -msgid "Invitation To" -msgstr "Invitación a" +#: field:calendar.event,interval:0 +#: field:calendar.todo,interval:0 +#: field:crm.meeting,interval:0 +msgid "Repeat Every" +msgstr "" #. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 +#: selection:crm.meeting,byday:0 msgid "Second" -msgstr "Segundo" +msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" -msgstr "Libre/Ocupado" - -#. module: base_calendar -#: field:calendar.event,end_type:0 -#: field:calendar.todo,end_type:0 -msgid "Way to end reccurency" -msgstr "Forma de terminar recurrencia" +msgstr "" #. module: base_calendar #: field:calendar.alarm,duration:0 @@ -1659,20 +1567,16 @@ msgstr "Forma de terminar recurrencia" #: field:calendar.event,duration:0 #: field:calendar.todo,date:0 #: field:calendar.todo,duration:0 +#: field:crm.meeting,duration:0 #: field:res.alarm,duration:0 #: field:res.alarm,trigger_duration:0 msgid "Duration" -msgstr "Duración" - -#. module: base_calendar -#: selection:base_calendar.invite.attendee,type:0 -msgid "External Email" -msgstr "Email externo" +msgstr "" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "Fecha activación" +msgstr "" #. module: base_calendar #: help:calendar.alarm,attach:0 @@ -1684,19 +1588,10 @@ msgid "" " * Points to a procedure resource, which is invoked when " " the alarm is triggered for procedure." msgstr "" -"* Apunta a un recurso de sonido, que se escucha cuando la alarma se activa " -"por audio.\n" -"* El archivo que está intentando ser enviado como adjunto en el correo " -"electrónico.\n" -"* Apunta a un recurso de procedimiento, que se invoca cuando la alarma se " -"activa por procedimiento." #. module: base_calendar -#: selection:base.calendar.set.exrule,byday:0 #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 +#: selection:crm.meeting,byday:0 msgid "Fifth" -msgstr "Quinto" - -#~ msgid "Set Exclude range" -#~ msgstr "Fijar el rango de exclusión" +msgstr "" diff --git a/addons/base_calendar/i18n/es_PY.po b/addons/base_calendar/i18n/es_PY.po index 7b86d9eb748..6c3d50ea98b 100644 --- a/addons/base_calendar/i18n/es_PY.po +++ b/addons/base_calendar/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detalles de la invitación" msgid "Fourth" msgstr "" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Usuarios" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Zona horaria" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Libre" @@ -251,7 +245,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Cuidado!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -640,6 +634,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1172,11 +1171,6 @@ msgstr "Repetir cada (días/semana/mes/año)" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Cancelar" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1213,12 +1207,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Ocupado" @@ -1474,7 +1467,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1487,7 +1480,7 @@ msgid "By day" msgstr "Por día" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1584,7 +1577,6 @@ msgstr "Segundo" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Libre/Ocupado" @@ -1628,3 +1620,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Quinto" + +#~ msgid "Users" +#~ msgstr "Usuarios" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" diff --git a/addons/base_calendar/i18n/et.po b/addons/base_calendar/i18n/et.po index ea3552e3958..2b6f5397586 100644 --- a/addons/base_calendar/i18n/et.po +++ b/addons/base_calendar/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "" msgid "Fourth" msgstr "Neljas" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Vaba" @@ -249,7 +243,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Viga!" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/fa.po b/addons/base_calendar/i18n/fa.po index 31bef398575..dc888f04f7a 100644 --- a/addons/base_calendar/i18n/fa.po +++ b/addons/base_calendar/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "" msgid "Fourth" msgstr "" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "" @@ -249,7 +243,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/fi.po b/addons/base_calendar/i18n/fi.po index 7ab58a0b390..b12d39c7abf 100644 --- a/addons/base_calendar/i18n/fi.po +++ b/addons/base_calendar/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Kutsun yksityiskohdat" msgid "Fourth" msgstr "Neljäs" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Käyttäjät" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Aikavyöhyke" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Vapaa" @@ -251,7 +245,7 @@ msgid "To" msgstr "Vastaanottaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Virhe!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varoitus!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Tapahtuman hälytystiedot" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -640,6 +634,11 @@ msgstr "Julkinen työntekijöille" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Hylätty" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1172,11 +1171,6 @@ msgstr "Toista joka (päivä/viikko/kuukausi/vuosi)" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Peruuta" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1213,12 +1207,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Kiireinen" @@ -1471,7 +1464,7 @@ msgid "Weekday" msgstr "Arkipäivä" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1484,7 +1477,7 @@ msgid "By day" msgstr "Päivittäin" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1581,7 +1574,6 @@ msgstr "Sekunti" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Vapaa/Varattu" @@ -1619,3 +1611,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Viides" + +#~ msgid "Users" +#~ msgstr "Käyttäjät" + +#~ msgid "Cancel" +#~ msgstr "Peruuta" diff --git a/addons/base_calendar/i18n/fr.po b/addons/base_calendar/i18n/fr.po index de06560de8f..9245b8c5cd8 100644 --- a/addons/base_calendar/i18n/fr.po +++ b/addons/base_calendar/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-03 12:42+0000\n" "Last-Translator: Numérigraphe \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Détails de l'invitation" msgid "Fourth" msgstr "Quatrième" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Utilisateurs" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Fuseau horaire" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Disponible" @@ -251,7 +245,7 @@ msgid "To" msgstr "À" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erreur!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Avertissement!" @@ -525,7 +519,7 @@ msgid "Event alarm information" msgstr "Information sur l'alarme de l'évènement" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -638,6 +632,11 @@ msgstr "Public pour les employés" msgid "hours" msgstr "heures" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -744,7 +743,7 @@ msgid "Declined" msgstr "Refusé" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1170,11 +1169,6 @@ msgstr "Répéter chaque (Jour/Semaine/Mois/Année)" msgid "All Day?" msgstr "Journée entière ?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Annuler" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1211,12 +1205,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Occupé(e)" @@ -1469,7 +1462,7 @@ msgid "Weekday" msgstr "Jour de la semaine" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1482,7 +1475,7 @@ msgid "By day" msgstr "Par jour" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1580,7 +1573,6 @@ msgstr "Seconde" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Libre/Occupé" @@ -1624,3 +1616,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Cinquième" + +#~ msgid "Users" +#~ msgstr "Utilisateurs" + +#~ msgid "Cancel" +#~ msgstr "Annuler" diff --git a/addons/base_calendar/i18n/gl.po b/addons/base_calendar/i18n/gl.po index bcc4fbeb55c..2cfe0d5839f 100644 --- a/addons/base_calendar/i18n/gl.po +++ b/addons/base_calendar/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detalles da invitación" msgid "Fourth" msgstr "Cuarto" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Usuarios" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Fuso horario" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Libre" @@ -251,7 +245,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erro!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Información do aviso do evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -640,6 +634,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Rexeitado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1172,11 +1171,6 @@ msgstr "Repetir cada (días/semana/mes/ano)" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Anular" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1213,12 +1207,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Ocupado" @@ -1474,7 +1467,7 @@ msgid "Weekday" msgstr "Día laborable" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1487,7 +1480,7 @@ msgid "By day" msgstr "Por día" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1584,7 +1577,6 @@ msgstr "Segundo" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Libre/Ocupado" @@ -1626,3 +1618,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Quinto" + +#~ msgid "Users" +#~ msgstr "Usuarios" + +#~ msgid "Cancel" +#~ msgstr "Anular" diff --git a/addons/base_calendar/i18n/hr.po b/addons/base_calendar/i18n/hr.po index 8e89c79beed..2adf105ac65 100644 --- a/addons/base_calendar/i18n/hr.po +++ b/addons/base_calendar/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detalji poziva" msgid "Fourth" msgstr "Četvrti" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Korisnici" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Vremenska zona" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Slobodan" @@ -251,7 +245,7 @@ msgid "To" msgstr "Do" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Greška!" @@ -365,10 +359,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Broj ne smije biti negativan ili 0." @@ -640,6 +634,11 @@ msgstr "javno za zaposlene" msgid "hours" msgstr "sati" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Grupiranje po datumu nije podržano. Koristite kalendar." @@ -1170,11 +1169,6 @@ msgstr "Ponavljaj svaki (Dan/Tjedan/Mjesec/Godina)" msgid "All Day?" msgstr "Cijeli dan?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Odustani" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1211,12 +1205,11 @@ msgid "Select Weekdays" msgstr "Odabir dana u tjednu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Zauzet" @@ -1476,7 +1469,7 @@ msgid "Weekday" msgstr "Dan u tjednu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Interval ne može biti negativan" @@ -1489,7 +1482,7 @@ msgid "By day" msgstr "Po danu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Navedite datum pozivnice" @@ -1586,7 +1579,6 @@ msgstr "Drugi" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Slobodan/Zauzet" @@ -1627,3 +1619,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Peti" + +#~ msgid "Users" +#~ msgstr "Korisnici" + +#~ msgid "Cancel" +#~ msgstr "Odustani" diff --git a/addons/base_calendar/i18n/hu.po b/addons/base_calendar/i18n/hu.po index 421853ca5f3..27630137bca 100644 --- a/addons/base_calendar/i18n/hu.po +++ b/addons/base_calendar/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-20 13:45+0000\n" +"Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -36,13 +36,15 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" +"Ez a tulajdonság meghatározza a visszatérő naptári bejegyzések dátum/idő " +"kivétel listáját" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "" +msgstr "Hét(ek)" #. module: base_calendar #: field:calendar.event,we:0 @@ -54,7 +56,7 @@ msgstr "Sze" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Unknown" -msgstr "" +msgstr "Ismeretlen" #. module: base_calendar #: help:calendar.event,recurrency:0 @@ -66,7 +68,7 @@ msgstr "Ismétlődő megbeszélések" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "" +msgstr "Visszajelzés a találkozóról" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -99,11 +101,6 @@ msgstr "Meghívó részletei" msgid "Fourth" msgstr "Negyedik" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Felhasználók" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -137,13 +134,13 @@ msgstr "Március" #. module: base_calendar #: help:calendar.attendee,cutype:0 msgid "Specify the type of Invitation" -msgstr "" +msgstr "Határozza meg a meghívó típusát" #. module: base_calendar #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olvasatlan üzenetek" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -171,29 +168,28 @@ msgstr "Időzóna" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Szabad" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ha be van jelölve, akkor figyelje az új üzeneteket." #. module: base_calendar #: help:calendar.attendee,rsvp:0 msgid "Indicats whether the favor of a reply is requested" -msgstr "" +msgstr "Jelzi, hogy szükséges-e válasz írása" #. module: base_calendar #: field:calendar.alarm,alarm_id:0 msgid "Basic Alarm" -msgstr "" +msgstr "Alap riasztás" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 msgid "The users that the original request was delegated to" -msgstr "" +msgstr "A felhasználó akinek az eredeti igény be lett nyújtva" #. module: base_calendar #: field:calendar.attendee,ref:0 @@ -230,12 +226,12 @@ msgstr "Utolsó" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Üzenetek és kommunikációs történet" #. module: base_calendar #: field:crm.meeting,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Üzenetek" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -246,10 +242,10 @@ msgstr "Napok" #. module: base_calendar #: view:calendar.event:0 msgid "To" -msgstr "" +msgstr "Címzett" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Hiba!" @@ -257,12 +253,12 @@ msgstr "Hiba!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "" +msgstr "Elnök személye" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "" +msgstr "Találkozóim" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -296,22 +292,22 @@ msgstr "Megjelenítés" #. module: base_calendar #: help:calendar.attendee,state:0 msgid "Status of the attendee's participation" -msgstr "" +msgstr "A látogatók részvételi helyzete" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "" +msgstr "Címzett" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Találkozó tárgya" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Ismétlődés vége" #. module: base_calendar #: view:calendar.event:0 @@ -321,7 +317,7 @@ msgstr "Csoportosítás..." #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency Option" -msgstr "" +msgstr "Ismétlődés lehetőségei" #. module: base_calendar #: view:calendar.event:0 @@ -332,7 +328,7 @@ msgstr "Válassza ki azt a napot, amikor a találkozó ismétlődjön" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Találkozók" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -350,7 +346,7 @@ msgstr "Esemény vége" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "" +msgstr "Lehetséges részvétel" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -358,13 +354,15 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"A chettelés összegzést megállítja (üzenetek száma,...). Ez az összegzés " +"direkt HTML formátumú ahhoz hogy beilleszthető legyen a kanban nézetekbe." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Vigyázat!" @@ -377,6 +375,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" +"Ha az aktív mező igazra állított, akkor lehetősége van a találkozó riasztási " +"információ eltüntetésére annak törlse nélkül." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -445,7 +445,7 @@ msgstr "Megerősítés" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_todo msgid "Calendar Task" -msgstr "" +msgstr "Naptárfeladat" #. module: base_calendar #: field:calendar.event,su:0 @@ -467,7 +467,7 @@ msgstr "Emlékeztető részletei" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 msgid "Delegrated From" -msgstr "" +msgstr "Megbízotti űrlap" #. module: base_calendar #: selection:calendar.event,select1:0 @@ -479,7 +479,7 @@ msgstr "A hónap napja" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Követők" #. module: base_calendar #: field:calendar.event,location:0 @@ -491,7 +491,7 @@ msgstr "Helyszín" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Participation required" -msgstr "" +msgstr "Részvétel szükséges" #. module: base_calendar #: view:calendar.event:0 @@ -499,7 +499,7 @@ msgstr "" #: field:calendar.todo,show_as:0 #: field:crm.meeting,show_as:0 msgid "Show Time as" -msgstr "" +msgstr "Mutassa az időt mint" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -515,37 +515,37 @@ msgstr "Szoba" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Run" -msgstr "" +msgstr "Futtatás" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_alarm msgid "Event alarm information" -msgstr "" +msgstr "Találkozó riasztási információ" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." -msgstr "" +msgstr "Számláló nem lehet nulla vagy negatív." #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Létrehozás dátuma" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Találkozó" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "" +msgstr "Hónap(ok)" #. module: base_calendar #: view:calendar.event:0 @@ -555,7 +555,7 @@ msgstr "Láthatóság" #. module: base_calendar #: field:calendar.attendee,rsvp:0 msgid "Required Reply?" -msgstr "" +msgstr "Válasz szükséges?" #. module: base_calendar #: field:calendar.event,base_calendar_url:0 @@ -567,7 +567,7 @@ msgstr "CalDAV URL" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Meghívó varázsló" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -591,32 +591,32 @@ msgstr "Cs" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Találkozó részletei" #. module: base_calendar #: field:calendar.attendee,child_ids:0 msgid "Delegrated To" -msgstr "" +msgstr "Megvízás ennek" #. module: base_calendar #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "" +msgstr "A következő kapcsolatoknak nincs e-amil címük:" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Year(s)" -msgstr "" +msgstr "Év(ek)" #. module: base_calendar #: view:crm.meeting.type:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "" +msgstr "Találkozó típusai" #. module: base_calendar #: field:calendar.event,create_date:0 @@ -629,12 +629,17 @@ msgstr "Létrehozás" #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "" +msgstr "Nyilvános az alkalmazottaknak" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" -msgstr "" +msgstr "órák" + +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "Rendezvény törlése" #. module: base_calendar #: field:calendar.attendee,partner_id:0 @@ -651,12 +656,12 @@ msgstr "Nyelv" #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "" +msgstr "Ismétlés eddig" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "" +msgstr "Lehetőségek" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -695,7 +700,7 @@ msgstr "Kedd" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Címkék" #. module: base_calendar #: view:calendar.event:0 @@ -705,14 +710,14 @@ msgstr "Elérhetőség" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Individual" -msgstr "" +msgstr "Önálló" #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "" +msgstr "Ismételje X ideig" #. module: base_calendar #: field:calendar.alarm,user_id:0 @@ -724,17 +729,17 @@ msgstr "Tulajdonos" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "" +msgstr "Találkozó automatikus ismétlése ebben az intervallumban" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Naptár" #. module: base_calendar #: field:calendar.attendee,cn:0 msgid "Common name" -msgstr "" +msgstr "Ismert név" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -742,10 +747,11 @@ msgid "Declined" msgstr "Elutasítva" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" +"A dátumonkénti csoport nem megengedett, a naptár nézetet használja helyette." #. module: base_calendar #: view:calendar.event:0 @@ -776,7 +782,7 @@ msgstr "Adatvédelem" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm msgid "Basic Alarm Information" -msgstr "" +msgstr "Alap ristási információ" #. module: base_calendar #: field:calendar.event,fr:0 @@ -793,7 +799,7 @@ msgstr "Meghívó részlete" #. module: base_calendar #: field:calendar.attendee,member:0 msgid "Member" -msgstr "" +msgstr "Tag" #. module: base_calendar #: help:calendar.event,location:0 @@ -822,12 +828,12 @@ msgstr "Csatolás" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Lezárt" #. module: base_calendar #: view:calendar.event:0 msgid "From" -msgstr "" +msgstr "Kezdő dátum" #. module: base_calendar #: view:calendar.event:0 @@ -842,12 +848,12 @@ msgstr "Emlékeztető" #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "" +msgstr "Ismétlések száma" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Belső találkozó" #. module: base_calendar #: view:calendar.event:0 @@ -864,7 +870,7 @@ msgstr "Események" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: base_calendar #: help:calendar.attendee,email:0 @@ -874,14 +880,14 @@ msgstr "E-mail a meghívott személynek" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "Ügyféltalálkozó" #. module: base_calendar #: help:calendar.attendee,dir:0 msgid "" "Reference to the URIthat points to the directory information corresponding " "to the attendee." -msgstr "" +msgstr "URI hivatkozás mely a felszólaló információs könyvtárára mutat" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -900,12 +906,12 @@ msgstr "Hétfő" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "" +msgstr "Nyilt beszélgetés" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model msgid "Models" -msgstr "" +msgstr "Modellek" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -924,28 +930,28 @@ msgstr "Esemény időpontja" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Meghívók" #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "The" -msgstr "" +msgstr "A" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "Írás időpontja" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 msgid "Delegated From" -msgstr "" +msgstr "Átruházva ettől" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ez egy követő" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -974,7 +980,7 @@ msgstr "November" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "" +msgstr "Mutassa a csoportot, akihez a hallgató tartozik" #. module: base_calendar #: field:calendar.event,mo:0 @@ -1004,13 +1010,13 @@ msgstr "Bizonytalan" #: constraint:calendar.todo:0 #: constraint:crm.meeting:0 msgid "Error ! End date cannot be set before start date." -msgstr "" +msgstr "Hiba! A végső dátum nem lehet a kezséi dátum előtt." #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "" +msgstr "Események" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1023,7 +1029,7 @@ msgstr "Január" #: field:calendar.alarm,trigger_related:0 #: field:res.alarm,trigger_related:0 msgid "Related to" -msgstr "" +msgstr "Összefügg ezzel:" #. module: base_calendar #: field:calendar.alarm,trigger_interval:0 @@ -1058,12 +1064,12 @@ msgstr "Aktív" #: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." -msgstr "" +msgstr "Nem sokszorozhat meg egy naptári résztvevőt." #. module: base_calendar #: view:calendar.event:0 msgid "Choose day in the month where repeat the meeting" -msgstr "" +msgstr "Vállaszon napot a hónapban, ahová a találkozót sokszorozni szeretné" #. module: base_calendar #: field:calendar.alarm,action:0 @@ -1077,26 +1083,29 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" +"'Hossza' és 'Ismétlés' mindegyik egy lehetőség, de ha az egyik előfordul, " +"amásiknak is alő KELL fordulnia" #. module: base_calendar #: help:calendar.attendee,role:0 msgid "Participation role for the calendar user" -msgstr "" +msgstr "A naptár felhasználójának részvételi szabálya" #. module: base_calendar #: field:calendar.attendee,delegated_to:0 msgid "Delegated To" -msgstr "" +msgstr "Feladattal megbízva" #. module: base_calendar #: help:calendar.alarm,action:0 msgid "Defines the action to be invoked when an alarm is triggered" msgstr "" +"Meghatározza a segítségül hivható műveletet egy vészjelzés beindítása esetén" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Kezdési időpont" #. module: base_calendar #: selection:calendar.event,end_type:0 @@ -1117,18 +1126,20 @@ msgid "" "If the active field is set to true, it will allow you to hide the event " "alarm information without removing it." msgstr "" +"Ha egy aktív mező igazra állított, akkor lehetővé teszi az esemény riasztás " +"információ eltüntetését annak törlése nélkül." #. module: base_calendar #: field:calendar.event,end_type:0 #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "Ismétlés megállítása" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Eddig" #. module: base_calendar #: view:res.alarm:0 @@ -1138,12 +1149,12 @@ msgstr "Emlékeztető részletei" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "Külső találkozó" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "" +msgstr "A hónap napja" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -1160,12 +1171,7 @@ msgstr "Ismétlés (nap/hét/hó/év)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Mégse" +msgstr "Minden nap?" #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting @@ -1181,6 +1187,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új találkozó ütemezéséhez.\n" +"

\n" +" A naptár az alkalmazottak között megosztott és teljesen " +"integrált az\n" +" egyéb alkalmazásokkal mint az alkalmazotti szabadságok vagy az " +"üzleti\n" +" lehetőségek.\n" +"

\n" +" " #. module: base_calendar #: help:calendar.alarm,description:0 @@ -1189,6 +1205,8 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" +"Egy jóval összetettebb leírást biztosít a naptári bejegyzéshez, mint amit az " +"\"ÖSSZEGZÉS\" tulajdonságoknál létre lett hozva" #. module: base_calendar #: view:calendar.event:0 @@ -1198,15 +1216,14 @@ msgstr "Felelős felhasználó" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "Munkanapokat válasszon" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Foglalt" @@ -1214,7 +1231,7 @@ msgstr "Foglalt" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_event msgid "Calendar Event" -msgstr "" +msgstr "Naptári esemény" #. module: base_calendar #: field:calendar.event,recurrency:0 @@ -1249,6 +1266,8 @@ msgstr "Kivétel szabály" msgid "" "To specify the language for text values in aproperty or property parameter." msgstr "" +"Nyelv meghatározása a tulajdonság vagy a tulajdonság paraméter szöveg " +"értékekhez." #. module: base_calendar #: view:calendar.event:0 @@ -1263,6 +1282,8 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" +"Meghatároz egy idő szabályt vagy ismétlődési mintát az ismétlődési " +"szabályból való kizáráshoz." #. module: base_calendar #: field:calendar.event,month_list:0 @@ -1276,17 +1297,17 @@ msgstr "Hónap" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "Nap(ok)" #. module: base_calendar #: view:calendar.event:0 msgid "Confirmed Events" -msgstr "" +msgstr "Nyugtázozz események" #. module: base_calendar #: field:calendar.attendee,dir:0 msgid "URI Reference" -msgstr "" +msgstr "URI Referencia" #. module: base_calendar #: field:calendar.alarm,description:0 @@ -1325,7 +1346,7 @@ msgstr "ir.values" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "" +msgstr "Találkozó keresés" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1335,7 +1356,7 @@ msgstr "ir.attachment" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "Találkozó típusa" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1361,16 +1382,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új riasztás típus beállításához.\n" +"

\n" +" Meg tud határozni egy személyre szabott naptári riasztás " +"típust melyet\n" +" hozzá lehet rendelni naptári eseményhez vagy találkozókhoz.\n" +"

\n" +" " #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Nincs megerősítve" #. module: base_calendar #: help:calendar.attendee,sent_by:0 msgid "Specify the user that is acting on behalf of the calendar user" -msgstr "" +msgstr "Határozza meg a falhasználót aki a naptár felhasználója lesz" #. module: base_calendar #: view:calendar.event:0 @@ -1403,7 +1432,7 @@ msgstr "Név" #: field:calendar.todo,exdate:0 #: field:crm.meeting,exdate:0 msgid "Exception Date/Times" -msgstr "" +msgstr "Dátum/idő kivételek" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1411,11 +1440,13 @@ msgid "" "Contains the text to be used as the message subject for " "email or contains the text to be used for display" msgstr "" +"Tartalmazza az e-mail tárgyaként felhasznált szöveget vagy a megjeleníteni " +"kívánt üzenetet" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "Üzenet" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 @@ -1440,7 +1471,7 @@ msgstr "Április" #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "" +msgstr "E-mail cím nem található" #. module: base_calendar #: view:calendar.event:0 @@ -1455,10 +1486,10 @@ msgid "Weekday" msgstr "Hétköznap" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." -msgstr "" +msgstr "Intervallum nem lehet negatív." #. module: base_calendar #: field:calendar.event,byday:0 @@ -1468,10 +1499,10 @@ msgid "By day" msgstr "Nappal" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." -msgstr "" +msgstr "Elöször meg kell határoznia a meghívó dátumát." #. module: base_calendar #: field:calendar.alarm,model_id:0 @@ -1493,7 +1524,7 @@ msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "" +msgstr "Információs célokra" #. module: base_calendar #: field:calendar.event,select1:0 @@ -1505,7 +1536,7 @@ msgstr "Opció" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_attendee msgid "Attendee information" -msgstr "" +msgstr "Résztvevők információi" #. module: base_calendar #: field:calendar.alarm,res_id:0 @@ -1515,12 +1546,12 @@ msgstr "Erőforrás ID" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Needs Action" -msgstr "" +msgstr "Beavatkozás szükséges" #. module: base_calendar #: field:calendar.attendee,sent_by:0 msgid "Sent By" -msgstr "" +msgstr "Küldte" #. module: base_calendar #: field:calendar.event,sequence:0 @@ -1534,7 +1565,7 @@ msgstr "Sorszám" #: help:calendar.todo,alarm_id:0 #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "" +msgstr "Most beállított riasztás, mielőtt az esemény elkezdődne" #. module: base_calendar #: view:calendar.event:0 @@ -1554,7 +1585,7 @@ msgstr "Szombat" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "Ismétlés minden" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1565,7 +1596,6 @@ msgstr "Második" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Szabad/elfoglalt" @@ -1596,6 +1626,11 @@ msgid "" " * Points to a procedure resource, which is invoked when " " the alarm is triggered for procedure." msgstr "" +"* Hangforrásra mutat, mely beindul, ha a hangra " +"riasztást ad,\n" +" * Fájl mely elküldésre szánt mint e-mail melléklet,\n" +" * Művelet forrásra mutat, melyet segítségül hív ha " +" a riasztás a művelet miatt lett kapcsolva." #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1603,3 +1638,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Ötödik" + +#~ msgid "Users" +#~ msgstr "Felhasználók" + +#~ msgid "Cancel" +#~ msgstr "Mégse" diff --git a/addons/base_calendar/i18n/id.po b/addons/base_calendar/i18n/id.po index 6641bf9ef0e..e47dff4027a 100644 --- a/addons/base_calendar/i18n/id.po +++ b/addons/base_calendar/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detail Undangan" msgid "Fourth" msgstr "Keempat" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "" @@ -251,7 +245,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -525,7 +519,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -638,6 +632,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -744,7 +743,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1164,11 +1163,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1203,12 +1197,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1457,7 +1450,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1470,7 +1463,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1567,7 +1560,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/it.po b/addons/base_calendar/i18n/it.po index e87f2437a26..38422bc31d4 100644 --- a/addons/base_calendar/i18n/it.po +++ b/addons/base_calendar/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-22 13:24+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Dettagli invito" msgid "Fourth" msgstr "Quarto" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Utenti" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Fuso orario" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Libero" @@ -251,7 +245,7 @@ msgid "To" msgstr "A" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Errore!" @@ -365,10 +359,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Attenzione!" @@ -529,7 +523,7 @@ msgid "Event alarm information" msgstr "Informazioni avviso evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Il conteggio non può essere negativo o zero." @@ -642,6 +636,11 @@ msgstr "Pubblico per impiegati" msgid "hours" msgstr "ore" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -749,7 +748,7 @@ msgid "Declined" msgstr "Rifiutato" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Raggruppo per data non supportato, usa la vista calendario." @@ -1175,11 +1174,6 @@ msgstr "Ripeti ogni (giorno/settimana/mese/anno)" msgid "All Day?" msgstr "Tutto il giorno?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Annulla" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1225,12 +1219,11 @@ msgid "Select Weekdays" msgstr "Giorni selezionati" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Occupato" @@ -1493,7 +1486,7 @@ msgid "Weekday" msgstr "Giorno della settimana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "L'intervallo non può essere negativo" @@ -1506,7 +1499,7 @@ msgid "By day" msgstr "Per giorno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "E' necessario prima specificare la data dell'invito" @@ -1603,7 +1596,6 @@ msgstr "Secondo" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Libero/Occupato" @@ -1645,3 +1637,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Quinto" + +#~ msgid "Users" +#~ msgstr "Utenti" + +#~ msgid "Cancel" +#~ msgstr "Annulla" diff --git a/addons/base_calendar/i18n/ja.po b/addons/base_calendar/i18n/ja.po index caae142bf93..f1d3c96f330 100644 --- a/addons/base_calendar/i18n/ja.po +++ b/addons/base_calendar/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "招待詳細" msgid "Fourth" msgstr "第4" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "ユーザ" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "タイムゾーン" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "空き" @@ -249,7 +243,7 @@ msgid "To" msgstr "終了" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "エラー" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "警告" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "イベントアラーム情報" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "従業員の一般" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "拒否済" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "反復間隔(日 / 週 / 月 / 年)" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "キャンセル" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "割当済" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "平日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "日別" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "秒" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "空き / 済" @@ -1606,3 +1598,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "第5" + +#~ msgid "Users" +#~ msgstr "ユーザ" + +#~ msgid "Cancel" +#~ msgstr "キャンセル" diff --git a/addons/base_calendar/i18n/ln.po b/addons/base_calendar/i18n/ln.po index 7659d43465b..14e46bdf231 100644 --- a/addons/base_calendar/i18n/ln.po +++ b/addons/base_calendar/i18n/ln.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lingala \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "" msgid "Fourth" msgstr "" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "" @@ -249,7 +243,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Tika" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" @@ -1603,3 +1595,6 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "" + +#~ msgid "Cancel" +#~ msgstr "Tika" diff --git a/addons/base_calendar/i18n/lt.po b/addons/base_calendar/i18n/lt.po index f9617f4f5a8..7c17f7ef7ef 100644 --- a/addons/base_calendar/i18n/lt.po +++ b/addons/base_calendar/i18n/lt.po @@ -1,27 +1,27 @@ # Lithuanian 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. +# Giedrius Slavinskas , 2012. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-30 16:26+0000\n" +"Last-Translator: Giedrius Slavinskas - inovera.lt \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "" +msgstr "Įvykio pradžia" #. module: base_calendar #: view:calendar.event:0 @@ -36,13 +36,15 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" +"Šis nustatymas apibrėžia sąrašą datų/laikų išimčių pasikartojantiems " +"įvykiams kalendoriuje." #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "" +msgstr "Savaitė (-ės)" #. module: base_calendar #: field:calendar.event,we:0 @@ -61,12 +63,12 @@ msgstr "" #: help:calendar.todo,recurrency:0 #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "" +msgstr "Pasikartojantis susitikimas" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "" +msgstr "Susitikimas dėl atsakymo" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -90,7 +92,7 @@ msgstr "Vaidmuo" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Invitation details" -msgstr "" +msgstr "Pakvietimo informacija" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -99,11 +101,6 @@ msgstr "" msgid "Fourth" msgstr "Ketvirtas" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Naudotojai" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -143,7 +140,7 @@ msgstr "" #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -157,7 +154,7 @@ msgstr "Penktadienis" #: field:calendar.todo,allday:0 #: field:crm.meeting,allday:0 msgid "All Day" -msgstr "Visa diena" +msgstr "Visą dieną" #. module: base_calendar #: field:calendar.event,vtimezone:0 @@ -171,14 +168,13 @@ msgstr "Laiko juosta" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Laisva" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: base_calendar #: help:calendar.attendee,rsvp:0 @@ -218,7 +214,7 @@ msgstr "Trečias" #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event ends" -msgstr "" +msgstr "Įvykio pabaiga" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -230,12 +226,12 @@ msgstr "Paskutinis" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: base_calendar #: field:crm.meeting,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -246,10 +242,10 @@ msgstr "Dienos" #. module: base_calendar #: view:calendar.event:0 msgid "To" -msgstr "" +msgstr "Iki" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Klaida!" @@ -257,12 +253,12 @@ msgstr "Klaida!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "" +msgstr "Pirmininkas" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "" +msgstr "Mano susitikimai" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -301,17 +297,17 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "" +msgstr "Siųsti kam" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Susitikimo tema" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Pasikartojimo pabaiga" #. module: base_calendar #: view:calendar.event:0 @@ -321,7 +317,7 @@ msgstr "Grupuoti pagal..." #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency Option" -msgstr "" +msgstr "Pasikartojimo parinktys" #. module: base_calendar #: view:calendar.event:0 @@ -332,7 +328,7 @@ msgstr "" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Susitikimai" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -350,7 +346,7 @@ msgstr "" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "" +msgstr "Nebūtinas dalyvavimas" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -358,13 +354,15 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Įspėjimas!" @@ -377,6 +375,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" +"Nebenaudojama įvykių priminimų informacija gali būti paslėpta, vietoj to, " +"kad būtų pašalinta." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -403,7 +403,7 @@ msgstr "Organizatorius" #: field:calendar.todo,user_id:0 #: field:crm.meeting,user_id:0 msgid "Responsible" -msgstr "Atsakingas" +msgstr "Atsakingas asmuo" #. module: base_calendar #: view:calendar.event:0 @@ -462,7 +462,7 @@ msgstr "" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder details" -msgstr "" +msgstr "Priminimo nustatymai" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 @@ -474,12 +474,12 @@ msgstr "" #: selection:calendar.todo,select1:0 #: selection:crm.meeting,select1:0 msgid "Day of month" -msgstr "" +msgstr "Mėnesio diena" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: base_calendar #: field:calendar.event,location:0 @@ -491,7 +491,7 @@ msgstr "Vieta" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Participation required" -msgstr "" +msgstr "Būtinas dalyvavimas" #. module: base_calendar #: view:calendar.event:0 @@ -523,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -531,21 +531,21 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Sukūrimo data" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Susitikimas" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "" +msgstr "Mėnesis (-iai)" #. module: base_calendar #: view:calendar.event:0 @@ -591,7 +591,7 @@ msgstr "Ket." #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Susitikimo informacija" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -609,14 +609,14 @@ msgstr "" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Year(s)" -msgstr "" +msgstr "Metai" #. module: base_calendar #: view:crm.meeting.type:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "" +msgstr "Susitikimo tipai" #. module: base_calendar #: field:calendar.event,create_date:0 @@ -629,13 +629,18 @@ msgstr "Sukurtas" #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "" +msgstr "Viešas darbuotojams" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "Atšaukti įvykį" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -651,12 +656,12 @@ msgstr "Kalba" #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "" +msgstr "Kartoti iki" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "" +msgstr "Pasirinkimai" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -695,7 +700,7 @@ msgstr "Antradienis" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Žymos" #. module: base_calendar #: view:calendar.event:0 @@ -712,7 +717,7 @@ msgstr "Asmeninis" #: help:calendar.todo,count:0 #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "Kartoti x kartų" +msgstr "Kiek kartų kartoti" #. module: base_calendar #: field:calendar.alarm,user_id:0 @@ -724,12 +729,12 @@ msgstr "Savininkas" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "" +msgstr "Nustatykite įvykiui intervalą, kada būtų automatiškai pakartojamas" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Kalendorius" #. module: base_calendar #: field:calendar.attendee,cn:0 @@ -742,7 +747,7 @@ msgid "Declined" msgstr "Atsisakyta" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -771,7 +776,7 @@ msgstr "Privatus" #: field:calendar.todo,class:0 #: field:crm.meeting,class:0 msgid "Privacy" -msgstr "Privatumas" +msgstr "Slaptumas" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm @@ -788,7 +793,7 @@ msgstr "Pen." #. module: base_calendar #: view:calendar.event:0 msgid "Invitation Detail" -msgstr "" +msgstr "Pakvietimo informacija" #. module: base_calendar #: field:calendar.attendee,member:0 @@ -807,7 +812,7 @@ msgstr "Įvykio vieta" #: field:calendar.todo,rrule:0 #: field:crm.meeting,rrule:0 msgid "Recurrent Rule" -msgstr "" +msgstr "Pasikartojimo taisyklė" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -822,12 +827,12 @@ msgstr "Priedas" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Uždaryta" #. module: base_calendar #: view:calendar.event:0 msgid "From" -msgstr "" +msgstr "Nuo" #. module: base_calendar #: view:calendar.event:0 @@ -842,12 +847,12 @@ msgstr "Priminimas" #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "" +msgstr "Pakartojimų skaičius" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Vidinis susitikimas" #. module: base_calendar #: view:calendar.event:0 @@ -864,17 +869,17 @@ msgstr "Įvykiai" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: base_calendar #: help:calendar.attendee,email:0 msgid "Email of Invited Person" -msgstr "" +msgstr "Pakviesto asmens el. paštas" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "Susitikimas su pirkėju" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -900,12 +905,12 @@ msgstr "Pirmadienis" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "" +msgstr "Atvira diskusija" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model msgid "Models" -msgstr "" +msgstr "Modeliai" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -919,12 +924,12 @@ msgstr "Birželis" #: field:calendar.attendee,event_date:0 #: view:calendar.event:0 msgid "Event Date" -msgstr "" +msgstr "Įvykio data" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Pakvietimai" #. module: base_calendar #: view:calendar.event:0 @@ -935,7 +940,7 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "Įrašymo data" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 @@ -945,7 +950,7 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -997,7 +1002,7 @@ msgstr "Spalis" #: selection:calendar.todo,state:0 #: view:crm.meeting:0 msgid "Uncertain" -msgstr "" +msgstr "Neaiškus" #. module: base_calendar #: constraint:calendar.event:0 @@ -1010,7 +1015,7 @@ msgstr "" #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "" +msgstr "Įvykdymas" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1023,7 +1028,7 @@ msgstr "Sausis" #: field:calendar.alarm,trigger_related:0 #: field:res.alarm,trigger_related:0 msgid "Related to" -msgstr "Susijęs su" +msgstr "Susietas su" #. module: base_calendar #: field:calendar.alarm,trigger_interval:0 @@ -1081,7 +1086,7 @@ msgstr "" #. module: base_calendar #: help:calendar.attendee,role:0 msgid "Participation role for the calendar user" -msgstr "" +msgstr "Pakviesto asmens vaidmuo susitikime" #. module: base_calendar #: field:calendar.attendee,delegated_to:0 @@ -1096,14 +1101,14 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Pradžia" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "End date" -msgstr "" +msgstr "Pabaigos data" #. module: base_calendar #: view:calendar.event:0 @@ -1117,28 +1122,30 @@ msgid "" "If the active field is set to true, it will allow you to hide the event " "alarm information without removing it." msgstr "" +"Nebenaudojama įvykių priminimų informacija gali būti paslėpta, vietoj to, " +"kad būtų pašalinta." #. module: base_calendar #: field:calendar.event,end_type:0 #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "Pasikartojimo nutraukimas" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Iki" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder Details" -msgstr "" +msgstr "Priminimo nustatymai" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "Komandiruotė" #. module: base_calendar #: view:crm.meeting:0 @@ -1155,17 +1162,12 @@ msgstr "Atlikta" #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "" +msgstr "Kartoti kas (Dieną/Savaitę/Mėnesį/Metus)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Atšaukti" +msgstr "Visą dieną?" #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting @@ -1181,6 +1183,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Paspauskite, kad suplanuotumėte susitikimą.\n" +"

\n" +" Kalendoriumi galima dalinti su darbuotojais. Taip pat jis pilnai " +"intergruojamas\n" +" su kitais moduliais kaip darbuotojų atostogų ar CRM moduliai.\n" +"

\n" +" " #. module: base_calendar #: help:calendar.alarm,description:0 @@ -1201,12 +1211,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Užsiėmęs (-usi)" @@ -1221,14 +1230,14 @@ msgstr "Kalendoriaus įvykis" #: field:calendar.todo,recurrency:0 #: field:crm.meeting,recurrency:0 msgid "Recurrent" -msgstr "" +msgstr "Pasikartojantis" #. module: base_calendar #: field:calendar.event,rrule_type:0 #: field:calendar.todo,rrule_type:0 #: field:crm.meeting,rrule_type:0 msgid "Recurrency" -msgstr "" +msgstr "Pasikartojimas" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -1242,7 +1251,7 @@ msgstr "Ketvirtadienis" #: field:calendar.todo,exrule:0 #: field:crm.meeting,exrule:0 msgid "Exception Rule" -msgstr "" +msgstr "Išimtinė taisyklė" #. module: base_calendar #: help:calendar.attendee,language:0 @@ -1263,6 +1272,8 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" +"Nustatoma taisyklė ar laiko pasikartojimo išraiška tam, kad nenaudoti " +"pasikartojimo taisyklėje." #. module: base_calendar #: field:calendar.event,month_list:0 @@ -1276,12 +1287,12 @@ msgstr "Mėnuo" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "Diena (-os)" #. module: base_calendar #: view:calendar.event:0 msgid "Confirmed Events" -msgstr "" +msgstr "Patvirtinti įvykiai" #. module: base_calendar #: field:calendar.attendee,dir:0 @@ -1325,7 +1336,7 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "" +msgstr "Susitikimų paieška" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1335,7 +1346,7 @@ msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "Susitikimo tipai" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1361,11 +1372,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad įvestumėte naują perspėjimo tipą.\n" +"

\n" +" Jūs galite įvesti papildomus įvykių perspėjimo tipus, kurie " +"gali būti\n" +" priskirti prie kalendoriaus įvykių ar susitikimų.\n" +"

\n" +" " #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Nepatvirtintas" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1403,7 +1422,7 @@ msgstr "Pavadinimas" #: field:calendar.todo,exdate:0 #: field:crm.meeting,exdate:0 msgid "Exception Date/Times" -msgstr "" +msgstr "Išimtinė (-is) data/laikas" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1415,7 +1434,7 @@ msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "Pranešimas" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 @@ -1445,7 +1464,7 @@ msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency period" -msgstr "" +msgstr "Pasikartojimo periodas" #. module: base_calendar #: field:calendar.event,week_list:0 @@ -1455,7 +1474,7 @@ msgid "Weekday" msgstr "Savaitės diena" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1487,7 @@ msgid "By day" msgstr "Pagal dieną" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1493,7 +1512,7 @@ msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "" +msgstr "Informacinio pobūdžio" #. module: base_calendar #: field:calendar.event,select1:0 @@ -1534,7 +1553,7 @@ msgstr "Seka" #: help:calendar.todo,alarm_id:0 #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "" +msgstr "Nustatykite priminimą šiuo laikui, prieš įvykstant įvykiui" #. module: base_calendar #: view:calendar.event:0 @@ -1554,7 +1573,7 @@ msgstr "Šeštadienis" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "Kartoti kas" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1565,7 +1584,6 @@ msgstr "Sekundė" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Laisvas/Užimtas" @@ -1579,12 +1597,12 @@ msgstr "Laisvas/Užimtas" #: field:res.alarm,duration:0 #: field:res.alarm,trigger_duration:0 msgid "Duration" -msgstr "Trukmė" +msgstr "Laikotarpis" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "Įvykio data" +msgstr "Iššaukimo data" #. module: base_calendar #: help:calendar.alarm,attach:0 @@ -1603,3 +1621,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Penktas" + +#~ msgid "Users" +#~ msgstr "Naudotojai" + +#~ msgid "Cancel" +#~ msgstr "Atšaukti" diff --git a/addons/base_calendar/i18n/lv.po b/addons/base_calendar/i18n/lv.po index 2ebc73f8c8b..146d57ee287 100644 --- a/addons/base_calendar/i18n/lv.po +++ b/addons/base_calendar/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Ielūguma sīkāka informācija" msgid "Fourth" msgstr "Ceturtais" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Lietotāji" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Laika josla" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Brīvs" @@ -251,7 +245,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Kļūda!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Uzmanību!" @@ -525,7 +519,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -638,6 +632,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -744,7 +743,7 @@ msgid "Declined" msgstr "Noraidīts" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1164,11 +1163,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Atcelt" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1203,12 +1197,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Aizņemts" @@ -1459,7 +1452,7 @@ msgid "Weekday" msgstr "Nedēļas diena" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1472,7 +1465,7 @@ msgid "By day" msgstr "Pēc dienas" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1569,7 +1562,6 @@ msgstr "Otrais" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Brīvs/aizņemts" @@ -1607,3 +1599,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "" + +#~ msgid "Users" +#~ msgstr "Lietotāji" + +#~ msgid "Cancel" +#~ msgstr "Atcelt" diff --git a/addons/base_calendar/i18n/mk.po b/addons/base_calendar/i18n/mk.po index eb9ac8ff2aa..da8c1b649d2 100644 --- a/addons/base_calendar/i18n/mk.po +++ b/addons/base_calendar/i18n/mk.po @@ -2,31 +2,32 @@ # 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. -# +# Sofce Dimitrijeva , 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Macedonian \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-28 22:02+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "" +msgstr "Настанот започнува" #. module: base_calendar #: view:calendar.event:0 msgid "My Events" -msgstr "" +msgstr "Мои настани" #. module: base_calendar #: help:calendar.event,exdate:0 @@ -36,32 +37,34 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" +"Ова својство ја дефинира листата на исклучоците датум/време за компонентата " +"рекурсивен календар." #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "" +msgstr "недели" #. module: base_calendar #: field:calendar.event,we:0 #: field:calendar.todo,we:0 #: field:crm.meeting,we:0 msgid "Wed" -msgstr "" +msgstr "Сре" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Unknown" -msgstr "" +msgstr "Непознато" #. module: base_calendar #: help:calendar.event,recurrency:0 #: help:calendar.todo,recurrency:0 #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "" +msgstr "Состанок кој се повторува" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 @@ -72,37 +75,32 @@ msgstr "" #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_avail_alarm msgid "Alarms" -msgstr "" +msgstr "Аларми" #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Sunday" -msgstr "" +msgstr "Недела" #. module: base_calendar #: field:calendar.attendee,role:0 msgid "Role" -msgstr "" +msgstr "Улога" #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Invitation details" -msgstr "" +msgstr "Детали за поканата" #. module: base_calendar #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 #: selection:crm.meeting,byday:0 msgid "Fourth" -msgstr "" - -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" +msgstr "Четврто" #. module: base_calendar #: field:calendar.event,day:0 @@ -112,73 +110,72 @@ msgstr "" #: field:crm.meeting,day:0 #: selection:crm.meeting,select1:0 msgid "Date of month" -msgstr "" +msgstr "Датум од месецот" #. module: base_calendar #: selection:calendar.event,class:0 #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public" -msgstr "" +msgstr "Јавно" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 #: selection:res.alarm,trigger_interval:0 msgid "Hours" -msgstr "" +msgstr "Часови" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "March" -msgstr "" +msgstr "Март" #. module: base_calendar #: help:calendar.attendee,cutype:0 msgid "Specify the type of Invitation" -msgstr "" +msgstr "Назначи го типот на поканата" #. module: base_calendar #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Непрочитани Пораки" #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Friday" -msgstr "" +msgstr "Петок" #. module: base_calendar #: field:calendar.event,allday:0 #: field:calendar.todo,allday:0 #: field:crm.meeting,allday:0 msgid "All Day" -msgstr "" +msgstr "Цел ден" #. module: base_calendar #: field:calendar.event,vtimezone:0 #: field:calendar.todo,vtimezone:0 #: field:crm.meeting,vtimezone:0 msgid "Timezone" -msgstr "" +msgstr "Временска зона" #. module: base_calendar #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" -msgstr "" +msgstr "Бесплатно" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Доколку е штиклирано, новите пораки го бараат вашето вниманите." #. module: base_calendar #: help:calendar.attendee,rsvp:0 @@ -188,110 +185,110 @@ msgstr "" #. module: base_calendar #: field:calendar.alarm,alarm_id:0 msgid "Basic Alarm" -msgstr "" +msgstr "Основен аларм" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 msgid "The users that the original request was delegated to" -msgstr "" +msgstr "Корисници на кои е делегирано оригиналното барање" #. module: base_calendar #: field:calendar.attendee,ref:0 msgid "Event Ref" -msgstr "" +msgstr "Реф на настан" #. module: base_calendar #: field:calendar.event,tu:0 #: field:calendar.todo,tu:0 #: field:crm.meeting,tu:0 msgid "Tue" -msgstr "" +msgstr "Вто" #. module: base_calendar #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 #: selection:crm.meeting,byday:0 msgid "Third" -msgstr "" +msgstr "Трет" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event ends" -msgstr "" +msgstr "Настанот завршува" #. module: base_calendar #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 #: selection:crm.meeting,byday:0 msgid "Last" -msgstr "" +msgstr "Последна" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Историја на пораки и комуникација" #. module: base_calendar #: field:crm.meeting,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Пораки" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 #: selection:res.alarm,trigger_interval:0 msgid "Days" -msgstr "" +msgstr "Денови" #. module: base_calendar #: view:calendar.event:0 msgid "To" -msgstr "" +msgstr "До" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" -msgstr "" +msgstr "Грешка!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "" +msgstr "Претседател" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "" +msgstr "Мои состаноци" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Procedure" -msgstr "" +msgstr "Процедура" #. module: base_calendar #: field:calendar.event,recurrent_id:0 #: field:calendar.todo,recurrent_id:0 #: field:crm.meeting,recurrent_id:0 msgid "Recurrent ID" -msgstr "" +msgstr "Повторувачка ID" #. module: base_calendar #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 msgid "Cancelled" -msgstr "" +msgstr "Откажано" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 #: selection:res.alarm,trigger_interval:0 msgid "Minutes" -msgstr "" +msgstr "Минути" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Display" -msgstr "" +msgstr "Прикажи" #. module: base_calendar #: help:calendar.attendee,state:0 @@ -301,38 +298,38 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "" +msgstr "Испрати на" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Тема на состанокот" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Крај на повторливоста" #. module: base_calendar #: view:calendar.event:0 msgid "Group By..." -msgstr "" +msgstr "Групирај по..." #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency Option" -msgstr "" +msgstr "Опција за повторување" #. module: base_calendar #: view:calendar.event:0 msgid "Choose day where repeat the meeting" -msgstr "" +msgstr "Изберете ден кога ќе се повтори состанокот" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Состаноци" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -345,12 +342,12 @@ msgstr "" #: field:calendar.alarm,event_end_date:0 #: field:calendar.attendee,event_end_date:0 msgid "Event End Date" -msgstr "" +msgstr "Датум на завршување" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "" +msgstr "Опционо учество" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -358,16 +355,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 "" +"Прикажува резиме на конверзација (број на пораки, ...). Ова резиме е " +"директно во html формат со цел да биде вметнато во kanban преглед." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" -msgstr "" +msgstr "Внимание!" #. module: base_calendar #: help:calendar.event,active:0 @@ -377,6 +376,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" +"Доколку активното поле е означено, ќе можете да ја сокриете информацијата за " +"аларм за настанот без да ја отстраните." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -385,7 +386,7 @@ msgstr "" #: field:crm.meeting,count:0 #: field:res.alarm,repeat:0 msgid "Repeat" -msgstr "" +msgstr "Повтори" #. module: base_calendar #: field:calendar.event,organizer:0 @@ -395,7 +396,7 @@ msgstr "" #: field:crm.meeting,organizer:0 #: field:crm.meeting,organizer_id:0 msgid "Organizer" -msgstr "" +msgstr "Организатор" #. module: base_calendar #: view:calendar.event:0 @@ -403,19 +404,19 @@ msgstr "" #: field:calendar.todo,user_id:0 #: field:crm.meeting,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Одговорен" #. module: base_calendar #: view:calendar.event:0 #: model:res.request.link,name:base_calendar.request_link_event msgid "Event" -msgstr "" +msgstr "Настан" #. module: base_calendar #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "Before" -msgstr "" +msgstr "Пред" #. module: base_calendar #: view:calendar.event:0 @@ -424,7 +425,7 @@ msgstr "" #: field:crm.meeting,date_open:0 #: selection:crm.meeting,state:0 msgid "Confirmed" -msgstr "" +msgstr "Потврдено" #. module: base_calendar #: field:calendar.alarm,attendee_ids:0 @@ -435,63 +436,63 @@ msgstr "" #: field:crm.meeting,attendee_ids:0 #: field:crm.meeting,partner_ids:0 msgid "Attendees" -msgstr "" +msgstr "Присутни" #. module: base_calendar #: view:calendar.event:0 msgid "Confirm" -msgstr "" +msgstr "Потврди" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_todo msgid "Calendar Task" -msgstr "" +msgstr "Календарска задача" #. module: base_calendar #: field:calendar.event,su:0 #: field:calendar.todo,su:0 #: field:crm.meeting,su:0 msgid "Sun" -msgstr "" +msgstr "Нед" #. module: base_calendar #: field:calendar.attendee,cutype:0 msgid "Invite Type" -msgstr "" +msgstr "Тип на покана" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder details" -msgstr "" +msgstr "Детали за потсетникот" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 msgid "Delegrated From" -msgstr "" +msgstr "Делегирано од" #. module: base_calendar #: selection:calendar.event,select1:0 #: selection:calendar.todo,select1:0 #: selection:crm.meeting,select1:0 msgid "Day of month" -msgstr "" +msgstr "Ден од месецот" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Пратители" #. module: base_calendar #: field:calendar.event,location:0 #: field:calendar.todo,location:0 #: field:crm.meeting,location:0 msgid "Location" -msgstr "" +msgstr "Локација" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Participation required" -msgstr "" +msgstr "Учеството е задолжително" #. module: base_calendar #: view:calendar.event:0 @@ -499,271 +500,277 @@ msgstr "" #: field:calendar.todo,show_as:0 #: field:crm.meeting,show_as:0 msgid "Show Time as" -msgstr "" +msgstr "Покажи го времето како" #. module: base_calendar #: selection:calendar.alarm,action:0 #: field:calendar.attendee,email:0 msgid "Email" -msgstr "" +msgstr "Е-пошта" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Room" -msgstr "" +msgstr "Соба" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Run" -msgstr "" +msgstr "Изврши" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_alarm msgid "Event alarm information" -msgstr "" +msgstr "Информација за аларм за настан" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." -msgstr "" +msgstr "Бројот не може да биде негативен или 0." #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Датум на креирање" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Состанок" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "" +msgstr "месеци" #. module: base_calendar #: view:calendar.event:0 msgid "Visibility" -msgstr "" +msgstr "Видливост" #. module: base_calendar #: field:calendar.attendee,rsvp:0 msgid "Required Reply?" -msgstr "" +msgstr "Дали е потребен е одговор?" #. module: base_calendar #: field:calendar.event,base_calendar_url:0 #: field:calendar.todo,base_calendar_url:0 #: field:crm.meeting,base_calendar_url:0 msgid "Caldav URL" -msgstr "" +msgstr "Caldav URL" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Волшебник за покани" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "July" -msgstr "" +msgstr "Јули" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Accepted" -msgstr "" +msgstr "Прифатено" #. module: base_calendar #: field:calendar.event,th:0 #: field:calendar.todo,th:0 #: field:crm.meeting,th:0 msgid "Thu" -msgstr "" +msgstr "Чет" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Детали за состанокот" #. module: base_calendar #: field:calendar.attendee,child_ids:0 msgid "Delegrated To" -msgstr "" +msgstr "Делегирано на" #. module: base_calendar #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "" +msgstr "Следниве контакти немаат емаил адреса:" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Year(s)" -msgstr "" +msgstr "Година(и)" #. module: base_calendar #: view:crm.meeting.type:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "" +msgstr "Типови на состаноци" #. module: base_calendar #: field:calendar.event,create_date:0 #: field:calendar.todo,create_date:0 msgid "Created" -msgstr "" +msgstr "Креирано" #. module: base_calendar #: selection:calendar.event,class:0 #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "" +msgstr "Јавно за вработени" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" -msgstr "" +msgstr "часови" + +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "Откажи настан" #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" -msgstr "" +msgstr "Контакт" #. module: base_calendar #: field:calendar.attendee,language:0 msgid "Language" -msgstr "" +msgstr "Јазик" #. module: base_calendar #: field:calendar.event,end_date:0 #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "" +msgstr "Повторувај додека" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "" +msgstr "Опции" #. module: base_calendar #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 #: selection:crm.meeting,byday:0 msgid "First" -msgstr "" +msgstr "Прво" #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Subject" -msgstr "" +msgstr "Тема" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "September" -msgstr "" +msgstr "Септември" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "December" -msgstr "" +msgstr "Декември" #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Tuesday" -msgstr "" +msgstr "Вторник" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Етикети" #. module: base_calendar #: view:calendar.event:0 msgid "Availability" -msgstr "" +msgstr "Достапност" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Individual" -msgstr "" +msgstr "Индивидуално" #. module: base_calendar #: help:calendar.event,count:0 #: help:calendar.todo,count:0 #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "" +msgstr "Повтори x пати" #. module: base_calendar #: field:calendar.alarm,user_id:0 msgid "Owner" -msgstr "" +msgstr "Сопственик" #. module: base_calendar #: help:calendar.event,rrule_type:0 #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "" +msgstr "Дозволете настанот автоматски да се повторува во овој интервал" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Календар" #. module: base_calendar #: field:calendar.attendee,cn:0 msgid "Common name" -msgstr "" +msgstr "Вообичаено име" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Declined" -msgstr "" +msgstr "Одбиено" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" +"Групирање по датум не е поддржано, наместо тоа употребете календарски приказ." #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Decline" -msgstr "" +msgstr "Одбиј" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Group" -msgstr "" +msgstr "Група" #. module: base_calendar #: selection:calendar.event,class:0 #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Private" -msgstr "" +msgstr "Приватно" #. module: base_calendar #: view:calendar.event:0 @@ -771,63 +778,63 @@ msgstr "" #: field:calendar.todo,class:0 #: field:crm.meeting,class:0 msgid "Privacy" -msgstr "" +msgstr "Приватност" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm msgid "Basic Alarm Information" -msgstr "" +msgstr "Основни информации за алармот" #. module: base_calendar #: field:calendar.event,fr:0 #: field:calendar.todo,fr:0 #: field:crm.meeting,fr:0 msgid "Fri" -msgstr "" +msgstr "Пет" #. module: base_calendar #: view:calendar.event:0 msgid "Invitation Detail" -msgstr "" +msgstr "Детали за поканата" #. module: base_calendar #: field:calendar.attendee,member:0 msgid "Member" -msgstr "" +msgstr "Член" #. module: base_calendar #: help:calendar.event,location:0 #: help:calendar.todo,location:0 #: help:crm.meeting,location:0 msgid "Location of Event" -msgstr "" +msgstr "Локација на настанот" #. module: base_calendar #: field:calendar.event,rrule:0 #: field:calendar.todo,rrule:0 #: field:crm.meeting,rrule:0 msgid "Recurrent Rule" -msgstr "" +msgstr "Правило за повторување" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Draft" -msgstr "" +msgstr "Нацрт" #. module: base_calendar #: field:calendar.alarm,attach:0 msgid "Attachment" -msgstr "" +msgstr "Приврзок" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Затворено" #. module: base_calendar #: view:calendar.event:0 msgid "From" -msgstr "" +msgstr "Од" #. module: base_calendar #: view:calendar.event:0 @@ -835,26 +842,26 @@ msgstr "" #: field:calendar.todo,alarm_id:0 #: field:crm.meeting,alarm_id:0 msgid "Reminder" -msgstr "" +msgstr "Потсетник" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "" +msgstr "Број на повторувања" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Внатрешен состанок" #. module: base_calendar #: view:calendar.event:0 #: model:ir.actions.act_window,name:base_calendar.action_view_event #: model:ir.ui.menu,name:base_calendar.menu_events msgid "Events" -msgstr "" +msgstr "Настани" #. module: base_calendar #: field:calendar.alarm,state:0 @@ -864,17 +871,17 @@ msgstr "" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "Статус" #. module: base_calendar #: help:calendar.attendee,email:0 msgid "Email of Invited Person" -msgstr "" +msgstr "Е-пошта на поканета личност" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "Состанок со купувач" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -888,107 +895,107 @@ msgstr "" #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "August" -msgstr "" +msgstr "Август" #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Monday" -msgstr "" +msgstr "Понеделник" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "" +msgstr "Отворена дискусија" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model msgid "Models" -msgstr "" +msgstr "Модели" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "June" -msgstr "" +msgstr "Јуни" #. module: base_calendar #: field:calendar.alarm,event_date:0 #: field:calendar.attendee,event_date:0 #: view:calendar.event:0 msgid "Event Date" -msgstr "" +msgstr "Датум на настанот" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Покани" #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "The" -msgstr "" +msgstr "The" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "Напиши датум" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 msgid "Delegated From" -msgstr "" +msgstr "Делегирано од" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Пратител" #. module: base_calendar #: field:calendar.attendee,user_id:0 msgid "User" -msgstr "" +msgstr "Корисник" #. module: base_calendar #: view:calendar.event:0 #: field:calendar.event,date:0 #: field:crm.meeting,date:0 msgid "Date" -msgstr "" +msgstr "Датум" #. module: base_calendar #: view:calendar.event:0 msgid "Start Date" -msgstr "" +msgstr "Почетен датум" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "November" -msgstr "" +msgstr "Ноември" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "" +msgstr "Ги покажува групите на кои припаѓа учесникот" #. module: base_calendar #: field:calendar.event,mo:0 #: field:calendar.todo,mo:0 #: field:crm.meeting,mo:0 msgid "Mon" -msgstr "" +msgstr "Пон" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "October" -msgstr "" +msgstr "Октомври" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -997,53 +1004,53 @@ msgstr "" #: selection:calendar.todo,state:0 #: view:crm.meeting:0 msgid "Uncertain" -msgstr "" +msgstr "Неизвесно" #. module: base_calendar #: constraint:calendar.event:0 #: constraint:calendar.todo:0 #: constraint:crm.meeting:0 msgid "Error ! End date cannot be set before start date." -msgstr "" +msgstr "Грешка! Крајниот датум не може да биде пред датумот на почнување." #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "" +msgstr "Активатори" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "January" -msgstr "" +msgstr "Јануари" #. module: base_calendar #: field:calendar.alarm,trigger_related:0 #: field:res.alarm,trigger_related:0 msgid "Related to" -msgstr "" +msgstr "Поврзано со" #. module: base_calendar #: field:calendar.alarm,trigger_interval:0 #: field:res.alarm,trigger_interval:0 msgid "Interval" -msgstr "" +msgstr "Интервал" #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Wednesday" -msgstr "" +msgstr "Среда" #. module: base_calendar #: field:calendar.alarm,name:0 #: view:calendar.event:0 #: field:crm.meeting,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Резиме" #. module: base_calendar #: field:calendar.alarm,active:0 @@ -1052,23 +1059,23 @@ msgstr "" #: field:crm.meeting,active:0 #: field:res.alarm,active:0 msgid "Active" -msgstr "" +msgstr "Активно" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." -msgstr "" +msgstr "Не може да дуплирате календарски учесник." #. module: base_calendar #: view:calendar.event:0 msgid "Choose day in the month where repeat the meeting" -msgstr "" +msgstr "Избери ден во месецот кога ќе се повторува состанокот" #. module: base_calendar #: field:calendar.alarm,action:0 msgid "Action" -msgstr "" +msgstr "Акција" #. module: base_calendar #: help:calendar.alarm,duration:0 @@ -1077,6 +1084,8 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" +"'Времетраење' и 'Повотри' се опциони, но доколку се појави едното, мора и " +"другото" #. module: base_calendar #: help:calendar.attendee,role:0 @@ -1086,29 +1095,30 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,delegated_to:0 msgid "Delegated To" -msgstr "" +msgstr "Делегирано на" #. module: base_calendar #: help:calendar.alarm,action:0 msgid "Defines the action to be invoked when an alarm is triggered" msgstr "" +"Ја дефинира акцијата која треба да биде повикана кога е активиран алармот" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Започнува на" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "End date" -msgstr "" +msgstr "Краен датум" #. module: base_calendar #: view:calendar.event:0 msgid "Search Events" -msgstr "" +msgstr "Барај Настани" #. module: base_calendar #: help:calendar.alarm,active:0 @@ -1117,55 +1127,52 @@ msgid "" "If the active field is set to true, it will allow you to hide the event " "alarm information without removing it." msgstr "" +"Доколку активното поле е означено, ќе можете да ја сокриете информацијата за " +"аларм за настанот без да ја отстраните." #. module: base_calendar #: field:calendar.event,end_type:0 #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "Завршување на повторувањето" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Се додека" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder Details" -msgstr "" +msgstr "Детали за потсетникот" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "Состанок на терен" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "" +msgstr "Ден од месецот" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Done" -msgstr "" +msgstr "Завршено" #. module: base_calendar #: help:calendar.event,interval:0 #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "" +msgstr "Повторувај секој(Ден/Недела/Месец/Година)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" +msgstr "Цел ден?" #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting @@ -1181,6 +1188,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да закажете нов состанок.\n" +"

\n" +" Календарот се споделува помеѓу вработените и е целосно " +"интегриран со другите апликации како што се празници или бизнис можности.\n" +"

\n" +" " #. module: base_calendar #: help:calendar.alarm,description:0 @@ -1189,60 +1203,61 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" +"Дава покомплетен опис на календарската " +"компонента, од онаа дадена во \"РЕЗИМЕ\"" #. module: base_calendar #: view:calendar.event:0 msgid "Responsible User" -msgstr "" +msgstr "Одговорен корисник" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "Избери работни денови" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" -msgstr "" +msgstr "Зафатен" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_event msgid "Calendar Event" -msgstr "" +msgstr "Календарски настан" #. module: base_calendar #: field:calendar.event,recurrency:0 #: field:calendar.todo,recurrency:0 #: field:crm.meeting,recurrency:0 msgid "Recurrent" -msgstr "" +msgstr "Повторувачко" #. module: base_calendar #: field:calendar.event,rrule_type:0 #: field:calendar.todo,rrule_type:0 #: field:crm.meeting,rrule_type:0 msgid "Recurrency" -msgstr "" +msgstr "Повторливост" #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Thursday" -msgstr "" +msgstr "Четврток" #. module: base_calendar #: field:calendar.event,exrule:0 #: field:calendar.todo,exrule:0 #: field:crm.meeting,exrule:0 msgid "Exception Rule" -msgstr "" +msgstr "Правило за исклучок" #. module: base_calendar #: help:calendar.attendee,language:0 @@ -1253,7 +1268,7 @@ msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Details" -msgstr "" +msgstr "Детали" #. module: base_calendar #: help:calendar.event,exrule:0 @@ -1276,17 +1291,17 @@ msgstr "Месец" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "Ден(ови)" #. module: base_calendar #: view:calendar.event:0 msgid "Confirmed Events" -msgstr "" +msgstr "Потврдени настани" #. module: base_calendar #: field:calendar.attendee,dir:0 msgid "URI Reference" -msgstr "" +msgstr "URI Референца" #. module: base_calendar #: field:calendar.alarm,description:0 @@ -1297,57 +1312,57 @@ msgstr "" #: field:calendar.todo,name:0 #: field:crm.meeting,description:0 msgid "Description" -msgstr "" +msgstr "Опис" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "May" -msgstr "" +msgstr "Мај" #. module: base_calendar #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "After" -msgstr "" +msgstr "После" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Stop" -msgstr "" +msgstr "Стоп" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_values msgid "ir.values" -msgstr "" +msgstr "ir.values" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "" +msgstr "Барај Состаноци" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment msgid "ir.attachment" -msgstr "" +msgstr "ir.attachment" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "Тип на состанок" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Delegated" -msgstr "" +msgstr "Пренесено" #. module: base_calendar #: field:calendar.event,sa:0 #: field:calendar.todo,sa:0 #: field:crm.meeting,sa:0 msgid "Sat" -msgstr "" +msgstr "Саб" #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_res_alarm_view @@ -1361,16 +1376,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликни за да подесиш нов тип на аларм.\n" +"

\n" +" Може да дефинираш тип на аларм кој може да биде назначен \n" +" на календарски настани или состаноци.\n" +"

\n" +" " #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Непотврдено" #. module: base_calendar #: help:calendar.attendee,sent_by:0 msgid "Specify the user that is acting on behalf of the calendar user" -msgstr "" +msgstr "Означува корисник кој делува во име на календарски корисник" #. module: base_calendar #: view:calendar.event:0 @@ -1378,32 +1400,32 @@ msgstr "" #: field:calendar.todo,date_deadline:0 #: field:crm.meeting,date_deadline:0 msgid "End Date" -msgstr "" +msgstr "Краен датум" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "February" -msgstr "" +msgstr "Февруари" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Resource" -msgstr "" +msgstr "Ресурс" #. module: base_calendar #: field:crm.meeting.type,name:0 #: field:res.alarm,name:0 msgid "Name" -msgstr "" +msgstr "Име" #. module: base_calendar #: field:calendar.event,exdate:0 #: field:calendar.todo,exdate:0 #: field:crm.meeting,exdate:0 msgid "Exception Date/Times" -msgstr "" +msgstr "Датум/Времиња на исклучок" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1411,163 +1433,164 @@ msgid "" "Contains the text to be used as the message subject for " "email or contains the text to be used for display" msgstr "" +"Содржи текст кој треба да биде употребен како тема на " +"пораката за email содржи текст за прикажување" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "Порака" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 #: field:calendar.todo,base_calendar_alarm_id:0 #: field:crm.meeting,base_calendar_alarm_id:0 msgid "Alarm" -msgstr "" +msgstr "Аларм" #. module: base_calendar #: field:calendar.attendee,sent_by_uid:0 msgid "Sent By User" -msgstr "" +msgstr "Испратено од корисник" #. module: base_calendar #: selection:calendar.event,month_list:0 #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "April" -msgstr "" +msgstr "Април" #. module: base_calendar #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "" +msgstr "Емаил адресата не е пронајдена" #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency period" -msgstr "" +msgstr "Период на повторување" #. module: base_calendar #: field:calendar.event,week_list:0 #: field:calendar.todo,week_list:0 #: field:crm.meeting,week_list:0 msgid "Weekday" -msgstr "" +msgstr "Ден од недела" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." -msgstr "" +msgstr "Интервалот не може да биде негативен" #. module: base_calendar #: field:calendar.event,byday:0 #: field:calendar.todo,byday:0 #: field:crm.meeting,byday:0 msgid "By day" -msgstr "" +msgstr "По ден" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." -msgstr "" +msgstr "Прво треба да го означите датумот на поканата." #. module: base_calendar #: field:calendar.alarm,model_id:0 msgid "Model" -msgstr "" +msgstr "Модел" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Audio" -msgstr "" +msgstr "Звук" #. module: base_calendar #: field:calendar.event,id:0 #: field:calendar.todo,id:0 #: field:crm.meeting,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "" +msgstr "За информативна намена" #. module: base_calendar #: field:calendar.event,select1:0 #: field:calendar.todo,select1:0 #: field:crm.meeting,select1:0 msgid "Option" -msgstr "" +msgstr "Опција" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_attendee msgid "Attendee information" -msgstr "" +msgstr "Информации за учесник" #. module: base_calendar #: field:calendar.alarm,res_id:0 msgid "Resource ID" -msgstr "" +msgstr "ID на ресурс" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Needs Action" -msgstr "" +msgstr "Потребно е дејство" #. module: base_calendar #: field:calendar.attendee,sent_by:0 msgid "Sent By" -msgstr "" +msgstr "Испратено од" #. module: base_calendar #: field:calendar.event,sequence:0 #: field:calendar.todo,sequence:0 #: field:crm.meeting,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Секвенца" #. module: base_calendar #: help:calendar.event,alarm_id:0 #: help:calendar.todo,alarm_id:0 #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "" +msgstr "Подесува аларм во ова време, пред да се појави настанот" #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Accept" -msgstr "" +msgstr "Прифати" #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Saturday" -msgstr "" +msgstr "Сабота" #. module: base_calendar #: field:calendar.event,interval:0 #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "Повторувај секои" #. module: base_calendar #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 #: selection:crm.meeting,byday:0 msgid "Second" -msgstr "" +msgstr "Секунда" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" -msgstr "" +msgstr "Слободен/зафатен" #. module: base_calendar #: field:calendar.alarm,duration:0 @@ -1579,12 +1602,12 @@ msgstr "" #: field:res.alarm,duration:0 #: field:res.alarm,trigger_duration:0 msgid "Duration" -msgstr "" +msgstr "Времетраење" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "" +msgstr "Датум на активирање" #. module: base_calendar #: help:calendar.alarm,attach:0 @@ -1602,4 +1625,10 @@ msgstr "" #: selection:calendar.todo,byday:0 #: selection:crm.meeting,byday:0 msgid "Fifth" -msgstr "" +msgstr "Петто" + +#~ msgid "Users" +#~ msgstr "Корисници" + +#~ msgid "Cancel" +#~ msgstr "Откажи" diff --git a/addons/base_calendar/i18n/mn.po b/addons/base_calendar/i18n/mn.po index 1751addc76b..3d2fef9335e 100644 --- a/addons/base_calendar/i18n/mn.po +++ b/addons/base_calendar/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-09 13:48+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-05 00:56+0000\n" "Last-Translator: gobi \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-02-10 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -86,7 +86,7 @@ msgstr "Ням" #. module: base_calendar #: field:calendar.attendee,role:0 msgid "Role" -msgstr "Үүрэг" +msgstr "Дүр" #. module: base_calendar #: view:calendar.event:0 @@ -101,11 +101,6 @@ msgstr "Урилгын мэдээлэл" msgid "Fourth" msgstr "4 дэх" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Хэрэглэгчид" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Цагийн бүс" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Чөлөөтэй" @@ -252,7 +246,7 @@ msgid "To" msgstr "Хэнд" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Алдаа!" @@ -366,10 +360,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Сануулга!" @@ -410,7 +404,7 @@ msgstr "Зохион байгуулагч" #: field:calendar.todo,user_id:0 #: field:crm.meeting,user_id:0 msgid "Responsible" -msgstr "Үүрэгтэй" +msgstr "Хариуцагч" #. module: base_calendar #: view:calendar.event:0 @@ -530,7 +524,7 @@ msgid "Event alarm information" msgstr "Үйл явдлын мэдээлэл" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "тооллого 0" @@ -643,6 +637,11 @@ msgstr "Ажилчдад Нээлттэй" msgid "hours" msgstr "цаг" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -702,7 +701,7 @@ msgstr "Мягмар" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "Таагууд" +msgstr "Пайзууд" #. module: base_calendar #: view:calendar.event:0 @@ -749,7 +748,7 @@ msgid "Declined" msgstr "Буурсан" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1175,11 +1174,6 @@ msgstr "(Өдөр/Долооног/Сар/Жил) тутам давтах" msgid "All Day?" msgstr "Өдөржин" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Цуцлах" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1215,7 +1209,7 @@ msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Responsible User" -msgstr "Үүрэгтэй хэрэглэгч" +msgstr "Хариуцагч хэрэглэгч" #. module: base_calendar #: view:crm.meeting:0 @@ -1223,12 +1217,11 @@ msgid "Select Weekdays" msgstr "Гарагуудыг сонгох" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Завгүй" @@ -1264,7 +1257,7 @@ msgstr "Пүрэв" #: field:calendar.todo,exrule:0 #: field:crm.meeting,exrule:0 msgid "Exception Rule" -msgstr "Онцгой үүрэг" +msgstr "Сондгойруулах Дүрэм" #. module: base_calendar #: help:calendar.attendee,language:0 @@ -1486,7 +1479,7 @@ msgid "Weekday" msgstr "Ажлын өдөр" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Интервал нь сөрөг байж болохгүй" @@ -1499,7 +1492,7 @@ msgid "By day" msgstr "Өдрөөр" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Эхлээд урилгын огноог зааж өгөх хэрэгтэй." @@ -1596,7 +1589,6 @@ msgstr "2 дахь" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Чөлөөтэй/Завгүй" @@ -1639,3 +1631,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "5 дахь" + +#~ msgid "Cancel" +#~ msgstr "Цуцлах" + +#~ msgid "Users" +#~ msgstr "Хэрэглэгчид" diff --git a/addons/base_calendar/i18n/nb.po b/addons/base_calendar/i18n/nb.po index 948ff4c152e..7327e43bc40 100644 --- a/addons/base_calendar/i18n/nb.po +++ b/addons/base_calendar/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Invitasjonsdetaljer" msgid "Fourth" msgstr "Fjerde" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Brukere." - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Tidssone" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Ledig" @@ -251,7 +245,7 @@ msgid "To" msgstr "Til." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Feil!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Advarsel!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Arrangement alarm informasjon." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Teller kan ikke være negativ eller 0." @@ -640,6 +634,11 @@ msgstr "Offentlig for ansatte." msgid "hours" msgstr "Timer." +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Avslått." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Gruppe etter dato støttes ikke, bruk kalenderens visning i stedet." @@ -1166,11 +1165,6 @@ msgstr "Gjenta hver (Dag/Uke/Måned/År)" msgid "All Day?" msgstr "Hele dagen ?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Avbryt." - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1205,12 +1199,11 @@ msgid "Select Weekdays" msgstr "Velg Hverdager." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Opptatt." @@ -1461,7 +1454,7 @@ msgid "Weekday" msgstr "Hverdag." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Intervall kan ikke være negativ." @@ -1474,7 +1467,7 @@ msgid "By day" msgstr "Pr. dag." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Først må du angi dato for invitasjonen." @@ -1571,7 +1564,6 @@ msgstr "Andre." #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Ledig/Opptatt." @@ -1609,3 +1601,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Femte." + +#~ msgid "Users" +#~ msgstr "Brukere." + +#~ msgid "Cancel" +#~ msgstr "Avbryt." diff --git a/addons/base_calendar/i18n/nl.po b/addons/base_calendar/i18n/nl.po index 2336df54998..0718b8fa57f 100644 --- a/addons/base_calendar/i18n/nl.po +++ b/addons/base_calendar/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-13 18:22+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-05-04 16:53+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -51,7 +51,7 @@ msgstr "We(e)k(en)" #: field:calendar.todo,we:0 #: field:crm.meeting,we:0 msgid "Wed" -msgstr "woe" +msgstr "Woe" #. module: base_calendar #: selection:calendar.attendee,cutype:0 @@ -81,7 +81,7 @@ msgstr "Herinneringen" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Sunday" -msgstr "zondag" +msgstr "Zondag" #. module: base_calendar #: field:calendar.attendee,role:0 @@ -101,11 +101,6 @@ msgstr "Details uitnodiging" msgid "Fourth" msgstr "vierde" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Gebruikers" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -134,7 +129,7 @@ msgstr "Uren" #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "March" -msgstr "maart" +msgstr "Maart" #. module: base_calendar #: help:calendar.attendee,cutype:0 @@ -152,7 +147,7 @@ msgstr "Ongelezen berichten" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Friday" -msgstr "vrijdag" +msgstr "Vrijdag" #. module: base_calendar #: field:calendar.event,allday:0 @@ -173,7 +168,6 @@ msgstr "Tijdzone" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Vrij" @@ -207,7 +201,7 @@ msgstr "Referentie" #: field:calendar.todo,tu:0 #: field:crm.meeting,tu:0 msgid "Tue" -msgstr "din" +msgstr "Din" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -251,7 +245,7 @@ msgid "To" msgstr "Aan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fout!" @@ -366,10 +360,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Waarschuwing!" @@ -402,7 +396,7 @@ msgstr "Herhaal" #: field:crm.meeting,organizer:0 #: field:crm.meeting,organizer_id:0 msgid "Organizer" -msgstr "Organisator" +msgstr "Agenda" #. module: base_calendar #: view:calendar.event:0 @@ -459,7 +453,7 @@ msgstr "Kalender-taak" #: field:calendar.todo,su:0 #: field:crm.meeting,su:0 msgid "Sun" -msgstr "zon" +msgstr "Zon" #. module: base_calendar #: field:calendar.attendee,cutype:0 @@ -530,7 +524,7 @@ msgid "Event alarm information" msgstr "Alarminformatie gebeurtenis" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "telling mag niet negatief of nul zijn." @@ -593,12 +587,12 @@ msgstr "Geaccepteerd" #: field:calendar.todo,th:0 #: field:crm.meeting,th:0 msgid "Thu" -msgstr "don" +msgstr "Don" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "Afspraak tdetails" +msgstr "Afspraak details" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -643,6 +637,11 @@ msgstr "Openbaar voor werknemers" msgid "hours" msgstr "uren" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "Annuleer Gebeurtenis" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -749,7 +748,7 @@ msgid "Declined" msgstr "Geweigerd" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1177,11 +1176,6 @@ msgstr "Elke (Dag/Week/Maand/Jaar) herhalen" msgid "All Day?" msgstr "Gehele dag?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Annuleren" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1222,15 +1216,14 @@ msgstr "Verantwoordelijke gebruiker" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "Selecteer dagen van de qweek" +msgstr "Selecteer dagen van de week" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Bezet" @@ -1477,7 +1470,7 @@ msgstr "April" #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "E-mail adressen neit gevonden" +msgstr "E-mail adressen niet gevonden" #. module: base_calendar #: view:calendar.event:0 @@ -1492,7 +1485,7 @@ msgid "Weekday" msgstr "Weekdag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Interval mag niet negatief zijn." @@ -1505,7 +1498,7 @@ msgid "By day" msgstr "Op dag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Eerst dient u de datum van de uitnodiging in te geven." @@ -1602,7 +1595,6 @@ msgstr "Seconde" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Vrij/bezet" @@ -1646,3 +1638,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Vijfde" + +#~ msgid "Users" +#~ msgstr "Gebruikers" + +#~ msgid "Cancel" +#~ msgstr "Annuleren" diff --git a/addons/base_calendar/i18n/pl.po b/addons/base_calendar/i18n/pl.po index ef9d39c827f..b3dccae0031 100644 --- a/addons/base_calendar/i18n/pl.po +++ b/addons/base_calendar/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Szczegóły zaproszenia" msgid "Fourth" msgstr "Czwarty" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Użytkownicy" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Strefa czasowa" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Wolny" @@ -251,7 +245,7 @@ msgid "To" msgstr "Do" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Błąd!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Uwaga!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Informacja alarmu zdarzenia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Licznik nie może być 0" @@ -640,6 +634,11 @@ msgstr "Publiczne dla pracowników" msgid "hours" msgstr "godzin" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Odrzucono" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Grupowanie po dacie nie jest dostępne. Stosuj widok kalendarzowy." @@ -1170,11 +1169,6 @@ msgstr "Powtarzaj co (Dzień/Tydzień/Miesiąc/Rok)" msgid "All Day?" msgstr "Cały dzień?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Anuluj" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1217,12 +1211,11 @@ msgid "Select Weekdays" msgstr "Wybierz dni tygodnia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Zajęty" @@ -1481,7 +1474,7 @@ msgid "Weekday" msgstr "Dzień tygodnia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Interwał nie może być ujemny." @@ -1494,7 +1487,7 @@ msgid "By day" msgstr "Co dzień" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1591,7 +1584,6 @@ msgstr "Sekunda" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Wolny/Zajęty" @@ -1629,3 +1621,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Piąty" + +#~ msgid "Users" +#~ msgstr "Użytkownicy" + +#~ msgid "Cancel" +#~ msgstr "Anuluj" diff --git a/addons/base_calendar/i18n/pt.po b/addons/base_calendar/i18n/pt.po index 79072cdcfc4..7d4ea51669d 100644 --- a/addons/base_calendar/i18n/pt.po +++ b/addons/base_calendar/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-16 11:24+0000\n" "Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detalhes do convite" msgid "Fourth" msgstr "Quarto" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Utilizadores" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Fuso horário" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Gratuito" @@ -251,7 +245,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erro!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Atenção!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Informações do alarme do evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -640,6 +634,11 @@ msgstr "Público para funcionários" msgid "hours" msgstr "horas" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Negado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1171,11 +1170,6 @@ msgstr "Repetir todos (Dias/semana/Mês/Ano)" msgid "All Day?" msgstr "ao" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Cancelar" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1213,12 +1207,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Ocupado" @@ -1473,7 +1466,7 @@ msgid "Weekday" msgstr "Dia de semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1486,7 +1479,7 @@ msgid "By day" msgstr "Por dia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1583,7 +1576,6 @@ msgstr "Segundo" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Livre/Ocupado" @@ -1627,3 +1619,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Quinto" + +#~ msgid "Users" +#~ msgstr "Utilizadores" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" diff --git a/addons/base_calendar/i18n/pt_BR.po b/addons/base_calendar/i18n/pt_BR.po index 37556cc62ea..11ef9f3d700 100644 --- a/addons/base_calendar/i18n/pt_BR.po +++ b/addons/base_calendar/i18n/pt_BR.po @@ -7,15 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-16 05:38+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +102,6 @@ msgstr "Detalhes do Convite" msgid "Fourth" msgstr "Quarto" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Usuários" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +169,6 @@ msgstr "Fuso horário" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Livre" @@ -251,7 +246,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erro!" @@ -366,10 +361,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -530,7 +525,7 @@ msgid "Event alarm information" msgstr "Informações do Alarme de Evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Contador não pode ser negativo ou 0." @@ -643,6 +638,11 @@ msgstr "Público para Funcionários" msgid "hours" msgstr "horas" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "Cancelar Evento" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -749,7 +749,7 @@ msgid "Declined" msgstr "Recusado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1176,11 +1176,6 @@ msgstr "Repetir a cada (Dia/Semana/Mês/Ano)" msgid "All Day?" msgstr "O dia todo?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Cancelar" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1227,12 +1222,11 @@ msgid "Select Weekdays" msgstr "Selecione dias da semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Ocupado" @@ -1496,7 +1490,7 @@ msgid "Weekday" msgstr "Dia da semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "O intervalo não pode ser negativo" @@ -1509,7 +1503,7 @@ msgid "By day" msgstr "Por dia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "Especifique primeiro a data do convite." @@ -1606,7 +1600,6 @@ msgstr "Segundo" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Livre/Ocupado" @@ -1650,3 +1643,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Quinto" + +#~ msgid "Users" +#~ msgstr "Usuários" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" diff --git a/addons/base_calendar/i18n/ro.po b/addons/base_calendar/i18n/ro.po index 12dfc6daa23..376af38bb82 100644 --- a/addons/base_calendar/i18n/ro.po +++ b/addons/base_calendar/i18n/ro.po @@ -7,21 +7,21 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-20 09:11+0000\n" -"Last-Translator: Fekete Mihai \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-17 18:21+0000\n" +"Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "Incepe evenimentul" +msgstr "Începe evenimentul" #. module: base_calendar #: view:calendar.event:0 @@ -36,15 +36,15 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" -"Aceasta proprietate defineste lista exceptiilor datii/timpului pentru o " -"componenta recurenta a calendarului." +"Această proprietate definește lista excepțiilor datei/timpului pentru o " +"componenta recurentă a calendarului." #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "Saptamani" +msgstr "Săptămâni" #. module: base_calendar #: field:calendar.event,we:0 @@ -56,19 +56,19 @@ msgstr "Miercuri" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Unknown" -msgstr "Necunoscut(a)" +msgstr "Necunoscut(ă)" #. module: base_calendar #: help:calendar.event,recurrency:0 #: help:calendar.todo,recurrency:0 #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "Intalnire recurenta" +msgstr "Întalnire recurentă" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "Feedback Intalnire" +msgstr "Feedback întalnire" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -81,7 +81,7 @@ msgstr "Alarme" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Sunday" -msgstr "Duminica" +msgstr "Duminică" #. module: base_calendar #: field:calendar.attendee,role:0 @@ -92,7 +92,7 @@ msgstr "Rol" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Invitation details" -msgstr "Detalii invitatie" +msgstr "Detalii invitație" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -101,11 +101,6 @@ msgstr "Detalii invitatie" msgid "Fourth" msgstr "Al patrulea (a patra)" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Utilizatori" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -114,7 +109,7 @@ msgstr "Utilizatori" #: field:crm.meeting,day:0 #: selection:crm.meeting,select1:0 msgid "Date of month" -msgstr "Data din luna" +msgstr "Dată din lună" #. module: base_calendar #: selection:calendar.event,class:0 @@ -139,13 +134,13 @@ msgstr "Martie" #. module: base_calendar #: help:calendar.attendee,cutype:0 msgid "Specify the type of Invitation" -msgstr "Specifica tipul Invitatiei" +msgstr "Specifică tipul invitației" #. module: base_calendar #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "Mesaje Necitite" +msgstr "Mesaje necitite" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -159,7 +154,7 @@ msgstr "Vineri" #: field:calendar.todo,allday:0 #: field:crm.meeting,allday:0 msgid "All Day" -msgstr "Toata ziua" +msgstr "Toată ziua" #. module: base_calendar #: field:calendar.event,vtimezone:0 @@ -173,19 +168,18 @@ msgstr "Fus orar" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" -msgstr "Gratuit" +msgstr "Liber" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." +msgstr "Dacă este selectat, mesajele noi necesită atenția dumneavoastră." #. module: base_calendar #: help:calendar.attendee,rsvp:0 msgid "Indicats whether the favor of a reply is requested" -msgstr "Indica daca este obligatoriu un raspuns" +msgstr "Indică dacă este obligatoriu un raspuns" #. module: base_calendar #: field:calendar.alarm,alarm_id:0 @@ -195,7 +189,7 @@ msgstr "Alarma de baza" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 msgid "The users that the original request was delegated to" -msgstr "Utilizatorii carora le-a fost delegata cererea originala" +msgstr "Utilizatorii cărora le-a fost delegată cererea originală" #. module: base_calendar #: field:calendar.attendee,ref:0 @@ -207,7 +201,7 @@ msgstr "Ref eveniment" #: field:calendar.todo,tu:0 #: field:crm.meeting,tu:0 msgid "Tue" -msgstr "Marti" +msgstr "Marți" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -220,7 +214,7 @@ msgstr "Al treilea (a treia)" #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event ends" -msgstr "Evenimentul se incheie" +msgstr "Evenimentul se încheie" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -232,7 +226,7 @@ msgstr "Ultimul/a" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "Istoric mesaje si conversatii" +msgstr "Istoric mesaje și conversații" #. module: base_calendar #: field:crm.meeting,message_ids:0 @@ -248,10 +242,10 @@ msgstr "Zile" #. module: base_calendar #: view:calendar.event:0 msgid "To" -msgstr "Catre" +msgstr "Către" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Eroare!" @@ -259,12 +253,12 @@ msgstr "Eroare!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "Presedinte" +msgstr "Președinte" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "Intalnirile mele" +msgstr "Întâlnirile mele" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -282,7 +276,7 @@ msgstr "ID recurent" #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 msgid "Cancelled" -msgstr "Anulat(a)" +msgstr "Anulat(ă)" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -293,7 +287,7 @@ msgstr "Minute" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Display" -msgstr "Afiseaza" +msgstr "Afișează" #. module: base_calendar #: help:calendar.attendee,state:0 @@ -303,38 +297,38 @@ msgstr "Statusul participarii participantului" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "E-mail catre" +msgstr "E-mail către" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "Subiectul Intalnirii" +msgstr "Subiectul întâlnirii" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "Sfarsitul Recurentei" +msgstr "Sfârșitul Recurenței" #. module: base_calendar #: view:calendar.event:0 msgid "Group By..." -msgstr "Grupeaza dupa..." +msgstr "Grupează după..." #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency Option" -msgstr "Optiune Recurenta" +msgstr "Opțiune Recurență" #. module: base_calendar #: view:calendar.event:0 msgid "Choose day where repeat the meeting" -msgstr "Alegeti ziua in care sa repetati intalnirea" +msgstr "Alegeți ziua în care să repetați întâlnirea" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "Intalniri" +msgstr "Întâlniri" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -347,12 +341,12 @@ msgstr "Data ID-ului recurent" #: field:calendar.alarm,event_end_date:0 #: field:calendar.attendee,event_end_date:0 msgid "Event End Date" -msgstr "Data de sfarsit a evenimentului" +msgstr "Data de sfârșit a evenimentului" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "Participare Optionala" +msgstr "Participare Opțională" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -360,15 +354,15 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" -"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " -"in format HTML, icu scopul de a se introduce in vizualizari kanban." +"Conține rezumatul Chatter (număr de mesaje, ...). Acest rezumat este direct " +"în format HTML, cu scopul de a se introduce în vizualizări kanban." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Avertizare!" @@ -381,8 +375,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" -"Daca campul activ este setat pe adevarat, va va permite sa ascundeti " -"informatia despre alarma evenimentului fara a o sterge." +"Dacă câmpul activ este setat pe adevărat, vă va permite să ascundeți " +"informația despre alarma evenimentului fără a o șterge." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -391,7 +385,7 @@ msgstr "" #: field:crm.meeting,count:0 #: field:res.alarm,repeat:0 msgid "Repeat" -msgstr "Repeta" +msgstr "Repetă" #. module: base_calendar #: field:calendar.event,organizer:0 @@ -421,7 +415,7 @@ msgstr "Eveniment" #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "Before" -msgstr "Inainte" +msgstr "Înainte" #. module: base_calendar #: view:calendar.event:0 @@ -430,7 +424,7 @@ msgstr "Inainte" #: field:crm.meeting,date_open:0 #: selection:crm.meeting,state:0 msgid "Confirmed" -msgstr "Confirmat(a)" +msgstr "Confirmat(ă)" #. module: base_calendar #: field:calendar.alarm,attendee_ids:0 @@ -441,29 +435,29 @@ msgstr "Confirmat(a)" #: field:crm.meeting,attendee_ids:0 #: field:crm.meeting,partner_ids:0 msgid "Attendees" -msgstr "Participanti" +msgstr "Participanți" #. module: base_calendar #: view:calendar.event:0 msgid "Confirm" -msgstr "Confirma" +msgstr "Confirmă" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_todo msgid "Calendar Task" -msgstr "Sarcina Calendar" +msgstr "Sarcină Calendar" #. module: base_calendar #: field:calendar.event,su:0 #: field:calendar.todo,su:0 #: field:crm.meeting,su:0 msgid "Sun" -msgstr "Duminica" +msgstr "Duminică" #. module: base_calendar #: field:calendar.attendee,cutype:0 msgid "Invite Type" -msgstr "Tip invitatie" +msgstr "Tip invitație" #. module: base_calendar #: view:res.alarm:0 @@ -492,12 +486,12 @@ msgstr "Persoane interesate" #: field:calendar.todo,location:0 #: field:crm.meeting,location:0 msgid "Location" -msgstr "Locatie" +msgstr "Locație" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Participation required" -msgstr "Este necesara participarea" +msgstr "Este necesară participarea" #. module: base_calendar #: view:calendar.event:0 @@ -505,7 +499,7 @@ msgstr "Este necesara participarea" #: field:calendar.todo,show_as:0 #: field:crm.meeting,show_as:0 msgid "Show Time as" -msgstr "Afiseaza timpul ca" +msgstr "Afișează timpul ca" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -521,37 +515,37 @@ msgstr "Camera" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Run" -msgstr "Executa" +msgstr "Execută" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_alarm msgid "Event alarm information" -msgstr "Informatii alarma eveniment" +msgstr "Informații alarmă eveniment" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." -msgstr "Valoarea nu poate fi negativa sau 0." +msgstr "Valoarea nu poate fi negativă sau 0." #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "Data Crearii" +msgstr "Data creării" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "Intalnire" +msgstr "Întâlnire" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "Luna (luni)" +msgstr "Lună (luni)" #. module: base_calendar #: view:calendar.event:0 @@ -561,7 +555,7 @@ msgstr "Vizibilitate" #. module: base_calendar #: field:calendar.attendee,rsvp:0 msgid "Required Reply?" -msgstr "Necesita raspuns?" +msgstr "Necesită răspuns?" #. module: base_calendar #: field:calendar.event,base_calendar_url:0 @@ -573,7 +567,7 @@ msgstr "URL Caldav" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_wizard_invite msgid "Invite wizard" -msgstr "Wizard Invitatie" +msgstr "Wizard invitație" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -585,7 +579,7 @@ msgstr "Iulie" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Accepted" -msgstr "Acceptat(a)" +msgstr "Acceptat(ă)" #. module: base_calendar #: field:calendar.event,th:0 @@ -597,7 +591,7 @@ msgstr "Joi" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "Detaliile Intalnirii" +msgstr "Detaliile întâlnirii" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -608,7 +602,7 @@ msgstr "Delegat la" #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "Urmatoarele contacte nu au adrese de email :" +msgstr "Următoarele contacte nu au adrese de email :" #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -622,26 +616,31 @@ msgstr "An(i)" #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "Tipuri de Intaliniri" +msgstr "Tipuri de întâliniri" #. module: base_calendar #: field:calendar.event,create_date:0 #: field:calendar.todo,create_date:0 msgid "Created" -msgstr "Creat(a)" +msgstr "Creat(ă)" #. module: base_calendar #: selection:calendar.event,class:0 #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "Public pentru Angajati" +msgstr "Public pentru Angajați" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" msgstr "ore" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "Anulați Evenimentul" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -657,12 +656,12 @@ msgstr "Limba" #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "Repeta pana cand" +msgstr "Repetă până cand" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "Optiuni" +msgstr "Opțiuni" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -696,7 +695,7 @@ msgstr "Decembrie" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Tuesday" -msgstr "Marti" +msgstr "Marți" #. module: base_calendar #: field:crm.meeting,categ_ids:0 @@ -718,7 +717,7 @@ msgstr "Individual" #: help:calendar.todo,count:0 #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "Repeta de x ori" +msgstr "Repetă de x ori" #. module: base_calendar #: field:calendar.alarm,user_id:0 @@ -730,7 +729,7 @@ msgstr "Proprietar" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "Permite repetarea automata a evenimentului in acel interval" +msgstr "Permite repetarea automată a evenimentului în acel interval" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar @@ -745,21 +744,21 @@ msgstr "Nume comun" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Declined" -msgstr "Refuzat(a)" +msgstr "Refuzat(ă)" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" -"Gruparea dupa data nu este acceptata, folositi in schimb vizualizarea " +"Gruparea după data nu este acceptată, folosiți în schimb vizualizarea " "calendar." #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Decline" -msgstr "Refuza" +msgstr "Refuză" #. module: base_calendar #: selection:calendar.attendee,cutype:0 @@ -779,12 +778,12 @@ msgstr "Privat" #: field:calendar.todo,class:0 #: field:crm.meeting,class:0 msgid "Privacy" -msgstr "Confidentialitate" +msgstr "Confidențialitate" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm msgid "Basic Alarm Information" -msgstr "informatii de Baza Alarma" +msgstr "informații de Baza Alarma" #. module: base_calendar #: field:calendar.event,fr:0 @@ -796,7 +795,7 @@ msgstr "Vineri" #. module: base_calendar #: view:calendar.event:0 msgid "Invitation Detail" -msgstr "Detaliile invitatiei" +msgstr "Detaliile invitației" #. module: base_calendar #: field:calendar.attendee,member:0 @@ -808,29 +807,29 @@ msgstr "Membru" #: help:calendar.todo,location:0 #: help:crm.meeting,location:0 msgid "Location of Event" -msgstr "Locatia evenimentului" +msgstr "Locația evenimentului" #. module: base_calendar #: field:calendar.event,rrule:0 #: field:calendar.todo,rrule:0 #: field:crm.meeting,rrule:0 msgid "Recurrent Rule" -msgstr "Regula Recurenta" +msgstr "Regulă recurentă" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Draft" -msgstr "Ciorna" +msgstr "Ciornă" #. module: base_calendar #: field:calendar.alarm,attach:0 msgid "Attachment" -msgstr "Atasament" +msgstr "Atașament" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "Inchis(a)" +msgstr "Închis(ă)" #. module: base_calendar #: view:calendar.event:0 @@ -850,12 +849,12 @@ msgstr "Memento" #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "Numar de repetari" +msgstr "Număr de repetări" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "Intalnire Interna" +msgstr "Întalnire internă" #. module: base_calendar #: view:calendar.event:0 @@ -882,7 +881,7 @@ msgstr "Email-ul Persoanei Invitate" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "Intalnire Clienti" +msgstr "Întalnire Clienți" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -910,7 +909,7 @@ msgstr "Luni" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "Deschide Discutia" +msgstr "Deschide Discuția" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model @@ -934,7 +933,7 @@ msgstr "Data Evenimentului" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "Invitatii" +msgstr "Invitații" #. module: base_calendar #: view:calendar.event:0 @@ -972,7 +971,7 @@ msgstr "Data" #. module: base_calendar #: view:calendar.event:0 msgid "Start Date" -msgstr "Data de inceput" +msgstr "Dată de început" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -984,7 +983,7 @@ msgstr "Noiembrie" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "Indica grupurile de care apartine participantul" +msgstr "Indică grupurile de care aparține participantul" #. module: base_calendar #: field:calendar.event,mo:0 @@ -1007,7 +1006,7 @@ msgstr "Octombrie" #: selection:calendar.todo,state:0 #: view:crm.meeting:0 msgid "Uncertain" -msgstr "Nesigur(a)" +msgstr "Nesigur(ă)" #. module: base_calendar #: constraint:calendar.event:0 @@ -1021,7 +1020,7 @@ msgstr "" #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "Declansatori" +msgstr "Declanșatori" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1063,23 +1062,23 @@ msgstr "Rezumat" #: field:crm.meeting,active:0 #: field:res.alarm,active:0 msgid "Active" -msgstr "Activ(a)" +msgstr "Activ(ă)" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." -msgstr "Nu puteti copia un participant in calendar." +msgstr "Nu puteți copia un participant în calendar." #. module: base_calendar #: view:calendar.event:0 msgid "Choose day in the month where repeat the meeting" -msgstr "Alegeti ziua din luna in care sa repetati intalnirea" +msgstr "Alegeți ziua din luna în care să repetați întalnirea" #. module: base_calendar #: field:calendar.alarm,action:0 msgid "Action" -msgstr "Actiune" +msgstr "Acțiune" #. module: base_calendar #: help:calendar.alarm,duration:0 @@ -1088,8 +1087,8 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" -"'Durata' si 'Repetare' sunt ambele optionale, dar daca una are loc, la fel " -"TREBUIE si cealalta" +"'Durata' și 'Repetare' sunt ambele opționale, dar dacă una este specificată " +"TREBUIE și cealaltă" #. module: base_calendar #: help:calendar.attendee,role:0 @@ -1105,24 +1104,24 @@ msgstr "Delegat la" #: help:calendar.alarm,action:0 msgid "Defines the action to be invoked when an alarm is triggered" msgstr "" -"Defineste actiunea care trebuie efectuata atunci cand este declansata alarma" +"Definește acțiunea care trebuie efectuată atunci când este declanșată alarma" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "Incepand de la" +msgstr "Începând de la" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "End date" -msgstr "Data de sfarsit" +msgstr "Data de sfârșit" #. module: base_calendar #: view:calendar.event:0 msgid "Search Events" -msgstr "Cauta Evenimente" +msgstr "Caută evenimente" #. module: base_calendar #: help:calendar.alarm,active:0 @@ -1144,7 +1143,7 @@ msgstr "Incheiere Recurenta" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "Pana la" +msgstr "Până la" #. module: base_calendar #: view:res.alarm:0 @@ -1154,12 +1153,12 @@ msgstr "Detalii Memento" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "Intalnire in afara biroului" +msgstr "Întalnire în afara biroului" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "Ziua din Luna" +msgstr "Ziua din Lună" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -1171,17 +1170,12 @@ msgstr "Efectuat" #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "Repeta fiecare (Zile/Saptamana/Luna/An)" +msgstr "Repetă fiecare (Zile/Săptămână/Lună/An)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "Intreaga Zi?" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Anuleaza" +msgstr "Întreaga zi?" #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting @@ -1197,13 +1191,13 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a programa o noua intalnire.\n" +"

\n" +" Faceți clic pentru a programa o nouă întâlnire.\n" "

\n" -" Calendarul este impartit intre angajati si este complet integrat " +" Calendarul este împărțit între angajați și este complet integrat " "cu\n" -" alte aplicatii, cum ar fi concediile angajatilor sau " -"oportunitatile de\n" +" alte aplicații, cum ar fi concediile angajaților sau " +"oportunitățile de\n" " afaceri.\n" "

\n" " " @@ -1215,7 +1209,7 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" -"Ofera o descriere mai completa a componentei calendar decat cea oferita de " +"Oferă o descriere mai completă a componentei calendar decât cea oferită de " "proprietatea \"REZUMAT\"" #. module: base_calendar @@ -1226,18 +1220,17 @@ msgstr "Utilizator responsabil" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "Selectati Zilele Saptamanii" +msgstr "Selectați Zilele Saptamanii" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" -msgstr "Ocupat(a)" +msgstr "Ocupat(ă)" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_event @@ -1256,7 +1249,7 @@ msgstr "Recurent" #: field:calendar.todo,rrule_type:0 #: field:crm.meeting,rrule_type:0 msgid "Recurrency" -msgstr "Recurenta" +msgstr "Recurență" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -1270,7 +1263,7 @@ msgstr "Joi" #: field:calendar.todo,exrule:0 #: field:crm.meeting,exrule:0 msgid "Exception Rule" -msgstr "Regula exceptiei" +msgstr "Regula excepției" #. module: base_calendar #: help:calendar.attendee,language:0 @@ -1293,8 +1286,8 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" -"Defineste o regula sau un tipar temporar care se repeta pentru a se exclude " -"de la regula recurenta." +"Definește o regulă sau un tipar temporar care se repetă pentru a se exclude " +"de la regula recurentă." #. module: base_calendar #: field:calendar.event,month_list:0 @@ -1318,7 +1311,7 @@ msgstr "Evenimente Confirmate" #. module: base_calendar #: field:calendar.attendee,dir:0 msgid "URI Reference" -msgstr "Referinta URI" +msgstr "Referința URI" #. module: base_calendar #: field:calendar.alarm,description:0 @@ -1342,12 +1335,12 @@ msgstr "Mai" #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "After" -msgstr "Dupa" +msgstr "După" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Stop" -msgstr "Opreste" +msgstr "Oprește" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_values @@ -1357,7 +1350,7 @@ msgstr "ir.valori" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "Cauta Intalniri" +msgstr "Caută întâlniri" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1372,7 +1365,7 @@ msgstr "Tipul Intalnirii" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Delegated" -msgstr "Delegat(a)" +msgstr "Delegat(ă)" #. module: base_calendar #: field:calendar.event,sa:0 @@ -1393,12 +1386,12 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a seta un nou tip de alarma.\n" +"

\n" +" Faceți clic pentru a seta un nou tip de alarma.\n" "

\n" -" Puteti defini un tip personalizat de alarma pe calendar care " +" Puteți defini un tip personalizat de alarma pe calendar care " "poate fi\n" -" atribuit evenimentelor sau intalnirilor din calendar.\n" +" atribuit evenimentelor sau întâlnirilor din calendar.\n" "

\n" " " @@ -1419,7 +1412,7 @@ msgstr "" #: field:calendar.todo,date_deadline:0 #: field:crm.meeting,date_deadline:0 msgid "End Date" -msgstr "Data de sfarsit" +msgstr "Dată de sfârșit" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1444,7 +1437,7 @@ msgstr "Nume" #: field:calendar.todo,exdate:0 #: field:crm.meeting,exdate:0 msgid "Exception Date/Times" -msgstr "Exceptie Data/Ore" +msgstr "Excepție Data/Ore" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1495,10 +1488,10 @@ msgstr "Perioada recurenta" #: field:calendar.todo,week_list:0 #: field:crm.meeting,week_list:0 msgid "Weekday" -msgstr "Zi lucratoare" +msgstr "Zi lucrătoare" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Intervalul nu poate fi negativ" @@ -1508,13 +1501,13 @@ msgstr "Intervalul nu poate fi negativ" #: field:calendar.todo,byday:0 #: field:crm.meeting,byday:0 msgid "By day" -msgstr "Dupa zi" +msgstr "După zi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." -msgstr "Mai intai trebuie sa specificati data invitatiei." +msgstr "Mai întâi trebuie să specificați data invitației." #. module: base_calendar #: field:calendar.alarm,model_id:0 @@ -1536,19 +1529,19 @@ msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "In scop informativ" +msgstr "În scop informativ" #. module: base_calendar #: field:calendar.event,select1:0 #: field:calendar.todo,select1:0 #: field:crm.meeting,select1:0 msgid "Option" -msgstr "Optiune" +msgstr "Opțiune" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_attendee msgid "Attendee information" -msgstr "Informatii participant" +msgstr "Informații participant" #. module: base_calendar #: field:calendar.alarm,res_id:0 @@ -1558,19 +1551,19 @@ msgstr "ID resursa" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Needs Action" -msgstr "Necesita actiune" +msgstr "Necesită acțiune" #. module: base_calendar #: field:calendar.attendee,sent_by:0 msgid "Sent By" -msgstr "Trimis de catre" +msgstr "Trimis de către" #. module: base_calendar #: field:calendar.event,sequence:0 #: field:calendar.todo,sequence:0 #: field:crm.meeting,sequence:0 msgid "Sequence" -msgstr "Secventa" +msgstr "Secvență" #. module: base_calendar #: help:calendar.event,alarm_id:0 @@ -1583,21 +1576,21 @@ msgstr "Setati o alarma acum, inainte ca evenimentul sa aiba loc" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Accept" -msgstr "Accepta" +msgstr "Acceptă" #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Saturday" -msgstr "Sambata" +msgstr "Sâmbătă" #. module: base_calendar #: field:calendar.event,interval:0 #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "Repeta fiecare" +msgstr "Repetă fiecare" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1608,7 +1601,6 @@ msgstr "Al doilea (a doua)" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Disponibil/ocupat" @@ -1627,7 +1619,7 @@ msgstr "Durata" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "Data Declansare" +msgstr "Data declanșare" #. module: base_calendar #: help:calendar.alarm,attach:0 @@ -1652,3 +1644,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Al cincilea (a cincea)" + +#~ msgid "Users" +#~ msgstr "Utilizatori" + +#~ msgid "Cancel" +#~ msgstr "Anuleaza" diff --git a/addons/base_calendar/i18n/ru.po b/addons/base_calendar/i18n/ru.po index f396ec978ab..ffcb9dc3b78 100644 --- a/addons/base_calendar/i18n/ru.po +++ b/addons/base_calendar/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-26 08:53+0000\n" "Last-Translator: Olga \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Подробности приглашения" msgid "Fourth" msgstr "Четвертый" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Пользователи" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Часовой пояс" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Свободно" @@ -251,7 +245,7 @@ msgid "To" msgstr "Кому" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Ошибка!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Предупреждение!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Информация об уведомлении о событии" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -640,6 +634,11 @@ msgstr "Общий для работников" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Отклонено" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1171,11 +1170,6 @@ msgstr "Повтор каждый (День/Неделю/Месяц/Год)" msgid "All Day?" msgstr "Весь день?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Отменить" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1212,12 +1206,11 @@ msgid "Select Weekdays" msgstr "Выберите дни недели" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Занят" @@ -1470,7 +1463,7 @@ msgid "Weekday" msgstr "День недели" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Интервал не может быть отрицательным." @@ -1483,7 +1476,7 @@ msgid "By day" msgstr "По дню" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1580,7 +1573,6 @@ msgstr "Второй" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Свободен/Занят" @@ -1623,3 +1615,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Пятый" + +#~ msgid "Users" +#~ msgstr "Пользователи" + +#~ msgid "Cancel" +#~ msgstr "Отменить" diff --git a/addons/base_calendar/i18n/sk.po b/addons/base_calendar/i18n/sk.po index eb34fa72e7a..f080088ad11 100644 --- a/addons/base_calendar/i18n/sk.po +++ b/addons/base_calendar/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-09 19:16+0000\n" "Last-Translator: Radoslav Sloboda \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-10 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "" msgid "Fourth" msgstr "Štvrtý" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Používatelia" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "Časové pásmo" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "" @@ -249,7 +243,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Chyba!" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varovanie !" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" @@ -1603,3 +1595,6 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "" + +#~ msgid "Users" +#~ msgstr "Používatelia" diff --git a/addons/base_calendar/i18n/sl.po b/addons/base_calendar/i18n/sl.po index a1376fa3431..95a216f61c4 100644 --- a/addons/base_calendar/i18n/sl.po +++ b/addons/base_calendar/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-01 22:00+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "" msgid "Fourth" msgstr "Četrti" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Uporabniki" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "Časovni pas" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Prosto" @@ -249,7 +243,7 @@ msgid "To" msgstr "Za" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Napaka!" @@ -361,10 +355,10 @@ msgstr "Povzetek (število sporočil,..)" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Opozorilo!" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "" msgid "hours" msgstr "ure" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "Zavrnjeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "Ponovi vsak (Dan/Teden/Mesec/Leto)" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Prekliči" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Zaseden" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "Delovni dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "Po dnevih" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "Sekunda" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Prost/Zaseden" @@ -1603,3 +1595,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Peti" + +#~ msgid "Users" +#~ msgstr "Uporabniki" + +#~ msgid "Cancel" +#~ msgstr "Prekliči" diff --git a/addons/base_calendar/i18n/sq.po b/addons/base_calendar/i18n/sq.po index c273eb050b5..29c97b70fee 100644 --- a/addons/base_calendar/i18n/sq.po +++ b/addons/base_calendar/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "" msgid "Fourth" msgstr "" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "" @@ -249,7 +243,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/sr.po b/addons/base_calendar/i18n/sr.po index f4e97c3cc51..7f116fa771f 100644 --- a/addons/base_calendar/i18n/sr.po +++ b/addons/base_calendar/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detalji poziva" msgid "Fourth" msgstr "Četvrti" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Korisnici" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Vremenska zona" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Slobodan" @@ -251,7 +245,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Greška" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -525,7 +519,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -638,6 +632,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -744,7 +743,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1168,11 +1167,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Otkaži" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1209,12 +1203,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Zauzet" @@ -1469,7 +1462,7 @@ msgid "Weekday" msgstr "Sedmicni Dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1482,7 +1475,7 @@ msgid "By day" msgstr "po Danu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1579,7 +1572,6 @@ msgstr "Drugi" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Slobodno/Zauzeto" @@ -1620,3 +1612,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Peti" + +#~ msgid "Users" +#~ msgstr "Korisnici" + +#~ msgid "Cancel" +#~ msgstr "Otkaži" diff --git a/addons/base_calendar/i18n/sr@latin.po b/addons/base_calendar/i18n/sr@latin.po index ec7cb1fa057..9efe5534245 100644 --- a/addons/base_calendar/i18n/sr@latin.po +++ b/addons/base_calendar/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Detalji poziva" msgid "Fourth" msgstr "Četvrti" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Korisnici" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Vremenska zona" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Slobodan" @@ -251,7 +245,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Greška" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -525,7 +519,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -638,6 +632,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -744,7 +743,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1168,11 +1167,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Otkaži" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1209,12 +1203,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Zauzet" @@ -1469,7 +1462,7 @@ msgid "Weekday" msgstr "Sedmicni Dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1482,7 +1475,7 @@ msgid "By day" msgstr "po Danu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1579,7 +1572,6 @@ msgstr "Drugi" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Slobodno/Zauzeto" @@ -1620,3 +1612,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Peti" + +#~ msgid "Users" +#~ msgstr "Korisnici" + +#~ msgid "Cancel" +#~ msgstr "Otkaži" diff --git a/addons/base_calendar/i18n/sv.po b/addons/base_calendar/i18n/sv.po index e416b09730f..780f891bb38 100644 --- a/addons/base_calendar/i18n/sv.po +++ b/addons/base_calendar/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -101,11 +101,6 @@ msgstr "Inbjudningsdetaljer" msgid "Fourth" msgstr "Fjärde" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Användare" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -173,7 +168,6 @@ msgstr "Tidszon" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Fri" @@ -251,7 +245,7 @@ msgid "To" msgstr "Mottagare" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fel!" @@ -363,10 +357,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varning!" @@ -527,7 +521,7 @@ msgid "Event alarm information" msgstr "Evenemangsalarminformation" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -640,6 +634,11 @@ msgstr "Publikt för anställda" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -746,7 +745,7 @@ msgid "Declined" msgstr "Avslaget" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1172,11 +1171,6 @@ msgstr "Repetera varje (dag/vecka/månad/år)" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "Avbryt" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1213,12 +1207,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Upptagen" @@ -1472,7 +1465,7 @@ msgid "Weekday" msgstr "Veckodag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1485,7 +1478,7 @@ msgid "By day" msgstr "Per dag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1582,7 +1575,6 @@ msgstr "Sekund" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Ledig/upptagen" @@ -1624,3 +1616,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Femte" + +#~ msgid "Users" +#~ msgstr "Användare" + +#~ msgid "Cancel" +#~ msgstr "Avbryt" diff --git a/addons/base_calendar/i18n/th.po b/addons/base_calendar/i18n/th.po index 798e37a156d..be28991a365 100644 --- a/addons/base_calendar/i18n/th.po +++ b/addons/base_calendar/i18n/th.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -100,11 +100,6 @@ msgstr "รายละเอียดในการเชิญ" msgid "Fourth" msgstr "" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -172,7 +167,6 @@ msgstr "" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "ฟรี" @@ -250,7 +244,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "ผิดพลาด!" @@ -362,10 +356,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "คำเตือน!" @@ -524,7 +518,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -637,6 +631,11 @@ msgstr "" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -743,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1163,11 +1162,6 @@ msgstr "" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1202,12 +1196,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "" @@ -1456,7 +1449,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1469,7 +1462,7 @@ msgid "By day" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1566,7 +1559,6 @@ msgstr "" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "" diff --git a/addons/base_calendar/i18n/tr.po b/addons/base_calendar/i18n/tr.po index 780f79b7b48..b0a5ecc2d67 100644 --- a/addons/base_calendar/i18n/tr.po +++ b/addons/base_calendar/i18n/tr.po @@ -7,21 +7,21 @@ 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-02-08 13:18+0000\n" -"Last-Translator: Ediz Duman \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-13 17:45+0000\n" +"Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-09 05:28+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "Etkinlik Başlar" +msgstr "Etkinlik başlar" #. module: base_calendar #: view:calendar.event:0 @@ -101,11 +101,6 @@ msgstr "Davet Detayları" msgid "Fourth" msgstr "Dördüncü" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "Kullanıcılar" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -166,21 +161,20 @@ msgstr "Tüm Gün" #: field:calendar.todo,vtimezone:0 #: field:crm.meeting,vtimezone:0 msgid "Timezone" -msgstr "ZamanDilimi" +msgstr "Saat dilimi" #. module: base_calendar #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "Serbest" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "Eğer işaretlenirse yeni mesajlar dikkatinizi gerektirecek" +msgstr "Eğer işaretliyse yeni iletiler ilginizi gerektirir." #. module: base_calendar #: help:calendar.attendee,rsvp:0 @@ -251,7 +245,7 @@ msgid "To" msgstr "Kime" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Hata!" @@ -282,7 +276,7 @@ msgstr "Tekrarlayan ID" #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 msgid "Cancelled" -msgstr "Vazgeçildi" +msgstr "İptal edildi" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -313,12 +307,12 @@ msgstr "Toplantı Konusu" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "Tekrar sonu" +msgstr "Yineleme Sonu" #. module: base_calendar #: view:calendar.event:0 msgid "Group By..." -msgstr "Gruplan İle..." +msgstr "Gruplandır..." #. module: base_calendar #: view:calendar.event:0 @@ -341,7 +335,7 @@ msgstr "Toplantılar" #: field:calendar.todo,recurrent_id_date:0 #: field:crm.meeting,recurrent_id_date:0 msgid "Recurrent ID date" -msgstr "Yinelenen Kimlik tarihi" +msgstr "Yinelenen ID tarihi" #. module: base_calendar #: field:calendar.alarm,event_end_date:0 @@ -352,7 +346,7 @@ msgstr "Etkinlik Bitiş Tarihi" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "Seçime bağlı Katılım" +msgstr "Seçimli Katılım" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -360,15 +354,15 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" -"Mesajlaşma özetini tutar (mesajların sayısı, ...). Bu özet kanban " -"ekranlarına eklenebilmesi için html biçimindedir." +"Sohbetçi özeti (mesaj sayısı, ...) barındırır. Bu özetdoğrudan html " +"formatında sipariş kanban görünümlerinde eklenecek." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Uyarı!" @@ -391,7 +385,7 @@ msgstr "" #: field:crm.meeting,count:0 #: field:res.alarm,repeat:0 msgid "Repeat" -msgstr "Yinele" +msgstr "Tekrarla" #. module: base_calendar #: field:calendar.event,organizer:0 @@ -401,7 +395,7 @@ msgstr "Yinele" #: field:crm.meeting,organizer:0 #: field:crm.meeting,organizer_id:0 msgid "Organizer" -msgstr "Düzenleyen" +msgstr "Ajanda" #. module: base_calendar #: view:calendar.event:0 @@ -446,12 +440,12 @@ msgstr "Katılımcılar" #. module: base_calendar #: view:calendar.event:0 msgid "Confirm" -msgstr "Onaylama" +msgstr "Onayla" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_todo msgid "Calendar Task" -msgstr "Takvim Görevleri" +msgstr "Takvim Görevi" #. module: base_calendar #: field:calendar.event,su:0 @@ -473,7 +467,7 @@ msgstr "Anımsatma Ayrıntıları" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 msgid "Delegrated From" -msgstr "Tarafından Yetkilendirldi" +msgstr "Yetkilendiren" #. module: base_calendar #: selection:calendar.event,select1:0 @@ -485,14 +479,14 @@ msgstr "Ayın günü" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: base_calendar #: field:calendar.event,location:0 #: field:calendar.todo,location:0 #: field:crm.meeting,location:0 msgid "Location" -msgstr "Lokasyon" +msgstr "Konum" #. module: base_calendar #: selection:calendar.attendee,role:0 @@ -505,7 +499,7 @@ msgstr "Katılım gerekli" #: field:calendar.todo,show_as:0 #: field:crm.meeting,show_as:0 msgid "Show Time as" -msgstr "Zamanı şöyle göster" +msgstr "Saati böyle göster" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -529,10 +523,10 @@ msgid "Event alarm information" msgstr "Etkinlik alarm bilgisi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." -msgstr "Sayım negatif ya da 0 olamaz." +msgstr "Sayım negatif veya 0 olamaz." #. module: base_calendar #: field:crm.meeting,create_date:0 @@ -551,7 +545,7 @@ msgstr "Toplantı" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "Ay" +msgstr "Ay(lar)" #. module: base_calendar #: view:calendar.event:0 @@ -561,7 +555,7 @@ msgstr "Görünürlük" #. module: base_calendar #: field:calendar.attendee,rsvp:0 msgid "Required Reply?" -msgstr "Yanıt isteniyor mu?" +msgstr "Yanıt Gerekli mi?" #. module: base_calendar #: field:calendar.event,base_calendar_url:0 @@ -602,20 +596,20 @@ msgstr "Toplantı Ayrıntıları" #. module: base_calendar #: field:calendar.attendee,child_ids:0 msgid "Delegrated To" -msgstr "Şuna Yetkilendirildi" +msgstr "Yetkilendirilen" #. module: base_calendar #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "Aşağıdaki kişilerin e-posta adresini Yok :" +msgstr "Aşağıdaki kişilerin eposta adresi yok :" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Year(s)" -msgstr "Yıl" +msgstr "Yıl(lar)" #. module: base_calendar #: view:crm.meeting.type:0 @@ -635,17 +629,22 @@ msgstr "Oluşturuldu" #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "Çalışanlara açık" +msgstr "Çalışanlara Açık" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" msgstr "saat" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "Etkinlik İptal et" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" -msgstr "Kontak" +msgstr "İlgili" #. module: base_calendar #: field:calendar.attendee,language:0 @@ -657,7 +656,7 @@ msgstr "Dil" #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "Kadar Tekrarla" +msgstr "Buna Kadar Tekrarla" #. module: base_calendar #: view:crm.meeting:0 @@ -706,7 +705,7 @@ msgstr "Etiketler" #. module: base_calendar #: view:calendar.event:0 msgid "Availability" -msgstr "Elverişlilik" +msgstr "Uygunluk" #. module: base_calendar #: selection:calendar.attendee,cutype:0 @@ -718,7 +717,7 @@ msgstr "Bireysel" #: help:calendar.todo,count:0 #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "x Kere tekrarla" +msgstr "x kere tekrarla" #. module: base_calendar #: field:calendar.alarm,user_id:0 @@ -730,7 +729,7 @@ msgstr "Sahibi" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "Belirli aralıklarla olayın otomatik olarak tekrarlamasına izin ver" +msgstr "Belirli aralıklarla olayın kendiliğinden tekrarlamasına izin ver" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar @@ -740,7 +739,7 @@ msgstr "Takvim" #. module: base_calendar #: field:calendar.attendee,cn:0 msgid "Common name" -msgstr "Genel adı" +msgstr "Genel ad" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -748,11 +747,11 @@ msgid "Declined" msgstr "Reddedildi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" -"Tarihe göre Grup desteklenmiyor, bunun yerine takvim görünümünü kullanın" +"Tarihe göre grup desteklenmiyor, bunun yerine takvim görünümünü kullanın" #. module: base_calendar #: view:calendar.event:0 @@ -829,7 +828,7 @@ msgstr "Ek" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "Kapatıldı" +msgstr "Kapalı" #. module: base_calendar #: view:calendar.event:0 @@ -849,19 +848,19 @@ msgstr "Anımsatıcı" #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "Tekrar Sayısı" +msgstr "Tekrarlama Sayısı" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "Dahili Toplantı" +msgstr "İç Toplantı" #. module: base_calendar #: view:calendar.event:0 #: model:ir.actions.act_window,name:base_calendar.action_view_event #: model:ir.ui.menu,name:base_calendar.menu_events msgid "Events" -msgstr "Olaylar" +msgstr "Etkinlikler" #. module: base_calendar #: field:calendar.alarm,state:0 @@ -871,7 +870,7 @@ msgstr "Olaylar" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "Durumu" +msgstr "Durum" #. module: base_calendar #: help:calendar.attendee,email:0 @@ -907,7 +906,7 @@ msgstr "Pazartesi" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "Açık Tartışmaları" +msgstr "Görüşme Başlat" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model @@ -947,12 +946,12 @@ msgstr "Yazım Tarihi" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 msgid "Delegated From" -msgstr "Temsil Edilen" +msgstr "Yetkilendiren" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi mi" +msgstr "Bir İzleyicidir" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -969,7 +968,7 @@ msgstr "Tarih" #. module: base_calendar #: view:calendar.event:0 msgid "Start Date" -msgstr "Başlangıç Tarihi" +msgstr "Başlama Tarihi" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -981,7 +980,7 @@ msgstr "Kasım" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "Katılanın bağlı olduğu grubu belirt" +msgstr "Katılımcının bağlı olduğu grubu belirtir" #. module: base_calendar #: field:calendar.event,mo:0 @@ -1011,7 +1010,7 @@ msgstr "Belirsiz" #: constraint:calendar.todo:0 #: constraint:crm.meeting:0 msgid "Error ! End date cannot be set before start date." -msgstr "Hata! Bitiş tarihi başlangıç ​​tarihinden önce ayarlanamaz." +msgstr "Hata! Bitiş tarihi başlangıç ​​tarihinden önceye ayarlanamaz." #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 @@ -1030,7 +1029,7 @@ msgstr "Ocak" #: field:calendar.alarm,trigger_related:0 #: field:res.alarm,trigger_related:0 msgid "Related to" -msgstr "İlişkili" +msgstr "Bununla ilişkili" #. module: base_calendar #: field:calendar.alarm,trigger_interval:0 @@ -1070,12 +1069,12 @@ msgstr "Takvim katılımcısını çoğaltamazsınız." #. module: base_calendar #: view:calendar.event:0 msgid "Choose day in the month where repeat the meeting" -msgstr "Ay içinde görüşmenin tekrarlanacağı günü seç" +msgstr "Ay içinde toplantının tekrarlanacağı günü seç" #. module: base_calendar #: field:calendar.alarm,action:0 msgid "Action" -msgstr "İşlem" +msgstr "Eylem" #. module: base_calendar #: help:calendar.alarm,duration:0 @@ -1084,8 +1083,8 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" -"'Süre' ve 'Yineleme' nin her ikisi de seçme bağlıdır, ama biri seçlirse " -"diğeri de seçilmelidir" +"'Süre' ve 'Tekrarlama' nın her ikisi de seçime bağlıdır, ama biri oluşursa " +"diğeri de MUTLAKA seçilmelidir" #. module: base_calendar #: help:calendar.attendee,role:0 @@ -1095,7 +1094,7 @@ msgstr "Takvim Kullanıcısının katılım rolü" #. module: base_calendar #: field:calendar.attendee,delegated_to:0 msgid "Delegated To" -msgstr "Temsil edilen" +msgstr "Yetkilendirilen" #. module: base_calendar #: help:calendar.alarm,action:0 @@ -1105,19 +1104,19 @@ msgstr "Alarm tetiklendiğinde başlatılacak eylemi tanımlar" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "Başlama" +msgstr "Başlangıç" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "End date" -msgstr "Tarihi'de" +msgstr "Bitiş tarihi" #. module: base_calendar #: view:calendar.event:0 msgid "Search Events" -msgstr "Etkinlikleri Ara" +msgstr "Etkinlik Ara" #. module: base_calendar #: help:calendar.alarm,active:0 @@ -1134,12 +1133,12 @@ msgstr "" #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "Tekrar Sonlandırma" +msgstr "Tekrarlama Sonlandırma" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "Kadar" +msgstr "Bitiş" #. module: base_calendar #: view:res.alarm:0 @@ -1149,7 +1148,7 @@ msgstr "Anımsatma Ayrıntıları" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "Dışarı Toplantısı" +msgstr "Dışarda Toplantı" #. module: base_calendar #: view:crm.meeting:0 @@ -1159,24 +1158,19 @@ msgstr "Ayın Günü" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Done" -msgstr "Biten" +msgstr "Yapıldı" #. module: base_calendar #: help:calendar.event,interval:0 #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "Her (Gün/Hafta/Ay/Yıl) Tekrarla" +msgstr "Her (Gün/Hafta/Ay/Yıl) yinele" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "Tüm Gün?" - -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "İptal" +msgstr "Tüm Gün mü?" #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting @@ -1196,7 +1190,7 @@ msgstr "" " Yeni bir toplantı planlamak için tıklayın.\n" "

\n" " Takvim çalışanlar arasında paylaşılır ve çalışan tatilleri \n" -" ya da iş fırsatları gibi diğer uygulamalarla \n" +" veya iş fırsatları gibi diğer uygulamalarla \n" " tam entegredir.\n" "

\n" " " @@ -1208,8 +1202,9 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" -"Takvim bileşeninin tanımını \"ÖZET\" özelliğinden eldeedilenden daha tam " -"olarak belirtir." +"Takvim bileşeninin tanımını \"ÖZET\" " +"özelliğinden elde edilenden daha eksiksiz " +"belirtir." #. module: base_calendar #: view:calendar.event:0 @@ -1219,15 +1214,14 @@ msgstr "Sorumlu Kullanıcı" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "Haftanıngünleri seçin" +msgstr "Hafta Günlerini Seçin" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "Meşgul" @@ -1249,7 +1243,7 @@ msgstr "Yinelenen" #: field:calendar.todo,rrule_type:0 #: field:crm.meeting,rrule_type:0 msgid "Recurrency" -msgstr "Yineleme" +msgstr "Yinelenme" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -1263,14 +1257,14 @@ msgstr "Perşembe" #: field:calendar.todo,exrule:0 #: field:crm.meeting,exrule:0 msgid "Exception Rule" -msgstr "İstisna Kural" +msgstr "İstisnai Kural" #. module: base_calendar #: help:calendar.attendee,language:0 msgid "" "To specify the language for text values in aproperty or property parameter." msgstr "" -"Bir özellikteki ya da özellik parametresine ait metin değerlerinin dilini " +"Bir özellikteki veya özellik değiştirgelerine ait metin değerlerinin dilini " "belirler." #. module: base_calendar @@ -1286,7 +1280,7 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" -"Yineleme kuralı dışında tutulan bir zaman tekrarlama modelini tanımlar." +"Yineleme kuralı dışında tutulacak bir kural ya da yineleme modeli tanımlar." #. module: base_calendar #: field:calendar.event,month_list:0 @@ -1300,12 +1294,12 @@ msgstr "Ay" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "Gün" +msgstr "Gün(ler)" #. module: base_calendar #: view:calendar.event:0 msgid "Confirmed Events" -msgstr "Onaylanmış Etkinlikler" +msgstr "Onaylı Etkinlikler" #. module: base_calendar #: field:calendar.attendee,dir:0 @@ -1349,12 +1343,12 @@ msgstr "ir.values" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "Toplantı Aramam" +msgstr "Toplantı Ara" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment msgid "ir.attachment" -msgstr "ir.ek" +msgstr "ir.attachment" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type @@ -1364,7 +1358,7 @@ msgstr "Toplantı Türü" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Delegated" -msgstr "Temsil Edildi" +msgstr "Yetkilendirildi" #. module: base_calendar #: field:calendar.event,sa:0 @@ -1443,8 +1437,8 @@ msgid "" "Contains the text to be used as the message subject for " "email or contains the text to be used for display" msgstr "" -"Eposta konusu olarak kullanılacak ya da görüntülenecek metin olarak " -"kullanılacak metni içerir." +"Eposta konusu olarak kullanılacak metni içerir ya da " +" görüntülenecek metni içerir." #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message @@ -1474,25 +1468,25 @@ msgstr "Nisan" #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "E-posta adresleri bulunamadı" +msgstr "Eposta adresleri bulunamadı" #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency period" -msgstr "Yineleme Dönemi" +msgstr "Yineleme süresi" #. module: base_calendar #: field:calendar.event,week_list:0 #: field:calendar.todo,week_list:0 #: field:crm.meeting,week_list:0 msgid "Weekday" -msgstr "HaftanınGünü" +msgstr "Hafta Günü" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." -msgstr "Aralıklı negatif olamaz" +msgstr "Aralık negatif olamaz" #. module: base_calendar #: field:calendar.event,byday:0 @@ -1502,10 +1496,10 @@ msgid "By day" msgstr "Gündüz" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." -msgstr "İlk davet tarihinden belirtmeniz gerekir." +msgstr "İlk davet tarihini belirtmeniz gerekir." #. module: base_calendar #: field:calendar.alarm,model_id:0 @@ -1534,12 +1528,12 @@ msgstr "Bilgi Amaçlı" #: field:calendar.todo,select1:0 #: field:crm.meeting,select1:0 msgid "Option" -msgstr "Opsiyon" +msgstr "Seçenek" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_attendee msgid "Attendee information" -msgstr "Katılımcı Bilgisi" +msgstr "Katılımcı bilgisi" #. module: base_calendar #: field:calendar.alarm,res_id:0 @@ -1549,7 +1543,7 @@ msgstr "Kaynak ID" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Needs Action" -msgstr "Gereki İşlemler" +msgstr "Eylem Gerektiriyor" #. module: base_calendar #: field:calendar.attendee,sent_by:0 @@ -1561,20 +1555,20 @@ msgstr "Gönderen" #: field:calendar.todo,sequence:0 #: field:crm.meeting,sequence:0 msgid "Sequence" -msgstr "Sıralama" +msgstr "Sıra" #. module: base_calendar #: help:calendar.event,alarm_id:0 #: help:calendar.todo,alarm_id:0 #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "Bu sefer etkinlik başlamadan önce alarm ayarla" +msgstr "Bu sefer etkinlik başlamadan önce alarmı ayarla" #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Accept" -msgstr "Kabulet" +msgstr "Kabul" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -1588,7 +1582,7 @@ msgstr "Cumartesi" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "Herzaman Tekrarla" +msgstr "Tekrarlama Durumu" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1599,7 +1593,6 @@ msgstr "İkinci" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "Uygun/Meşgul" @@ -1630,12 +1623,12 @@ msgid "" " * Points to a procedure resource, which is invoked when " " the alarm is triggered for procedure." msgstr "" -"* Alarmın ses çalması için tetiklendiği durumuna benzeterek, Bir ses " -"kaynağını işaret eder.\n" -" * Bir epostaya mesal eki olarak gönderilmek istenen " +"* Alarmın ses çalması için, tetiklendiği durumuna " +"benzeterek, bir ses kaynağını işaret eder.\n" +" * Bir epostaya mesaj eki olarak gönderilmek istenen " "dosya,\n" -" * Alarm işlem için tetiklendiğinde işlem kaynağını " -"işaret eder." +" * Alarm işlem için tetiklendiğinde işlem kaynağını " +" işaret eder." #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1643,3 +1636,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "Beşinci" + +#~ msgid "Users" +#~ msgstr "Kullanıcılar" + +#~ msgid "Cancel" +#~ msgstr "İptal" diff --git a/addons/base_calendar/i18n/zh_CN.po b/addons/base_calendar/i18n/zh_CN.po index a32fcd99d70..60ce6471042 100644 --- a/addons/base_calendar/i18n/zh_CN.po +++ b/addons/base_calendar/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-16 04:47+0000\n" +"Last-Translator: Xinwen Li \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "邀请详情" msgid "Fourth" msgstr "第四" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "用户" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "时区" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "空闲" @@ -249,7 +243,7 @@ msgid "To" msgstr "到" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "错误!" @@ -301,7 +295,7 @@ msgstr "与会者的参与状况" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "" +msgstr "收信人" #. module: base_calendar #: field:crm.meeting,name:0 @@ -361,10 +355,10 @@ msgstr "保存复杂的摘要(消息数量,……等)。为了插入到看板视 #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "警告!" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "事件提醒信息" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -531,21 +525,21 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "创建日期" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "会议" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "" +msgstr "月" #. module: base_calendar #: view:calendar.event:0 @@ -602,7 +596,7 @@ msgstr "代表人" #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "" +msgstr "下列联系人没有电子邮件地址:" #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -636,6 +630,11 @@ msgstr "全员可见" msgid "hours" msgstr "" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "已拒绝" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1162,11 +1161,6 @@ msgstr "重复间隔(日/周/月/年)" msgid "All Day?" msgstr "" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "取消" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "忙碌" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "工作日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "按天" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "第二个" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "空闲/忙碌" @@ -1606,3 +1598,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "第五个" + +#~ msgid "Cancel" +#~ msgstr "取消" + +#~ msgid "Users" +#~ msgstr "用户" diff --git a/addons/base_calendar/i18n/zh_TW.po b/addons/base_calendar/i18n/zh_TW.po index 7720aa85827..df0ae1b149e 100644 --- a/addons/base_calendar/i18n/zh_TW.po +++ b/addons/base_calendar/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-01 18:26+0000\n" "Last-Translator: Charles Hsu \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-02-02 05:59+0000\n" -"X-Generator: Launchpad (build 16462)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -99,11 +99,6 @@ msgstr "邀約詳情" msgid "Fourth" msgstr "第四" -#. module: base_calendar -#: model:ir.model,name:base_calendar.model_res_users -msgid "Users" -msgstr "使用者" - #. module: base_calendar #: field:calendar.event,day:0 #: selection:calendar.event,select1:0 @@ -171,7 +166,6 @@ msgstr "時區" #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 msgid "Free" msgstr "自由" @@ -249,7 +243,7 @@ msgid "To" msgstr "至" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1255 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "錯誤!" @@ -361,10 +355,10 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 -#: code:addons/base_calendar/base_calendar.py:444 -#: code:addons/base_calendar/base_calendar.py:1008 -#: code:addons/base_calendar/base_calendar.py:1010 -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:441 +#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "警告!" @@ -523,7 +517,7 @@ msgid "Event alarm information" msgstr "活動警示資訊" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1010 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -636,6 +630,11 @@ msgstr "對員工公開" msgid "hours" msgstr "小時" +#. module: base_calendar +#: view:calendar.event:0 +msgid "Cancel Event" +msgstr "" + #. module: base_calendar #: field:calendar.attendee,partner_id:0 msgid "Contact" @@ -742,7 +741,7 @@ msgid "Declined" msgstr "拒絕" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1455 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "未支援以日期分組,請使用日曆式檢視。" @@ -1162,11 +1161,6 @@ msgstr "每(日/週/月/年)重覆" msgid "All Day?" msgstr "全天?" -#. module: base_calendar -#: view:calendar.event:0 -msgid "Cancel" -msgstr "取消" - #. module: base_calendar #: model:ir.actions.act_window,help:base_calendar.action_crm_meeting msgid "" @@ -1201,12 +1195,11 @@ msgid "Select Weekdays" msgstr "選擇平日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1514 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 -#: selection:res.users,availability:0 #, python-format msgid "Busy" msgstr "忙碌" @@ -1455,7 +1448,7 @@ msgid "Weekday" msgstr "週日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1008 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1468,7 +1461,7 @@ msgid "By day" msgstr "每日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:444 +#: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." msgstr "" @@ -1565,7 +1558,6 @@ msgstr "秒" #. module: base_calendar #: field:calendar.attendee,availability:0 -#: field:res.users,availability:0 msgid "Free/Busy" msgstr "空閒/忙碌" @@ -1603,3 +1595,9 @@ msgstr "" #: selection:crm.meeting,byday:0 msgid "Fifth" msgstr "第五" + +#~ msgid "Cancel" +#~ msgstr "取消" + +#~ msgid "Users" +#~ msgstr "使用者" diff --git a/addons/base_gengo/i18n/ar.po b/addons/base_gengo/i18n/ar.po index 8e7204eb2fe..c30b38ed5f6 100644 --- a/addons/base_gengo/i18n/ar.po +++ b/addons/base_gengo/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-27 22:12+0000\n" "Last-Translator: gehad shaat \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +43,27 @@ msgstr "التعليقات" msgid "Gengo Private Key" msgstr "" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -82,6 +98,11 @@ msgstr "" msgid "Translation By Machine" msgstr "" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -98,9 +119,8 @@ msgid "Gengo Translation Service Level" msgstr "" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." +#: view:res.company:0 +msgid "Add your comments here for translator...." msgstr "" #. module: base_gengo diff --git a/addons/base_gengo/i18n/base_gengo.pot b/addons/base_gengo/i18n/base_gengo.pot index 7fe77c3f8ae..10145ec1182 100644 --- a/addons/base_gengo/i18n/base_gengo.pot +++ b/addons/base_gengo/i18n/base_gengo.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -41,11 +41,26 @@ msgstr "" msgid "Gengo Private Key" msgstr "" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -78,6 +93,11 @@ msgstr "" msgid "Translation By Machine" msgstr "" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -93,8 +113,8 @@ msgid "Gengo Translation Service Level" msgstr "" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "The Gengo translation service selected is not supported for this language." +#: view:res.company:0 +msgid "Add your comments here for translator...." msgstr "" #. module: base_gengo diff --git a/addons/base_gengo/i18n/cs.po b/addons/base_gengo/i18n/cs.po new file mode 100644 index 00000000000..2809749e6ff --- /dev/null +++ b/addons/base_gengo/i18n/cs.po @@ -0,0 +1,269 @@ +# 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-31 16:46+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-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "" + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "" + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add your comments here for translator...." +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "" diff --git a/addons/base_gengo/i18n/de.po b/addons/base_gengo/i18n/de.po index f61d41c1b8a..03d8d5d9652 100644 --- a/addons/base_gengo/i18n/de.po +++ b/addons/base_gengo/i18n/de.po @@ -7,15 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-21 21:55+0000\n" +"Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +44,28 @@ msgstr "Kommentare" msgid "Gengo Private Key" msgstr "Gengo Privater Schlüssel" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"Der Gengo Übersetzungsservice wird für diese Sprache nicht unterstützt" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "Hinzufügen Gengo Login Public Key" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "base.gengo.translations" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "Gengo Kommentare & Aktivitäten" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -85,6 +103,11 @@ msgstr "" msgid "Translation By Machine" msgstr "Maschinelle Vorhersage" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "Gengo Login privater Schlüssel" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -105,10 +128,9 @@ msgid "Gengo Translation Service Level" msgstr "Gengo Übersetzungssergvice" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." -msgstr "" +#: view:res.company:0 +msgid "Add your comments here for translator...." +msgstr "Hier Kommentare für den Übersetzer hinzufügen" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -217,7 +239,7 @@ msgstr "Senden" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Ultra" -msgstr "" +msgstr "Ultra" #. module: base_gengo #: model:ir.model,name:base_gengo.model_ir_translation diff --git a/addons/base_gengo/i18n/es.po b/addons/base_gengo/i18n/es.po index 2b5f5cc8c30..604cf7129cc 100644 --- a/addons/base_gengo/i18n/es.po +++ b/addons/base_gengo/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -44,11 +44,29 @@ msgstr "Comentarios" msgid "Gengo Private Key" msgstr "Clave privada Gengo" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"El servicio de traducción Gengo seleccionado no está soportado para este " +"idioma." + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "base.gengo.translations" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -85,6 +103,11 @@ msgstr "" msgid "Translation By Machine" msgstr "Traducción automática" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -105,12 +128,9 @@ msgid "Gengo Translation Service Level" msgstr "Nivel de servicio de traducción Gengo" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." +#: view:res.company:0 +msgid "Add your comments here for translator...." msgstr "" -"El servicio de traducción Gengo seleccionado no está soportado para este " -"idioma." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 diff --git a/addons/base_gengo/i18n/fr.po b/addons/base_gengo/i18n/fr.po index c834c74b73e..15699be326c 100644 --- a/addons/base_gengo/i18n/fr.po +++ b/addons/base_gengo/i18n/fr.po @@ -7,25 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-04 11:28+0000\n" -"Last-Translator: Jerome CHARLOT \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-23 12:12+0000\n" +"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " +"\n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 msgid "Comments for Translator" -msgstr "" +msgstr "Commentaires pour traducteur" #. module: base_gengo #: field:ir.translation,job_id:0 msgid "Gengo Job ID" -msgstr "" +msgstr "Identifiant de la tâche Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 @@ -43,11 +44,27 @@ msgstr "Commentaires" msgid "Gengo Private Key" msgstr "Clé privée Gengo" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "base.gengo.translations" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -61,13 +78,13 @@ msgstr "Langue" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "" +msgstr "Commentaires et activité liés à Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 #, python-format msgid "Gengo Sync Translation (Response)" -msgstr "" +msgstr "Synchronisation de la traduction Gengo (Réponse)" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:72 @@ -82,6 +99,11 @@ msgstr "" msgid "Translation By Machine" msgstr "" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -98,9 +120,8 @@ msgid "Gengo Translation Service Level" msgstr "" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." +#: view:res.company:0 +msgid "Add your comments here for translator...." msgstr "" #. module: base_gengo diff --git a/addons/base_gengo/i18n/hr.po b/addons/base_gengo/i18n/hr.po index d8920123944..e0bd4790dd2 100644 --- a/addons/base_gengo/i18n/hr.po +++ b/addons/base_gengo/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-12 20:39+0000\n" "Last-Translator: Davor Bojkić \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-02-13 05:21+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +43,27 @@ msgstr "Komentari" msgid "Gengo Private Key" msgstr "Gengo privatni ključ" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "OdabraniGengo sustav prijevoda nije podržan za ovaj jezik." + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -84,6 +100,11 @@ msgstr "" msgid "Translation By Machine" msgstr "Prevelo računalo" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -104,10 +125,9 @@ msgid "Gengo Translation Service Level" msgstr "Nivo usluge Gengo prijevoda" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." -msgstr "OdabraniGengo sustav prijevoda nije podržan za ovaj jezik." +#: view:res.company:0 +msgid "Add your comments here for translator...." +msgstr "" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 diff --git a/addons/base_gengo/i18n/hu.po b/addons/base_gengo/i18n/hu.po new file mode 100644 index 00000000000..357e4381fa3 --- /dev/null +++ b/addons/base_gengo/i18n/hu.po @@ -0,0 +1,285 @@ +# 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-19 17:32+0000\n" +"Last-Translator: krnkris \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-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "Megjegyzés a fordítónak" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "Gengó feladat azonosító ID" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "Ez a nyelv nincs támogatva a Gengo fordító szolgáltatások által." + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Megjegyzések" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Gengo Privát Kulcs" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"A kiválasztott Gengo fordító szolgáltatást nem támogatott erre a nyelvre." + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "Adjon meg Gengo nyilvános belépési kulcsot..." + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "base.gengo.translations" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "Gengo Hozzászólások & Aktivitás..." + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "Feladatok automatikusan jóvá lesznek hagyva a Gengo által." + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Nyelv" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "Megjegyzések & Műveletek a Gengo felé csatolva" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "Gengo Szinkron fordítás (Válasz)" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" +"Gengo `Nyilvános Kulcs` vagy `Privát Kulcs` hiányzik. Írja be a Gengo " +"azonosítási paramétereketa `Beállítások > Vállalatok > Gengo Paraméterek` " +"alatt." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "Gép által fordítva" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "Adjon meg Gengo privát belépési kulcsot..." + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" +"%s\n" +"\n" +"--\n" +" Megjegyzés erre %s ettől %s." + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "Gengo fordítási szolgáltatási szint" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add your comments here for translator...." +msgstr "Adja meg itt a fordítónak szánt megjegyzéseket..." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "Szabványos" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" +"Itt kiválaszthatja a szolgáltatási szintet amit használni szeretne a " +"Gengoval az automatikus fordításhoz." + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "Küldési feladat újraindítása" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "A Gengo-ban jóváhagyni" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "Privát kulcs" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "Nyilvános kulcs" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "Gengo nyilvános kulcs" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "Gengo szinkron fordítás (Igénylés)" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "Fordítások" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "Fordítás automatikus jóváhagyása?" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "Gengo: Fordítás kézi igénylése" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "Gengo aonosítási hiba" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "Vállalatok" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" +"Megjegyzés: Ha a fordítás állapota 'Folyamatban', az azt jelenti, hogy a " +"fordítást még a rendszerbe való feltöltés előtt jóvá kell hagyni. Általában " +"közvetlenül kell megtennie a Gengo előfizetésén keresztül" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" +"Gengo kapcsolat nem sikerült ezzel az üzenettel:\n" +"``%s``" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "Gengo Paraméterek" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "Küldés" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "Ultra" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "Gengo fordítási szolgáltatás" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "Pro" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "Gengo kérelem űrlap" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "Figyelmeztetés" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" +"Ez a megjegyzés automatikusan le lesz zárva minden egyes Gengo meghíváskor" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "Megszakítás" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "vagy" diff --git a/addons/base_gengo/i18n/it.po b/addons/base_gengo/i18n/it.po index 8c33d99dc35..b04b9c65197 100644 --- a/addons/base_gengo/i18n/it.po +++ b/addons/base_gengo/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +43,29 @@ msgstr "Commenti" msgid "Gengo Private Key" msgstr "Chiave privata Gengo" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"Il servizio di traduzione Gengo selezionato non è supportato per questa " +"lingua" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "base.gengo.translations" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -85,6 +103,11 @@ msgstr "" msgid "Translation By Machine" msgstr "Traduzione automatica" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -105,12 +128,9 @@ msgid "Gengo Translation Service Level" msgstr "" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." +#: view:res.company:0 +msgid "Add your comments here for translator...." msgstr "" -"Il servizio di traduzione Gengo selezionato non è supportato per questa " -"lingua" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 diff --git a/addons/base_gengo/i18n/mk.po b/addons/base_gengo/i18n/mk.po new file mode 100644 index 00000000000..953ad805404 --- /dev/null +++ b/addons/base_gengo/i18n/mk.po @@ -0,0 +1,284 @@ +# 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. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-28 22:03+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" + +#. module: base_gengo +#: view:res.company:0 +msgid "Comments for Translator" +msgstr "Коментар за преведувачот" + +#. module: base_gengo +#: field:ir.translation,job_id:0 +msgid "Gengo Job ID" +msgstr "Gengo Job ID" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "This language is not supported by the Gengo translation services." +msgstr "Овој јазик не е поддржан од Gengo сервисот за преведување" + +#. module: base_gengo +#: field:res.company,gengo_comment:0 +msgid "Comments" +msgstr "Коментари" + +#. module: base_gengo +#: field:res.company,gengo_private_key:0 +msgid "Gengo Private Key" +msgstr "Gengo приватен клуч" + +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "Избраниот Gengo сервис за преведување не е поддржан за овој јазик." + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "Додади јавен клуч за најава на Gengo..." + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_base_gengo_translations +msgid "base.gengo.translations" +msgstr "base.gengo.translations" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "Gengo Коментари & Активности..." + +#. module: base_gengo +#: help:res.company,gengo_auto_approve:0 +msgid "Jobs are Automatically Approved by Gengo." +msgstr "Работните места се автоматски одобрени од Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,lang_id:0 +msgid "Language" +msgstr "Јазик" + +#. module: base_gengo +#: field:ir.translation,gengo_comment:0 +msgid "Comments & Activity Linked to Gengo" +msgstr "Коментари & активност врзани со Gengo" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:124 +#, python-format +msgid "Gengo Sync Translation (Response)" +msgstr "" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:72 +#, python-format +msgid "" +"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " +"authentication parameters under `Settings > Companies > Gengo Parameters`." +msgstr "" +"Недостига Gengo `Јавен клуч` или `Приватен клуч`. Внесете ги вашите " +"параметри за Gengo автентикација под `Settings > Companies > Gengo " +"Parameters`." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Translation By Machine" +msgstr "Превод од машина" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "Додади приватен клуч за најава на Gengo..." + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:155 +#, python-format +msgid "" +"%s\n" +"\n" +"--\n" +" Commented on %s by %s." +msgstr "" +"%s\n" +"\n" +"--\n" +" Коментирано на %s од %s." + +#. module: base_gengo +#: field:ir.translation,gengo_translation:0 +msgid "Gengo Translation Service Level" +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add your comments here for translator...." +msgstr "Додадете ги овде вашите коментари за преведувач...." + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Standard" +msgstr "Стандардно" + +#. module: base_gengo +#: help:ir.translation,gengo_translation:0 +msgid "" +"You can select here the service level you want for an automatic translation " +"using Gengo." +msgstr "" +"Изберете го нивото на сервисот кој го сакате за автоматско преведување со " +"користење на Gengo." + +#. module: base_gengo +#: field:base.gengo.translations,restart_send_job:0 +msgid "Restart Sending Job" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "To Approve In Gengo" +msgstr "Да се одобри во Gengo" + +#. module: base_gengo +#: view:res.company:0 +msgid "Private Key" +msgstr "Приватен клуч" + +#. module: base_gengo +#: view:res.company:0 +msgid "Public Key" +msgstr "Јавен клуч" + +#. module: base_gengo +#: field:res.company,gengo_public_key:0 +msgid "Gengo Public Key" +msgstr "Gengo јавен клуч" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:123 +#, python-format +msgid "Gengo Sync Translation (Request)" +msgstr "" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Translations" +msgstr "Преводи" + +#. module: base_gengo +#: field:res.company,gengo_auto_approve:0 +msgid "Auto Approve Translation ?" +msgstr "Автоматско одобрување на превод?" + +#. module: base_gengo +#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations +#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations +msgid "Gengo: Manual Request of Translation" +msgstr "Gengo: Рачно барање за превод" + +#. module: base_gengo +#: code:addons/base_gengo/ir_translation.py:62 +#: code:addons/base_gengo/wizard/base_gengo_translations.py:109 +#, python-format +msgid "Gengo Authentication Error" +msgstr "Грешка Gengo автентикација" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_res_company +msgid "Companies" +msgstr "Компании" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "" +"Note: If the translation state is 'In Progress', it means that the " +"translation has to be approved to be uploaded in this system. You are " +"supposed to do that directly by using your Gengo Account" +msgstr "" +"Белешка: Доколку состојбата на преводот е 'Во тек', тоа значи дека преводот " +"треба да биде одобрен за да биде качен во овој систем. Тоа треба да го " +"направите директно со користење на вашата Gengo Сметка" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:82 +#, python-format +msgid "" +"Gengo connection failed with this message:\n" +"``%s``" +msgstr "" +"Gengo конекцијата е неуспешна со оваа порака:\n" +"``%s``" + +#. module: base_gengo +#: view:res.company:0 +msgid "Gengo Parameters" +msgstr "Gengo параметри" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Send" +msgstr "Испрати" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Ultra" +msgstr "Ултра" + +#. module: base_gengo +#: model:ir.model,name:base_gengo.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Translation Service" +msgstr "Gengo сервис за преведување" + +#. module: base_gengo +#: selection:ir.translation,gengo_translation:0 +msgid "Pro" +msgstr "Про" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Gengo Request Form" +msgstr "Формулар за Gengo барање" + +#. module: base_gengo +#: code:addons/base_gengo/wizard/base_gengo_translations.py:114 +#, python-format +msgid "Warning" +msgstr "Внимание" + +#. module: base_gengo +#: help:res.company,gengo_comment:0 +msgid "" +"This comment will be automatically be enclosed in each an every request sent " +"to Gengo" +msgstr "" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "Cancel" +msgstr "Откажи" + +#. module: base_gengo +#: view:base.gengo.translations:0 +msgid "or" +msgstr "или" diff --git a/addons/base_gengo/i18n/mn.po b/addons/base_gengo/i18n/mn.po index dd80d96b1ab..37ca98ba317 100644 --- a/addons/base_gengo/i18n/mn.po +++ b/addons/base_gengo/i18n/mn.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-18 07:26+0000\n" -"Last-Translator: Мөнхөө \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-02-20 07:55+0000\n" +"Last-Translator: gobi \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-02-19 05:32+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 msgid "Comments for Translator" -msgstr "" +msgstr "Орчуулагчид өгөх анхааруулга" #. module: base_gengo #: field:ir.translation,job_id:0 @@ -43,11 +43,27 @@ msgstr "Сэтгэгдэлүүд" msgid "Gengo Private Key" msgstr "" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -82,6 +98,11 @@ msgstr "" msgid "Translation By Machine" msgstr "" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -98,9 +119,8 @@ msgid "Gengo Translation Service Level" msgstr "" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." +#: view:res.company:0 +msgid "Add your comments here for translator...." msgstr "" #. module: base_gengo @@ -128,7 +148,7 @@ msgstr "" #. module: base_gengo #: view:res.company:0 msgid "Private Key" -msgstr "" +msgstr "Хувийн түлхүүр" #. module: base_gengo #: view:res.company:0 @@ -203,7 +223,7 @@ msgstr "Илгээх" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Ultra" -msgstr "" +msgstr "Хэт" #. module: base_gengo #: model:ir.model,name:base_gengo.model_ir_translation @@ -218,7 +238,7 @@ msgstr "" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Pro" -msgstr "" +msgstr "Мэргэжлийн" #. module: base_gengo #: view:base.gengo.translations:0 diff --git a/addons/base_gengo/i18n/nb.po b/addons/base_gengo/i18n/nb.po index cdef5a68fd5..5204890d277 100644 --- a/addons/base_gengo/i18n/nb.po +++ b/addons/base_gengo/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +43,28 @@ msgstr "Kommentarer." msgid "Gengo Private Key" msgstr "Gengo privat nøkkel." +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"Den Gengo oversettelses tjeneste som er valgt støttes ikke for dette språket." + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "Base.Gengo.Oversettelser." +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -82,6 +99,11 @@ msgstr "" msgid "Translation By Machine" msgstr "Oversetting av maskin." +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -102,11 +124,9 @@ msgid "Gengo Translation Service Level" msgstr "Gengo Oversettelse tjeneste nivå." #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." +#: view:res.company:0 +msgid "Add your comments here for translator...." msgstr "" -"Den Gengo oversettelses tjeneste som er valgt støttes ikke for dette språket." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 diff --git a/addons/base_gengo/i18n/nl.po b/addons/base_gengo/i18n/nl.po index 73991dded4f..0355852247a 100644 --- a/addons/base_gengo/i18n/nl.po +++ b/addons/base_gengo/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-02 20:45+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-08 11:16+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-09 06:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -31,7 +31,7 @@ msgstr "Gengo Job ID" #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 #, python-format msgid "This language is not supported by the Gengo translation services." -msgstr "" +msgstr "Deze taal wordt (nog) niet ondersteund door Gengo vertaal services." #. module: base_gengo #: field:res.company,gengo_comment:0 @@ -43,15 +43,32 @@ msgstr "Opmerkingen" msgid "Gengo Private Key" msgstr "Gengo Private Key" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"De gebruikte Gengo vertalingsservice wordt niet ondersteund voor deze taal" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "Voeg Gengo publieke sleutel toe ...." + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "base.gengo.translations" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "Gengo Reacties & Activiteiten" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." -msgstr "" +msgstr "Opdrachten worden automatisch goedgekeurd door Gengo." #. module: base_gengo #: field:base.gengo.translations,lang_id:0 @@ -61,13 +78,13 @@ msgstr "Taal" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "" +msgstr "Reacties & Activiteiten gelinkt aan Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 #, python-format msgid "Gengo Sync Translation (Response)" -msgstr "" +msgstr "Gengo Synchroniseer vertaling" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:72 @@ -76,12 +93,19 @@ msgid "" "Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " "authentication parameters under `Settings > Companies > Gengo Parameters`." msgstr "" +"Gengo 'Publieke Sleutel' of 'Prive Sleutel' missen. Vul uw Gengo gegevens in " +"onder 'Instellingen > Bedrijven > Gengo Gegevens'/" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Translation By Machine" msgstr "Vertalingen door machine" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "Voeg Gengo prive sleutel toe ...." + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -94,18 +118,17 @@ msgstr "" "%s\n" "\n" "--\n" -" Heeft opmerkingen op %s door %s." +" Reacties op %s door %s" #. module: base_gengo #: field:ir.translation,gengo_translation:0 msgid "Gengo Translation Service Level" -msgstr "" +msgstr "Gengo vertalingsservice niveau" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." -msgstr "" +#: view:res.company:0 +msgid "Add your comments here for translator...." +msgstr "Voeg uw opmerkingen voor de vertaler hier in ...." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -118,16 +141,18 @@ msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." msgstr "" +"U kunt hier het service niveau voor de automatische vertaling door Gengo " +"selecteren." #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 msgid "Restart Sending Job" -msgstr "Start verstuur job opnieuw" +msgstr "Verzending opdacht opnieuw starten" #. module: base_gengo #: view:ir.translation:0 msgid "To Approve In Gengo" -msgstr "Gied te keuren in Gengo" +msgstr "Goed te keuren in Gengo" #. module: base_gengo #: view:res.company:0 @@ -148,7 +173,7 @@ msgstr "Gengo publieke sleutel" #: code:addons/base_gengo/wizard/base_gengo_translations.py:123 #, python-format msgid "Gengo Sync Translation (Request)" -msgstr "" +msgstr "Gengo Sync vertaling (Verzoek)" #. module: base_gengo #: view:ir.translation:0 @@ -164,14 +189,14 @@ msgstr "Automatisch vertalingen goedkeuren" #: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations #: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations msgid "Gengo: Manual Request of Translation" -msgstr "" +msgstr "Gengo: Handmatig vertalingen aanvragen" #. module: base_gengo #: code:addons/base_gengo/ir_translation.py:62 #: code:addons/base_gengo/wizard/base_gengo_translations.py:109 #, python-format msgid "Gengo Authentication Error" -msgstr "" +msgstr "Gengo authenticatie Fout" #. module: base_gengo #: model:ir.model,name:base_gengo.model_res_company @@ -185,6 +210,9 @@ msgid "" "translation has to be approved to be uploaded in this system. You are " "supposed to do that directly by using your Gengo Account" msgstr "" +"Noot: Als de vertalingsstatus 'In behandeling' is, staat deze klaar voor " +"goedkeuring om doorgevoerd te worden in dit systeem. Het is de bedoeling dat " +"u dit via u Gengo Account goedkeurt" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:82 @@ -193,11 +221,13 @@ msgid "" "Gengo connection failed with this message:\n" "``%s``" msgstr "" +"Gengo connectie mislukt met deze melding:\n" +"\"%s\"" #. module: base_gengo #: view:res.company:0 msgid "Gengo Parameters" -msgstr "" +msgstr "Gengo gegevens" #. module: base_gengo #: view:base.gengo.translations:0 @@ -227,7 +257,7 @@ msgstr "Pro" #. module: base_gengo #: view:base.gengo.translations:0 msgid "Gengo Request Form" -msgstr "" +msgstr "Gengo aanvraag formulier" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 @@ -241,6 +271,8 @@ msgid "" "This comment will be automatically be enclosed in each an every request sent " "to Gengo" msgstr "" +"Deze reactie wordt automatisch toegevoegd in elke aanvraag verzonden aan " +"Gengo" #. module: base_gengo #: view:base.gengo.translations:0 @@ -250,4 +282,4 @@ msgstr "Annuleren" #. module: base_gengo #: view:base.gengo.translations:0 msgid "or" -msgstr "" +msgstr "of" diff --git a/addons/base_gengo/i18n/pt.po b/addons/base_gengo/i18n/pt.po index b9ff950258e..5dbe2004ab6 100644 --- a/addons/base_gengo/i18n/pt.po +++ b/addons/base_gengo/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-16 12:51+0000\n" "Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +43,27 @@ msgstr "Comentários" msgid "Gengo Private Key" msgstr "" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "base.gengo.translations" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -82,6 +98,11 @@ msgstr "" msgid "Translation By Machine" msgstr "" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -102,9 +123,8 @@ msgid "Gengo Translation Service Level" msgstr "" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." +#: view:res.company:0 +msgid "Add your comments here for translator...." msgstr "" #. module: base_gengo diff --git a/addons/base_gengo/i18n/pt_BR.po b/addons/base_gengo/i18n/pt_BR.po index 5476c634cbd..e7cc1e65b4d 100644 --- a/addons/base_gengo/i18n/pt_BR.po +++ b/addons/base_gengo/i18n/pt_BR.po @@ -7,15 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-16 05: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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +44,28 @@ msgstr "Comentários" msgid "Gengo Private Key" msgstr "Chave privada do Gengo" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"O serviço de tradução Gengo selecionado não é suportado para este idioma." + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "Adicionar Chave Pública de login Gengo" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "base.gengo.translations" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "Gengo Comentários e Atividades..." + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -85,6 +103,11 @@ msgstr "" msgid "Translation By Machine" msgstr "Tradução por Máquina" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "Adicionar Chave Privada de login Gengo" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -105,11 +128,9 @@ msgid "Gengo Translation Service Level" msgstr "Nível de serviço de tradução Gengo" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." -msgstr "" -"O serviço de tradução Gengo selecionado não é suportado para este idioma." +#: view:res.company:0 +msgid "Add your comments here for translator...." +msgstr "Adicione seus comentários para o tradutor..." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 diff --git a/addons/base_gengo/i18n/ro.po b/addons/base_gengo/i18n/ro.po index e3923c8002e..379cfbac915 100644 --- a/addons/base_gengo/i18n/ro.po +++ b/addons/base_gengo/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-19 18:58+0000\n" -"Last-Translator: Fekete Mihai \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-07 18:34+0000\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-01-20 05:17+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +43,28 @@ msgstr "Comentarii" msgid "Gengo Private Key" msgstr "Cheie Privata Gengo" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" +"Serviciul de traduceri Gengo selectat nu este acceptat pentru aceasta limba." + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "Adaugati Cheia Publica pentru autentificarea Gengo..." + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "baza.gengo.traduceri" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "Comentarii & Activitate Gengo..." + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -84,6 +101,11 @@ msgstr "" msgid "Translation By Machine" msgstr "Traducere mecanica" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "Adaugati Cheia Privata pentru autentificarea Gengo..." + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -104,11 +126,9 @@ msgid "Gengo Translation Service Level" msgstr "Nivelul Serviciului de Traduceri Gengo" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." -msgstr "" -"Serviciul de traduceri Gengo selectat nu este acceptat pentru aceasta limba." +#: view:res.company:0 +msgid "Add your comments here for translator...." +msgstr "Adaugati aici comentariile dumneavoastra pentru traducator...." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 diff --git a/addons/base_gengo/i18n/sl.po b/addons/base_gengo/i18n/sl.po index 9df5e138524..9328df24806 100644 --- a/addons/base_gengo/i18n/sl.po +++ b/addons/base_gengo/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-26 11:46+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +43,27 @@ msgstr "Komentarji" msgid "Gengo Private Key" msgstr "Gengo privatni ključ" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "base.gengo.translations" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -82,6 +98,11 @@ msgstr "" msgid "Translation By Machine" msgstr "" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -98,9 +119,8 @@ msgid "Gengo Translation Service Level" msgstr "" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." +#: view:res.company:0 +msgid "Add your comments here for translator...." msgstr "" #. module: base_gengo diff --git a/addons/base_gengo/i18n/tr.po b/addons/base_gengo/i18n/tr.po index 3745581a492..ba24627494c 100644 --- a/addons/base_gengo/i18n/tr.po +++ b/addons/base_gengo/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-06 10:44+0000\n" -"Last-Translator: Ahmet Altınışık \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-05-31 11:30+0000\n" +"Last-Translator: Ercan SORMAZ \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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +43,27 @@ msgstr "Yorumlar" msgid "Gengo Private Key" msgstr "Gengo Özel Anahtarı" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "base.gengo.translations" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -80,6 +96,11 @@ msgstr "" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Translation By Machine" +msgstr "Makine Tarafından Çeviri" + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." msgstr "" #. module: base_gengo @@ -95,13 +116,12 @@ msgstr "" #. module: base_gengo #: field:ir.translation,gengo_translation:0 msgid "Gengo Translation Service Level" -msgstr "" +msgstr "Genge Çeviri Hizmet Düzeyi" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." -msgstr "" +#: view:res.company:0 +msgid "Add your comments here for translator...." +msgstr "Çevirmen için buraya yorum ekleyin...." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -114,6 +134,8 @@ msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." msgstr "" +"Genge otomatik çeviri servisi için istediğiniz hizmet düzeyini buradan " +"seçebilirsiniz" #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 @@ -193,7 +215,7 @@ msgstr "" #. module: base_gengo #: view:res.company:0 msgid "Gengo Parameters" -msgstr "" +msgstr "Gengo Parametreleri" #. module: base_gengo #: view:base.gengo.translations:0 diff --git a/addons/base_gengo/i18n/zh_CN.po b/addons/base_gengo/i18n/zh_CN.po index 558879c5f16..e2654519801 100644 --- a/addons/base_gengo/i18n/zh_CN.po +++ b/addons/base_gengo/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_gengo #: view:res.company:0 @@ -43,11 +43,27 @@ msgstr "评论" msgid "Gengo Private Key" msgstr "Gengo 私人密匙" +#. module: base_gengo +#: constraint:ir.translation:0 +msgid "" +"The Gengo translation service selected is not supported for this language." +msgstr "所选Gengo翻译服务不支持这种语言." + +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Public Key..." +msgstr "" + #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations msgid "base.gengo.translations" msgstr "" +#. module: base_gengo +#: view:ir.translation:0 +msgid "Gengo Comments & Activity..." +msgstr "" + #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." @@ -82,6 +98,11 @@ msgstr "缺少Gengo `公共密匙` 或 `私人密匙`. 在 `设置> 公司 > Gen msgid "Translation By Machine" msgstr "机器翻译" +#. module: base_gengo +#: view:res.company:0 +msgid "Add Gengo login Private Key..." +msgstr "" + #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 #, python-format @@ -98,10 +119,9 @@ msgid "Gengo Translation Service Level" msgstr "Gengo 翻译服务级别" #. module: base_gengo -#: constraint:ir.translation:0 -msgid "" -"The Gengo translation service selected is not supported for this language." -msgstr "所选Gengo翻译服务不支持这种语言." +#: view:res.company:0 +msgid "Add your comments here for translator...." +msgstr "" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 diff --git a/addons/base_iban/i18n/ar.po b/addons/base_iban/i18n/ar.po index 8d53b8b5cfd..433cc05b20e 100644 --- a/addons/base_iban/i18n/ar.po +++ b/addons/base_iban/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/base_iban.pot b/addons/base_iban/i18n/base_iban.pot index 5976e3d1524..c79a82e2fb8 100644 --- a/addons/base_iban/i18n/base_iban.pot +++ b/addons/base_iban/i18n/base_iban.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_iban/i18n/bg.po b/addons/base_iban/i18n/bg.po index a25a23fae4f..16943145817 100644 --- a/addons/base_iban/i18n/bg.po +++ b/addons/base_iban/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/bs.po b/addons/base_iban/i18n/bs.po index 566149b8199..1bb89d10405 100644 --- a/addons/base_iban/i18n/bs.po +++ b/addons/base_iban/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ca.po b/addons/base_iban/i18n/ca.po index 848a4e91539..cebcff46b30 100644 --- a/addons/base_iban/i18n/ca.po +++ b/addons/base_iban/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/cs.po b/addons/base_iban/i18n/cs.po index 6c061a2418b..67f84c35d58 100644 --- a/addons/base_iban/i18n/cs.po +++ b/addons/base_iban/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/da.po b/addons/base_iban/i18n/da.po index c6710ea92da..14f690d95bf 100644 --- a/addons/base_iban/i18n/da.po +++ b/addons/base_iban/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/de.po b/addons/base_iban/i18n/de.po index a1bce82d3a2..6ccfd4849ed 100644 --- a/addons/base_iban/i18n/de.po +++ b/addons/base_iban/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/el.po b/addons/base_iban/i18n/el.po index 8425f96f61b..318d4d2d309 100644 --- a/addons/base_iban/i18n/el.po +++ b/addons/base_iban/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/en_GB.po b/addons/base_iban/i18n/en_GB.po index 4bae55eaab7..83c2b331e02 100644 --- a/addons/base_iban/i18n/en_GB.po +++ b/addons/base_iban/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es.po b/addons/base_iban/i18n/es.po index 3109dfe4355..2352e01c9b0 100644 --- a/addons/base_iban/i18n/es.po +++ b/addons/base_iban/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_AR.po b/addons/base_iban/i18n/es_AR.po index 938aebcd2a5..607586bd24d 100644 --- a/addons/base_iban/i18n/es_AR.po +++ b/addons/base_iban/i18n/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Argentina) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_CR.po b/addons/base_iban/i18n/es_CR.po index 40275ab7e1e..d7280c05c1a 100644 --- a/addons/base_iban/i18n/es_CR.po +++ b/addons/base_iban/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_EC.po b/addons/base_iban/i18n/es_EC.po index 0e20abc58e5..7acf3900b82 100644 --- a/addons/base_iban/i18n/es_EC.po +++ b/addons/base_iban/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_PY.po b/addons/base_iban/i18n/es_PY.po index 61593b978e0..48d005a6f27 100644 --- a/addons/base_iban/i18n/es_PY.po +++ b/addons/base_iban/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/et.po b/addons/base_iban/i18n/et.po index 3ca66e5d708..985829aee56 100644 --- a/addons/base_iban/i18n/et.po +++ b/addons/base_iban/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/eu.po b/addons/base_iban/i18n/eu.po index 14ea614e4c3..285b05ff813 100644 --- a/addons/base_iban/i18n/eu.po +++ b/addons/base_iban/i18n/eu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fa.po b/addons/base_iban/i18n/fa.po index d2a69d31a89..070706e7636 100644 --- a/addons/base_iban/i18n/fa.po +++ b/addons/base_iban/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fi.po b/addons/base_iban/i18n/fi.po index 5e1bfc6aa95..d6262bd5334 100644 --- a/addons/base_iban/i18n/fi.po +++ b/addons/base_iban/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fr.po b/addons/base_iban/i18n/fr.po index 76e0ebf02f2..a7be516ce05 100644 --- a/addons/base_iban/i18n/fr.po +++ b/addons/base_iban/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gl.po b/addons/base_iban/i18n/gl.po index ffaeab91729..a641a6fd689 100644 --- a/addons/base_iban/i18n/gl.po +++ b/addons/base_iban/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gu.po b/addons/base_iban/i18n/gu.po index b1aa35ca6fc..2ae123a80eb 100644 --- a/addons/base_iban/i18n/gu.po +++ b/addons/base_iban/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/hr.po b/addons/base_iban/i18n/hr.po index f90f78b90cf..dcb232aaec1 100644 --- a/addons/base_iban/i18n/hr.po +++ b/addons/base_iban/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -24,6 +24,9 @@ msgid "" "Please define BIC/Swift code on bank for bank type IBAN Account to make " "valid payments" msgstr "" +"\n" +"Molimo unesite BIC/SWIFT oznaku banke za IBAN tip bankovnog računa kako bi " +"vršili valjana plaćanja" #. module: base_iban #: code:addons/base_iban/base_iban.py:141 @@ -78,7 +81,7 @@ msgstr "IBAN" #: code:addons/base_iban/base_iban.py:142 #, python-format msgid "The IBAN is invalid, it should begin with the country code" -msgstr "" +msgstr "IBAN nije ispravan, trebao bi počinjati sa oznakom države" #. module: base_iban #: model:res.partner.bank.type,name:base_iban.bank_iban diff --git a/addons/base_iban/i18n/hu.po b/addons/base_iban/i18n/hu.po index db0d259cbde..42f1ddfd8bc 100644 --- a/addons/base_iban/i18n/hu.po +++ b/addons/base_iban/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -24,22 +24,25 @@ msgid "" "Please define BIC/Swift code on bank for bank type IBAN Account to make " "valid payments" msgstr "" +"\n" +"Kérem határozza meg a BIC/Swift códot az IBAN bankszámla típushoz az " +"érvényes fizetésekhez" #. module: base_iban #: code:addons/base_iban/base_iban.py:141 #, python-format msgid "This IBAN does not pass the validation check, please verify it" -msgstr "" +msgstr "Ez az IBAN nem ment át az ellenőrzése, kérjem ellenőrizni" #. module: base_iban #: model:res.partner.bank.type,format_layout:base_iban.bank_iban msgid "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s" -msgstr "" +msgstr "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_swift_field msgid "bank_bic" -msgstr "" +msgstr "bank_bic" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field @@ -67,7 +70,7 @@ msgstr "country_id" msgid "" "The IBAN does not seem to be correct. You should have entered something like " "this %s" -msgstr "" +msgstr "Az IBAN nem tűnik megfelelőnek. Valami ilyennek kellene lennie %s" #. module: base_iban #: field:res.partner.bank,iban:0 @@ -78,7 +81,7 @@ msgstr "IBAN" #: code:addons/base_iban/base_iban.py:142 #, python-format msgid "The IBAN is invalid, it should begin with the country code" -msgstr "" +msgstr "Az IBAN érvényes, az ország kóddal kell kezdődnie" #. module: base_iban #: model:res.partner.bank.type,name:base_iban.bank_iban diff --git a/addons/base_iban/i18n/id.po b/addons/base_iban/i18n/id.po index 32753ae7c67..65a52281cba 100644 --- a/addons/base_iban/i18n/id.po +++ b/addons/base_iban/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/it.po b/addons/base_iban/i18n/it.po index 842c29c078c..885f7bd5b78 100644 --- a/addons/base_iban/i18n/it.po +++ b/addons/base_iban/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ja.po b/addons/base_iban/i18n/ja.po index 5859edd35b5..5055d7cad02 100644 --- a/addons/base_iban/i18n/ja.po +++ b/addons/base_iban/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ko.po b/addons/base_iban/i18n/ko.po index e961395f413..b2cbf831554 100644 --- a/addons/base_iban/i18n/ko.po +++ b/addons/base_iban/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/lt.po b/addons/base_iban/i18n/lt.po index a86c9c47ab0..ee621e3aaf2 100644 --- a/addons/base_iban/i18n/lt.po +++ b/addons/base_iban/i18n/lt.po @@ -1,21 +1,21 @@ # Lithuanian 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. +# Giedrius Slavinskas , 2012. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-30 16:27+0000\n" +"Last-Translator: Giedrius Slavinskas - inovera.lt \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -44,7 +44,7 @@ msgstr "" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field msgid "zip" -msgstr "zip" +msgstr "pašto kodas" #. module: base_iban #: help:res.partner.bank,iban:0 @@ -54,7 +54,7 @@ msgstr "Tarptautinis banko sąskaitos numeris" #. module: base_iban #: model:ir.model,name:base_iban.model_res_partner_bank msgid "Bank Accounts" -msgstr "" +msgstr "Banko sąskaitos" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_country_field diff --git a/addons/base_iban/i18n/lv.po b/addons/base_iban/i18n/lv.po index a73d4894dd5..b28358c0e8e 100644 --- a/addons/base_iban/i18n/lv.po +++ b/addons/base_iban/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/mk.po b/addons/base_iban/i18n/mk.po new file mode 100644 index 00000000000..6b67a48cc09 --- /dev/null +++ b/addons/base_iban/i18n/mk.po @@ -0,0 +1,90 @@ +# 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. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-31 13:28+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" + +#. module: base_iban +#: constraint:res.partner.bank:0 +msgid "" +"\n" +"Please define BIC/Swift code on bank for bank type IBAN Account to make " +"valid payments" +msgstr "" +"\n" +"Ве молиме дефинирајте BIC/Swift код на банка за банкарски тип на сметка IBAN " +"за да направите валидни плаќања." + +#. module: base_iban +#: code:addons/base_iban/base_iban.py:141 +#, python-format +msgid "This IBAN does not pass the validation check, please verify it" +msgstr "IBAN-от не ја поминува проверката за валидност. Потврдете го." + +#. module: base_iban +#: model:res.partner.bank.type,format_layout:base_iban.bank_iban +msgid "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s" +msgstr "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s" + +#. module: base_iban +#: model:res.partner.bank.type.field,name:base_iban.bank_swift_field +msgid "bank_bic" +msgstr "bank_bic" + +#. module: base_iban +#: model:res.partner.bank.type.field,name:base_iban.bank_zip_field +msgid "zip" +msgstr "Поштенски број" + +#. module: base_iban +#: help:res.partner.bank,iban:0 +msgid "International Bank Account Number" +msgstr "Број на меѓународна банкарска сметка" + +#. module: base_iban +#: model:ir.model,name:base_iban.model_res_partner_bank +msgid "Bank Accounts" +msgstr "Банкарски сметки" + +#. module: base_iban +#: model:res.partner.bank.type.field,name:base_iban.bank_country_field +msgid "country_id" +msgstr "country_id" + +#. module: base_iban +#: code:addons/base_iban/base_iban.py:138 +#, python-format +msgid "" +"The IBAN does not seem to be correct. You should have entered something like " +"this %s" +msgstr "IBAN бројот не е точен. Бројот треба да изгледа вака %s" + +#. module: base_iban +#: field:res.partner.bank,iban:0 +msgid "IBAN" +msgstr "IBAN" + +#. module: base_iban +#: code:addons/base_iban/base_iban.py:142 +#, python-format +msgid "The IBAN is invalid, it should begin with the country code" +msgstr "IBAN-от е невалиден, треба да започнува со кодот на државата" + +#. module: base_iban +#: model:res.partner.bank.type,name:base_iban.bank_iban +msgid "IBAN Account" +msgstr "IBAN Сметка" diff --git a/addons/base_iban/i18n/mn.po b/addons/base_iban/i18n/mn.po index eb95b4a41c8..0c4a23a52b3 100644 --- a/addons/base_iban/i18n/mn.po +++ b/addons/base_iban/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-02-23 12:07+0000\n" +"Last-Translator: gobi \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -34,12 +34,12 @@ msgstr "" #. module: base_iban #: model:res.partner.bank.type,format_layout:base_iban.bank_iban msgid "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s" -msgstr "" +msgstr "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_swift_field msgid "bank_bic" -msgstr "" +msgstr "bank_bic" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field diff --git a/addons/base_iban/i18n/nb.po b/addons/base_iban/i18n/nb.po index d334cab46f2..451075f112b 100644 --- a/addons/base_iban/i18n/nb.po +++ b/addons/base_iban/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl.po b/addons/base_iban/i18n/nl.po index 9f6e7abb461..1c31eb1e6fe 100644 --- a/addons/base_iban/i18n/nl.po +++ b/addons/base_iban/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl_BE.po b/addons/base_iban/i18n/nl_BE.po index f5bc6353665..ac6a6995d3c 100644 --- a/addons/base_iban/i18n/nl_BE.po +++ b/addons/base_iban/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/oc.po b/addons/base_iban/i18n/oc.po index 4f36c68086d..1f4e9ed1a88 100644 --- a/addons/base_iban/i18n/oc.po +++ b/addons/base_iban/i18n/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pl.po b/addons/base_iban/i18n/pl.po index 2465a09d270..abaf2f8a951 100644 --- a/addons/base_iban/i18n/pl.po +++ b/addons/base_iban/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt.po b/addons/base_iban/i18n/pt.po index 07c8b1c3d85..29fe61ffb50 100644 --- a/addons/base_iban/i18n/pt.po +++ b/addons/base_iban/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt_BR.po b/addons/base_iban/i18n/pt_BR.po index da2d192014a..00b0805c57a 100644 --- a/addons/base_iban/i18n/pt_BR.po +++ b/addons/base_iban/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ro.po b/addons/base_iban/i18n/ro.po index d7e6ea1fe9a..a4cee04ac92 100644 --- a/addons/base_iban/i18n/ro.po +++ b/addons/base_iban/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-02-27 17:57+0000\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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -25,8 +25,8 @@ msgid "" "valid payments" msgstr "" "\n" -"Va rugam sa definiti un cod BIC/Swift la banca pentru ca Contul bancar de " -"tip IBAN sa faca plati valabile" +"Va rugam sa definiti un cod BIC/Swift la banca pentru Contul bancar de tip " +"IBAN pentru a face plati valabile" #. module: base_iban #: code:addons/base_iban/base_iban.py:141 diff --git a/addons/base_iban/i18n/ru.po b/addons/base_iban/i18n/ru.po index 25b8408bb2e..80b73ab4c3d 100644 --- a/addons/base_iban/i18n/ru.po +++ b/addons/base_iban/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-26 09:21+0000\n" "Last-Translator: Ivan Tetyuev \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sk.po b/addons/base_iban/i18n/sk.po index b469421a6bd..90858441e89 100644 --- a/addons/base_iban/i18n/sk.po +++ b/addons/base_iban/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sl.po b/addons/base_iban/i18n/sl.po index 2accecdfa56..73429db0ea7 100644 --- a/addons/base_iban/i18n/sl.po +++ b/addons/base_iban/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-29 12:09+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sq.po b/addons/base_iban/i18n/sq.po index a9c3883fdb7..0a935ce26dc 100644 --- a/addons/base_iban/i18n/sq.po +++ b/addons/base_iban/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:15+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr.po b/addons/base_iban/i18n/sr.po index 07feefc5614..b3e2c84524b 100644 --- a/addons/base_iban/i18n/sr.po +++ b/addons/base_iban/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr@latin.po b/addons/base_iban/i18n/sr@latin.po index ebf89a8ff1b..9217f1183ca 100644 --- a/addons/base_iban/i18n/sr@latin.po +++ b/addons/base_iban/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sv.po b/addons/base_iban/i18n/sv.po index 54de0da7a42..bd4547e0cd6 100644 --- a/addons/base_iban/i18n/sv.po +++ b/addons/base_iban/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ta.po b/addons/base_iban/i18n/ta.po index bf9afde60e3..864827be13d 100644 --- a/addons/base_iban/i18n/ta.po +++ b/addons/base_iban/i18n/ta.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tlh.po b/addons/base_iban/i18n/tlh.po index 8ea8ecc1ff3..e52fbe465e3 100644 --- a/addons/base_iban/i18n/tlh.po +++ b/addons/base_iban/i18n/tlh.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Klingon \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tr.po b/addons/base_iban/i18n/tr.po index eb6ad77bfbc..358a9ac9b99 100644 --- a/addons/base_iban/i18n/tr.po +++ b/addons/base_iban/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-08 07:05+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-09 05:28+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/uk.po b/addons/base_iban/i18n/uk.po index da80424e754..efb2a980d9b 100644 --- a/addons/base_iban/i18n/uk.po +++ b/addons/base_iban/i18n/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/vi.po b/addons/base_iban/i18n/vi.po index c2275a57bbf..277f71e5d79 100644 --- a/addons/base_iban/i18n/vi.po +++ b/addons/base_iban/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_CN.po b/addons/base_iban/i18n/zh_CN.po index bbd90ec7cb3..b003702d98b 100644 --- a/addons/base_iban/i18n/zh_CN.po +++ b/addons/base_iban/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_TW.po b/addons/base_iban/i18n/zh_TW.po index 8937dc4fb38..f90664b23e0 100644 --- a/addons/base_iban/i18n/zh_TW.po +++ b/addons/base_iban/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_import/i18n/ar.po b/addons/base_import/i18n/ar.po index 0cb64d3e3e1..f0870e6881f 100644 --- a/addons/base_import/i18n/ar.po +++ b/addons/base_import/i18n/ar.po @@ -7,19 +7,19 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-27 22:03+0000\n" "Last-Translator: gehad shaat \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "الحصول على كل القيم المحتملة" @@ -59,7 +59,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "" @@ -264,15 +264,6 @@ msgstr "" msgid "Some Value" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -339,10 +330,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "الموردين وجهات الاتصال الخاصة بهم" +msgid "Semicolon" +msgstr "" #. module: base_import #. openerp-web @@ -387,6 +378,13 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -569,8 +567,10 @@ msgid "Reload data to check changes." msgstr "" #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" msgstr "" #. module: base_import @@ -665,7 +665,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "" @@ -679,7 +679,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -765,7 +765,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -824,7 +824,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "" @@ -843,7 +843,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "" @@ -864,6 +864,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -943,6 +952,13 @@ msgstr "" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -986,6 +1002,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -995,7 +1016,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1037,6 +1058,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1133,7 +1162,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" @@ -1162,3 +1191,7 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "الموردين وجهات الاتصال الخاصة بهم" diff --git a/addons/base_import/i18n/base_import.pot b/addons/base_import/i18n/base_import.pot index 027911b59ff..934b1217b37 100644 --- a/addons/base_import/i18n/base_import.pot +++ b/addons/base_import/i18n/base_import.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -17,7 +17,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "" @@ -51,7 +51,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "" @@ -239,14 +239,6 @@ msgstr "" msgid "Some Value" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -303,9 +295,9 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" +msgid "Semicolon" msgstr "" #. module: base_import @@ -343,6 +335,13 @@ msgid "Microsoft Excel will allow \n" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -515,8 +514,10 @@ msgid "Reload data to check changes." msgstr "" #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" msgstr "" #. module: base_import @@ -606,7 +607,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "" @@ -620,7 +621,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "A single column was found in the file, this often means the file separator is incorrect" msgstr "" @@ -700,7 +701,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -751,7 +752,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "" @@ -768,7 +769,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "" @@ -788,6 +789,14 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -858,6 +867,13 @@ msgstr "" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -891,6 +907,11 @@ msgid "If you import a file that contains one of the \n" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -900,7 +921,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -935,6 +956,14 @@ msgid "If you want to import sales order having several \n" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1027,7 +1056,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" diff --git a/addons/base_import/i18n/cs.po b/addons/base_import/i18n/cs.po new file mode 100644 index 00000000000..89f4f1d869e --- /dev/null +++ b/addons/base_import/i18n/cs.po @@ -0,0 +1,1193 @@ +# 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-31 16:46+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-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:451 +#, python-format +msgid "Get all possible values" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:71 +#, python-format +msgid "Need to import data from an other application?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:331 +#, python-format +msgid "Relation Fields" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:316 +#, python-format +msgid "person_1,Fabien,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:141 +#, python-format +msgid "Country: the name or code of the country" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:239 +#, python-format +msgid "Can I import several times the same record?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:175 +#, python-format +msgid "What can I do if I have multiple matches for a field?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:302 +#, python-format +msgid "External ID,Name,Is a Company" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:174 +#, python-format +msgid "Semicolon" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "" + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:438 +#, python-format +msgid "Here are the possible values:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:248 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:427 +#, python-format +msgid "(%d more)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:404 +#, python-format +msgid "Everything seems valid." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:421 +#, python-format +msgid "at row %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:330 +#, python-format +msgid "Normal Fields" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:423 +#, python-format +msgid "between rows %d and %d" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "" diff --git a/addons/base_import/i18n/de.po b/addons/base_import/i18n/de.po index 22799c6c135..5a5601f34e7 100644 --- a/addons/base_import/i18n/de.po +++ b/addons/base_import/i18n/de.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-06 00:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-21 19:09+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Alle möglichen Werte holen" @@ -69,7 +69,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Beziehungsfelder" @@ -307,18 +307,6 @@ msgstr "" msgid "Some Value" msgstr "Irgendein Wert" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" -"Die folgende .csv Datei soll exemplarisch zeigen, wie Sie Lieferanten und " -"deren Ansprechpartner\n" -"importieren können." - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -404,10 +392,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "Lieferanten und seine korrespondierenden Ansprechpartner" +msgid "Semicolon" +msgstr "Semikolon" #. module: base_import #. openerp-web @@ -470,6 +458,13 @@ msgstr "" "abgespeichert haben. \n" "(unter 'Speichern Unter' > Extra > Werkzeuge > Daten bearbeiten Aktenreiter)." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "Tabulator" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -678,8 +673,10 @@ msgid "Reload data to check changes." msgstr "Erneut Ansicht laden, um Änderungen anzuwenden und zu prüfen." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" msgstr "" #. module: base_import @@ -793,7 +790,7 @@ msgstr "Import" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "Hier sind die möglichen Werte:" @@ -807,7 +804,7 @@ msgstr "Der" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -908,7 +905,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -981,7 +978,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "Alles scheint o.k. zu sein." @@ -1005,7 +1002,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "in Zeile %d" @@ -1029,6 +1026,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -1128,6 +1134,13 @@ msgstr "Häufig gestellte Fragen" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -1194,6 +1207,11 @@ msgstr "" "erstellt oder \n" " geändert werden sollen." +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1203,7 +1221,7 @@ msgstr ".csv Dateien für Kategorien" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "Normale Felder" @@ -1261,6 +1279,14 @@ msgstr "" " Daten in den Feldern haben " "dürfen, die sich auf den Auftrag selbst beziehen." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1374,7 +1400,7 @@ msgstr "Datei Format Optionen" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "zwischen Zeilen %d und %d" @@ -1408,3 +1434,16 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "Datei" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "Die folgende .csv Datei soll exemplarisch zeigen, wie Sie Lieferanten und " +#~ "deren Ansprechpartner\n" +#~ "importieren können." + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Lieferanten und seine korrespondierenden Ansprechpartner" diff --git a/addons/base_import/i18n/es.po b/addons/base_import/i18n/es.po index d0d0d7c0c8e..8a8aecd83f9 100644 --- a/addons/base_import/i18n/es.po +++ b/addons/base_import/i18n/es.po @@ -7,19 +7,19 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Obtener todos los valores posibles" @@ -65,7 +65,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Campos relación" @@ -289,17 +289,6 @@ msgstr "Id. externo, nombre, es una compañía" msgid "Some Value" msgstr "Algún valor" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" -"El siguiente archivo CSV muestra cómo importar proveedores y sus respectivos " -"contactos" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -380,10 +369,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "Proveedores y sus respectivos contactos" +msgid "Semicolon" +msgstr "" #. module: base_import #. openerp-web @@ -440,6 +429,13 @@ msgstr "" "archivo CSV (en el cuadro de diálogo 'Guardar como' > pulsar la lista " "desplegable 'Herramientas' > pestaña 'Codificación')." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -637,9 +633,11 @@ msgid "Reload data to check changes." msgstr "Recargar datos para comprobar cambios." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" -msgstr "Cadena de sólo lectura de los modelos de test de importación" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" #. module: base_import #. openerp-web @@ -746,7 +744,7 @@ msgstr "Importar" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "Éstos son los posibles valores:" @@ -760,7 +758,7 @@ msgstr "El" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -856,7 +854,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "(%d más)" @@ -925,7 +923,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "Todo parece correcto." @@ -947,7 +945,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "en la fila %d" @@ -970,6 +968,15 @@ msgstr "" msgid "XXX/ID" msgstr "XXX/ID" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -1060,6 +1067,13 @@ msgstr "Preguntas más frecuentes" msgid "company_3,Boum,True" msgstr "company_3,Boum,True" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -1114,6 +1128,11 @@ msgstr "" "OpenERP tendrá cuidado de crear o modificar cada registro dependiendo de si " "es nuevo o no." +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "Cadena de sólo lectura de los modelos de test de importación" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1123,7 +1142,7 @@ msgstr "Archivo CSV para las categorías" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "Campos normales" @@ -1172,6 +1191,14 @@ msgstr "" "la información relativa al pedido. Cualquier línea adicional necesitará una " "fila adicional que no tenga información en los campos relativos al pedido." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1277,7 +1304,7 @@ msgstr "Opciones de formato de archivo..." #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "entre las filas %d y %d" @@ -1309,3 +1336,15 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "Archivo" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "El siguiente archivo CSV muestra cómo importar proveedores y sus respectivos " +#~ "contactos" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Proveedores y sus respectivos contactos" diff --git a/addons/base_import/i18n/et.po b/addons/base_import/i18n/et.po index 0c39f8400e8..61f35fc813f 100644 --- a/addons/base_import/i18n/et.po +++ b/addons/base_import/i18n/et.po @@ -7,19 +7,19 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-24 20:55+0000\n" "Last-Translator: Ahti Hinnov \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "" @@ -59,7 +59,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "" @@ -264,15 +264,6 @@ msgstr "" msgid "Some Value" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -339,9 +330,9 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" +msgid "Semicolon" msgstr "" #. module: base_import @@ -387,6 +378,13 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -571,8 +569,10 @@ msgid "Reload data to check changes." msgstr "Lae andmed uuesti, et tuvastada muutused." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" msgstr "" #. module: base_import @@ -667,7 +667,7 @@ msgstr "Impordi" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -767,7 +767,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -826,7 +826,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "" @@ -845,7 +845,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "" @@ -866,6 +866,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -945,6 +954,13 @@ msgstr "" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -988,6 +1004,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -997,7 +1018,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1039,6 +1060,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1135,7 +1164,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" diff --git a/addons/base_import/i18n/fr.po b/addons/base_import/i18n/fr.po index b23098ba885..b5e9bca3991 100644 --- a/addons/base_import/i18n/fr.po +++ b/addons/base_import/i18n/fr.po @@ -7,19 +7,19 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-09 08:21+0000\n" -"Last-Translator: Numérigraphe \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-21 01:51+0000\n" +"Last-Translator: CADET JEAN MICHEl \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Obtenir toutes les valeurs possibles" @@ -47,6 +47,17 @@ msgid "" "give \n" " you an example for Products and their Categories." msgstr "" +"Lorsque vous utilisez des ID externes, vous pouvez importer des fichiers " +"CSV\n" +"                         avec la colonne ID externe pour définir l'ID " +"externe\n" +"                         de chaque enregistrement que vous importez. " +"Ensuite, vous pourrez\n" +"                         faire référence à cet enregistrement avec des " +"colonnes comme\n" +"                         \"Champ / ID externe\". Les deux fichiers CVS " +"suivants vous donne\n" +"                         un exemple des produits et leurs catégories." #. module: base_import #. openerp-web @@ -61,7 +72,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Champs relationnels" @@ -302,15 +313,6 @@ msgstr "Id. externe, Nom, Est une société" msgid "Some Value" msgstr "Une valeur" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -377,10 +379,10 @@ msgstr "Id. externe, Nom, Est une société, Société liée/Id. externe" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "Fournisseurs et leurs contacts respectifs" +msgid "Semicolon" +msgstr "" #. module: base_import #. openerp-web @@ -429,6 +431,13 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -616,9 +625,11 @@ msgid "Reload data to check changes." msgstr "" #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" -msgstr "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" #. module: base_import #. openerp-web @@ -712,7 +723,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "" @@ -726,7 +737,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -812,7 +823,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -871,7 +882,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "" @@ -890,7 +901,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "" @@ -911,6 +922,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -990,6 +1010,13 @@ msgstr "" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -1033,6 +1060,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1042,7 +1074,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1084,6 +1116,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1180,7 +1220,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" @@ -1209,3 +1249,7 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Fournisseurs et leurs contacts respectifs" diff --git a/addons/base_import/i18n/hr.po b/addons/base_import/i18n/hr.po index c4d23e2020b..fdafca08929 100644 --- a/addons/base_import/i18n/hr.po +++ b/addons/base_import/i18n/hr.po @@ -7,19 +7,19 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-13 22:57+0000\n" "Last-Translator: Davor Bojkić \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-02-14 05:36+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Dohvati sve moguće vrijednosti" @@ -71,7 +71,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Relacijska polja" @@ -323,18 +323,6 @@ msgstr "Vanjski ID , Naziv, Je Tvrtka" msgid "Some Value" msgstr "Neka vrijednost" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" -"Sljedeća csv datoteka pokazuje kako uvesti \n" -" " -" dobavljače i njihove pripadne kontakte" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -426,10 +414,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "Dobavljači i njihovi pripadni kontakti" +msgid "Semicolon" +msgstr "" #. module: base_import #. openerp-web @@ -503,6 +491,13 @@ msgstr "" " odaberite 'Encoding' " "karticu)" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -723,8 +718,10 @@ msgid "Reload data to check changes." msgstr "Ponovno učitaj podatke." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" msgstr "" #. module: base_import @@ -841,7 +838,7 @@ msgstr "Uvoz" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "Evo mogućih vrijednosti:" @@ -855,7 +852,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -958,7 +955,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "(%d više)" @@ -1036,7 +1033,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "Sve se čini u redu." @@ -1062,7 +1059,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "u retku %d" @@ -1086,6 +1083,15 @@ msgstr "" msgid "XXX/ID" msgstr "XXX/ID" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -1193,6 +1199,13 @@ msgstr "Često postavljana pitanja" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -1258,6 +1271,11 @@ msgstr "" " " "svakog zapisa ovisno o tome da li je novi ili postojeći." +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1267,7 +1285,7 @@ msgstr "CSV datoteka za kategorije" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "Normalna polja" @@ -1327,6 +1345,14 @@ msgstr "" " " " vezanim za taj nalog." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1443,7 +1469,7 @@ msgstr "Opcije Formata datoteka..." #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "između reda %d i %d" @@ -1472,3 +1498,16 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "Datoteka" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "Sljedeća csv datoteka pokazuje kako uvesti \n" +#~ " " +#~ " dobavljače i njihove pripadne kontakte" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Dobavljači i njihovi pripadni kontakti" diff --git a/addons/base_import/i18n/hu.po b/addons/base_import/i18n/hu.po index edef5090c77..03790d3bd57 100644 --- a/addons/base_import/i18n/hu.po +++ b/addons/base_import/i18n/hu.po @@ -7,29 +7,29 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-26 10:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-11 23:11+0000\n" +"Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" -msgstr "" +msgstr "Kapja meg az összes lehetséges értéket" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:71 #, python-format msgid "Need to import data from an other application?" -msgstr "" +msgstr "Szükséges adatokat importálni egy másik alkalmazásból?" #. module: base_import #. openerp-web @@ -47,6 +47,14 @@ msgid "" "give \n" " you an example for Products and their Categories." msgstr "" +"Amikor külső azonositókat használ, importálhat CSV file-okat \n" +" az \"External ID\" oszlopban meghatározhatja a külső " +"\n" +" azonositóját (ID) mindegyik importálandó tételnek. \n" +" Utána létrehozhat egy hivatkozást arra a tételre\n" +" (sorra) \"Mező/Külső ID\" -hoz hasonló oszlopokkal.\n" +" A következő két CSV file a Termékek és a megfelelő\n" +" Termékkategóriákra ad példát." #. module: base_import #. openerp-web @@ -56,13 +64,15 @@ msgid "" "How to export/import different tables from an SQL \n" " application to OpenERP?" msgstr "" +"Hogyan exportáljon/importáljon külömböző táblákat egy SQL\n" +" alkalmazásból OpenERP-be?" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" -msgstr "" +msgstr "Relációs mezők" #. module: base_import #. openerp-web @@ -72,6 +82,9 @@ msgid "" "Country/Database ID: the unique OpenERP ID for a \n" " record, defined by the ID postgresql column" msgstr "" +"Ország/Adatbázis ID: egy rekord egyedi OpenERP ID -ja, \n" +" a postgresql ID oszlop " +"alapján" #. module: base_import #. openerp-web @@ -87,6 +100,14 @@ msgid "" "\n" " have a unique Database ID)" msgstr "" +"Használat \n" +" Ország/Adatbázis azonosító ID: Ne sokszor használja " +"ezt a \n" +" jelölést. Fejlesztők használják elsősorban mivel a " +"fő \n" +" előnye, hogy nincsenek összeütközések (több rekord\n" +" lehet ugyanazzal anévvel, de mindíg egyedi \n" +" azonosító ID rendelkeznek)" #. module: base_import #. openerp-web @@ -96,18 +117,20 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Belgiumnak, \n" +" 3 módot használhat az importáláshoz:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:303 #, python-format msgid "company_1,Bigees,True" -msgstr "" +msgstr "vállalat_1,Bigees,Igaz" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o msgid "base_import.tests.models.m2o" -msgstr "" +msgstr "base_import.tests.models.m2o" #. module: base_import #. openerp-web @@ -121,13 +144,19 @@ msgid "" "companies) TO \n" " '/tmp/company.csv' with CSV HEADER;" msgstr "" +"másolás\n" +" (válasszon 'vállalat_'||id mint \"KÜLSŐ " +"ID\",vállalat_név \n" +" mint \"NÉV\",'Igaz' mint \"Ez egy vállalat\" a " +"vállalatoktól) EHHEZ\n" +" '/tmp/company.csv' ezzel a CSV FEJLÉCCEL;" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:206 #, python-format msgid "CSV file for Manufacturer, Retailer" -msgstr "" +msgstr "CSV fájl a Gyártónak, Viszonteladónak" #. module: base_import #. openerp-web @@ -139,34 +168,38 @@ msgid "" "\n" " data from a third party application." msgstr "" +"Használja\n" +" Ország/Külső ID: Használjon külső azonosítót ID ha " +"adatot\n" +" importál a harmadik fáltől származó alkalmazásból." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:316 #, python-format msgid "person_1,Fabien,False,company_1" -msgstr "" +msgstr "person_1,Fabien,False,company_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/External ID" -msgstr "" +msgstr "XXX/Külső azonosító ID" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:351 #, python-format msgid "Don't Import" -msgstr "" +msgstr "Ne importálja" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Válassza ezt" #. module: base_import #. openerp-web @@ -181,39 +214,46 @@ msgid "" "\n" " See the following question." msgstr "" +"Jegyezze meg, ha a CSV fájlban \n" +" a tabulátor mint elválasztó szerepel, OpenERP nem " +"fogja \n" +" érzékelni az elválasztókat. Meg kell változtatnia a " +"fájl \n" +" formátum lehetőséget a táblázat kezelőjében. \n" +" Lásd a következő kérdést." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:141 #, python-format msgid "Country: the name or code of the country" -msgstr "" +msgstr "Ország: az ország neve vagy kódja" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child msgid "base_import.tests.models.o2m.child" -msgstr "" +msgstr "base_import.tests.models.o2m.child" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:239 #, python-format msgid "Can I import several times the same record?" -msgstr "" +msgstr "Be dudom tölteni többször ugyanazt a rekordot?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:15 #, python-format msgid "Validate" -msgstr "" +msgstr "Jóváhagyás" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:55 #, python-format msgid "Map your data to OpenERP" -msgstr "" +msgstr "Képezze le az adatait az OpenERP-be" #. module: base_import #. openerp-web @@ -224,6 +264,9 @@ msgid "" " the easiest way when your data come from CSV files \n" " that have been created manually." msgstr "" +"Országot használj: Ez a \n" +" legkönnyebb útja, ha adat egy CSV fájlból érkezik \n" +" amit kézzel készített." #. module: base_import #. openerp-web @@ -233,6 +276,8 @@ msgid "" "What's the difference between Database ID and \n" " External ID?" msgstr "" +"Mi a különbség az adatbázis ID azonosító és a\n" +" Külső ID azonosító közt?" #. module: base_import #. openerp-web @@ -244,34 +289,29 @@ msgid "" "\n" " you 3 different fields to import:" msgstr "" +"Példásul, \n" +" egy kapcsolat országának hivatkozásához, OpenERP " +"három \n" +" különböző mező importálását ajánlja fel:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:175 #, python-format msgid "What can I do if I have multiple matches for a field?" -msgstr "" +msgstr "Mit tegyek, ha több egyezőség van egy mezőre?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:302 #, python-format msgid "External ID,Name,Is a Company" -msgstr "" +msgstr "Klső ID,Név,Ez egy vállalat" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 msgid "Some Value" -msgstr "" - -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" +msgstr "Néhány érték" #. module: base_import #. openerp-web @@ -281,6 +321,8 @@ msgid "" "How can I change the CSV file format options when \n" " saving in my spreadsheet application?" msgstr "" +"Hogyan tudom megváltoztatni a CSV fájl formátum lehetőségeket ha \n" +" el akarom menteni a táblázatkezelő alkalmazásomban?" #. module: base_import #. openerp-web @@ -301,6 +343,20 @@ msgid "" "orignial \n" " database)." msgstr "" +"Mint ebben a fájlban látható, Fabien és Laurence \n" +" a Bigees vállalatnál (vállalat_1) dolgoznak és \n" +" Eric az Organi vállalatnnál dolgozik. A személyek \n" +" és vállalatok közti kapcsolat a vállalatok Külső ID " +"\n" +" azonosítóin keresztül történik. Nekünk előtaggal " +"kell \n" +" ellátni a \"Kükső ID\" a táblázat névvel a személy " +"és a vállalat\n" +" azonosító ID összetévesztésének erkerülése végetten " +"(személy_1 \n" +" és vállalat_1 amelyik ugyanazt az ID 1 azonosítót " +"kapja az eredeti \n" +" adatbázisban)." #. module: base_import #. openerp-web @@ -315,18 +371,26 @@ msgid "" "\n" " '/tmp/person.csv' with CSV" msgstr "" +"másol(kiválaszt \n" +" 'személy_'||id azonosító mint \"Külső " +"ID\",személy_neve mint \n" +" \"Név\",'Hamis' mint \"Ez egy vállalat\", " +"'vállalat_'||vállalat_id\n" +" mint \"Kapcsolódó vállalat/Külső ID\" a " +"személyektől) IDE \n" +" '/tmp/person.csv' CSV-el" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:148 #, python-format msgid "Country: Belgium" -msgstr "" +msgstr "Ország: Belgium" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly msgid "base_import.tests.models.char.stillreadonly" -msgstr "" +msgstr "base_import.tests.models.char.stillreadonly" #. module: base_import #. openerp-web @@ -336,13 +400,15 @@ msgid "" "External ID,Name,Is a \n" " Company,Related Company/External ID" msgstr "" +"Küső ID,Név,Ez egy \n" +" vállalat,Kapcsolódó vállalat/Külső ID" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "" +msgid "Semicolon" +msgstr "Pontosvessző" #. module: base_import #. openerp-web @@ -364,6 +430,20 @@ msgid "" "category \n" " hierarchy." msgstr "" +"Például, ha két termék kategóriával rendelkezik \n" +" ezzel az al-névvel \"Értékesíthető\" (pl. \"Egyéb \n" +" Termékek/Értékesíthetők\" & \"Más " +"Termékek/Értékesíthetők\"),\n" +" akkor a jóváhagyás meg lesz állítva, de az adatait " +"még tudja \n" +" importálni. Azonban, nem ajánlott az adat betöltése " +"\n" +" mivel az összes adat az első találhat " +"'Értékesíthető' kategóriához \n" +" lesz hozzárendelve a Termék kategória listában \n" +" (\"Egyéb Termékeke/Értékesíthető\"). Ajánljuk, hogy " +"módosítsa \n" +" a termék kategória rangsor egyik ismétlődő értékét ." #. module: base_import #. openerp-web @@ -375,6 +455,9 @@ msgid "" "\n" " PSQL:" msgstr "" +"Személyekhez CVS fájl létrehozása, vállalatokhoz\n" +" kapcsolva, a következő SQL parancsot használva a \n" +" PSQL-ben:" #. module: base_import #. openerp-web @@ -386,11 +469,23 @@ msgid "" " (in 'Save As' dialog box > click 'Tools' dropdown \n" " list > Encoding tab)." msgstr "" +"Microsoft Excel lehetővé teszi\n" +" csak a kódolás módosítását az elmentés alatt \n" +" (a 'Mentés másként' párbeszéd ablakban > kattints a " +"'Kellékek' legördülő \n" +" listán > a Kódolás fülre)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "Tabulátor" #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" -msgstr "" +msgstr "Másik változó" #. module: base_import #. openerp-web @@ -402,6 +497,11 @@ msgid "" " later, it's thus good practice to specify it\n" " whenever possible" msgstr "" +"az eredeti importálás frissítéséhez is \n" +" használja, ha később is fel akarja használni az újra-" +"importált módosított\n" +" adatot, amikor csak lehet ez egy jó gyakorlás a \n" +" meghatározáshoz" #. module: base_import #. openerp-web @@ -411,6 +511,9 @@ msgid "" "file to import. If you need a sample importable file, you\n" " can use the export tool to generate one." msgstr "" +"fájl importáláshoz, betöltéshez. Ha szüksége van egy importálható példa " +"fájlra, akkor\n" +" használhatja az export eszközt egy új generálásához." #. module: base_import #. openerp-web @@ -420,16 +523,19 @@ msgid "" "Country/Database \n" " ID: 21" msgstr "" +"Ország/Adatbázis \n" +" ID: 21" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char msgid "base_import.tests.models.char" -msgstr "" +msgstr "base_import.tests.models.char" #. module: base_import #: help:base_import.import,file:0 msgid "File to check and/or import, raw binary (not base64)" msgstr "" +"Az importálandó és/vagy ellenőrizni kívánt fájl, nyers bináris (nem base64)" #. module: base_import #. openerp-web @@ -437,6 +543,7 @@ msgstr "" #, python-format msgid "Purchase orders with their respective purchase order lines" msgstr "" +"Beszerzési megrendelések a hozzájuk tartozó beszerzési megrendelés sorokkal" #. module: base_import #. openerp-web @@ -448,13 +555,18 @@ msgid "" " field corresponding to the column. This makes imports\n" " simpler especially when the file has many columns." msgstr "" +"Ha a fájl tartalmazza\n" +" az oszlop neveket, OpenERP megpróbálhatja automatikusan " +"észlelni\n" +" oszlophoz tartozó mezőt. Ez az importálásokat egyszerűbbé\n" +" teszi, főként, ha a fájl tele van oszlopokkal." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:26 #, python-format msgid ".CSV" -msgstr "" +msgstr ".CSV" #. module: base_import #. openerp-web @@ -464,16 +576,18 @@ msgid "" ". The issue is\n" " usually an incorrect file encoding." msgstr "" +". A probléma\n" +" általában a téves fájl kódolás." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required msgid "base_import.tests.models.m2o.required" -msgstr "" +msgstr "base_import.tests.models.m2o.required" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" -msgstr "" +msgstr "base_import.tests.models.char.noreadonly" #. module: base_import #. openerp-web @@ -490,65 +604,75 @@ msgid "" "filter \n" " settings' > Save)." msgstr "" +"Ha szerkeszti és menti a CSV fájlt a táblázat kezelő \n" +" alkalmazásokban, a számítógépének területi " +"beállítása lesz \n" +" az elválasztáshoz és a határolójelekhez használva. \n" +" Ajánljuk az OpenOffice vagy LibreOffice Calc \n" +" használatát, mivel ezek lehetővé teszik mindhárom " +"lehetőség\n" +" módosítását (a 'Mentés másként' beszédpanelen > a\n" +" 'Szerkesztési szűrő beállítás' négyzetnek\n" +" a bejelölésével > Mentés)." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:30 #, python-format msgid "CSV File:" -msgstr "" +msgstr "CSV Fájl:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_preview msgid "base_import.tests.models.preview" -msgstr "" +msgstr "base_import.tests.models.preview" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_required msgid "base_import.tests.models.char.required" -msgstr "" +msgstr "base_import.tests.models.char.required" #. module: base_import #: code:addons/base_import/models.py:112 #, python-format msgid "Database ID" -msgstr "" +msgstr "Adatbázis ID azonosító" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:313 #, python-format msgid "It will produce the following CSV file:" -msgstr "" +msgstr "Ez a következő CSV fájlt fogja létrehozni:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:362 #, python-format msgid "Here is the start of the file we could not import:" -msgstr "" +msgstr "Itt van a fájlnak az eleje, melyiket nem tudtuk importálni:" #. module: base_import #: field:base_import.import,file_type:0 msgid "File Type" -msgstr "" +msgstr "Fájl típus" #. module: base_import #: model:ir.model,name:base_import.model_base_import_import msgid "base_import.import" -msgstr "" +msgstr "base_import.import" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m msgid "base_import.tests.models.o2m" -msgstr "" +msgstr "base_import.tests.models.o2m" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:360 #, python-format msgid "Import preview failed due to:" -msgstr "" +msgstr "Import előnézet ezért nem sikerült:" #. module: base_import #. openerp-web @@ -560,17 +684,23 @@ msgid "" "\n" " that imported it)" msgstr "" +"Ország/Külső ID azonosító: ennek a rekordnak az ID azonosítója\n" +" másik alkalmazásban egy hivatkozás (vagy az .XML " +"fájl \n" +" ami importálta azt)" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:35 #, python-format msgid "Reload data to check changes." -msgstr "" +msgstr "Adatok újratöltése a változások ellenőrzéséhez." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" msgstr "" #. module: base_import @@ -588,6 +718,18 @@ msgid "" "\n" " per field you want to import." msgstr "" +"Egyes mezők hivatkozásokat határoznak meg más \n" +" objektummal. Például, egy kapcsolat országa \n" +" csatolva van egy 'Ország' tárgyú rekorddal. Ha ilyen " +"\n" +" mezőket szeretne importálni, OpenERP újra létre " +"kell\n" +" hozza a kapcsolatokat a különböző rekordokhoz. \n" +" Ilyen mezők importálásának segítésére, OpenERP három " +"\n" +" módot biztosít. Kizárólag egy módszert használhat az " +"\n" +" importálni kívánt mezőnként." #. module: base_import #. openerp-web @@ -601,19 +743,26 @@ msgid "" " then you will encode it as follow \"Manufacturer,\n" " Retailer\" in the same column of your CSV file." msgstr "" +"A címkéket vesszővel kell elválasztani egyéb szóköz használata \n" +" nélkül. Például, ha a vevőjét két címkéhez szeretné " +"\n" +" társítani, mint 'Gyártó' és 'Kiskereskedő' \n" +" akkor azt a következő képpen kell bevinnie " +"\"Gyártó,\n" +" Kiskereskedő\" a CVS fájl ugyanazon oszlopába." #. module: base_import #: code:addons/base_import/models.py:264 #, python-format msgid "You must configure at least one field to import" -msgstr "" +msgstr "Legalább egy mezőt be kell állítania az importáláshoz" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:304 #, python-format msgid "company_2,Organi,True" -msgstr "" +msgstr "vállalat_2,Organi,Igaz" #. module: base_import #. openerp-web @@ -623,37 +772,39 @@ msgid "" "The first row of the\n" " file contains the label of the column" msgstr "" +"A fájl első oszlopa\n" +" tartalmazza az oszlop elnevezését" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states msgid "base_import.tests.models.char.states" -msgstr "" +msgstr "base_import.tests.models.char.states" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:7 #, python-format msgid "Import a CSV File" -msgstr "" +msgstr "Egy CVS fájl importálása" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:74 #, python-format msgid "Quoting:" -msgstr "" +msgstr "Hivatkozni:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related msgid "base_import.tests.models.m2o.required.related" -msgstr "" +msgstr "base_import.tests.models.m2o.required.related" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid ")." -msgstr "" +msgstr "nkat)." #. module: base_import #. openerp-web @@ -661,44 +812,46 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:396 #, python-format msgid "Import" -msgstr "" +msgstr "Importálás" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" -msgstr "" +msgstr "Ezek a lehetséges értékek:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "The" -msgstr "" +msgstr "A" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " "is incorrect" msgstr "" +"Egy oszlop található a fájlban, Ez sokszor azt jelenti, hogy a fájl " +"elválasztó hibás" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid "dump of such a PostgreSQL database" -msgstr "" +msgstr "ilyen jellegű PostgreSQL adatbázis eldobása" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:301 #, python-format msgid "This SQL command will create the following CSV file:" -msgstr "" +msgstr "Ez az SQL parancs ezt a CSV fájlt fogja létre hozni:" #. module: base_import #. openerp-web @@ -708,6 +861,9 @@ msgid "" "The following CSV file shows how to import purchase \n" " orders with their respective purchase order lines:" msgstr "" +"A következő CSV fájl megmutatja hogyan importálja a beszerzési \n" +" megrendeléseket a hozzá tartozó beszerzési " +"megrendelés sorokkal:" #. module: base_import #. openerp-web @@ -717,6 +873,8 @@ msgid "" "What can I do when the Import preview table isn't \n" " displayed correctly?" msgstr "" +"Mit tehetek, ha a kijelzőn lévő import tábla\n" +" előnézete hibás?" #. module: base_import #: field:base_import.tests.models.char,value:0 @@ -733,21 +891,21 @@ msgstr "" #: field:base_import.tests.models.o2m.child,parent_id:0 #: field:base_import.tests.models.o2m.child,value:0 msgid "unknown" -msgstr "" +msgstr "ismeretlen" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:317 #, python-format msgid "person_2,Laurence,False,company_1" -msgstr "" +msgstr "személy_2,Laurence,Hamis,vállalat_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:149 #, python-format msgid "Country/External ID: base.be" -msgstr "" +msgstr "Ország/Külső ID azonosító: base.be" #. module: base_import #. openerp-web @@ -762,27 +920,35 @@ msgid "" " the company he work for. (If you want to test this \n" " example, here is a" msgstr "" +"Példának, feltételezzük, hogy van egy SQL adatbázis \n" +" két importálandó táblázattal: vállalatok és \n" +" személyek. Mindegyik személy egy vállalathoz " +"tartozik, így \n" +" létre kell hozni a kapcsolatot a személyek és a " +"munkahelyi \n" +" vállalatuk közt. (Ha tesztelni szeretné \n" +" ezt a példát, itt van a" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" -msgstr "" +msgstr "(%d több)" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:227 #, python-format msgid "File for some Quotations" -msgstr "" +msgstr "Fájl egy pár kérdésnek" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:72 #, python-format msgid "Encoding:" -msgstr "" +msgstr "Kódolás:" #. module: base_import #. openerp-web @@ -802,6 +968,20 @@ msgid "" "\n" " table. (like 'company_1', 'person_1' instead of '1')" msgstr "" +"Táblák közti relációk összefésülésének kezelése, \n" +" használhatja a \"Külső ID azonosító\" OpenERP " +"lehetőséget. \n" +" A rekordhoz tartozó \"Külső ID azonosító\" a rekord " +"egy másik \n" +" alkalmazáson belüli egyedi azonosítója. Ez a \"Külső " +"ID\n" +" azonosító\" egyedi kell legyen minden rekordban és " +"az összes \n" +" objektumon, ezért jó gyakorlat ennek a \"Külső ID " +"azonosítónak\"\n" +" az alkalmazás vagy tábla előtaggal való " +"kiegészítése. \n" +" (mint 'vállalat_1', 'személy_1' az '1' helyett)" #. module: base_import #. openerp-web @@ -812,6 +992,9 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"Először az összes vállalatot és a hozzá tartozó \"Külső ID azonosító\" lesz " +"\n" +" exportálva. A PSQL-ben, írja a következő parancsot:" #. module: base_import #. openerp-web @@ -821,13 +1004,15 @@ msgid "" "How can I import a one2many relationship (e.g. several \n" " Order Lines of a Sales Order)?" msgstr "" +"Hogyan tudom importálni a one2many kapcsolatot (pl. egyes \n" +" megrendelés sorokat egy megrendelésből)?" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." -msgstr "" +msgstr "Úgy néz ki mindegyik érvényes." #. module: base_import #. openerp-web @@ -840,13 +1025,18 @@ msgid "" " use make use of the external ID for this field \n" " 'Category'." msgstr "" +"Azonban, ha nem szeretné a termék kategóriákat\n" +" beállításait megváltoztatni, azt ajánljuk, hogy " +"használja \n" +" a külső ID azonosító használatát erre a 'Kategória'\n" +" mezőre." #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" -msgstr "" +msgstr "Ebben a sorban %d" #. module: base_import #. openerp-web @@ -856,12 +1046,23 @@ msgid "" "How can I import a many2many relationship field \n" " (e.g. a customer that has multiple tags)?" msgstr "" +"Hogyan tudom importálni egy many2many kapcsolati mezőt \n" +" (pl. egy vevő akinek több címkéje van)?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/ID" +msgstr "XXX/ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" msgstr "" #. module: base_import @@ -878,6 +1079,14 @@ msgid "" " link between each person and the company they work \n" " for)." msgstr "" +"Ha különböző táblázatokból kell adatot importálni, \n" +" akkor a különböző táblázatok közötti rekordok " +"kapcsolatait\n" +" újra létre kell hozni. (pl. ha vállalatokat és " +"személyeket \n" +" importál, akkor létre kell hoznia a kapcsolatot \n" +" minden személy és a vállalata közt, ahol " +"alakalmazott)." #. module: base_import #. openerp-web @@ -890,13 +1099,19 @@ msgid "" " Here is when you should use one or the other, \n" " according to your need:" msgstr "" +"Az igénye szerint, használni kell \n" +" egyet a lehetésges 3 közül a a rekordokra " +"hivatkozáshoz a kapcsolatokban. \n" +" It van, ha egyiket a másik helyett kelle használni, " +"\n" +" az igénye szerint:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:319 #, python-format msgid "person_4,Ramsy,False,company_3" -msgstr "" +msgstr "személy_4,Ramsy,Hamis,vállalat_3" #. module: base_import #. openerp-web @@ -912,13 +1127,20 @@ msgid "" " will set the EMPTY value in the field, instead of \n" " assigning the default value." msgstr "" +"Ha nem állítja be az összes mezőt a CSV fájlban, \n" +" OpenERP az alapértelmezett értéket fogja adni minden " +"olyan mezőnak ami \n" +" nincs meghatározva. Ha a mezőnek\n" +" üres értéket ad a CSV fájlban, OpenERP \n" +" az ÜRES értéket fogja beállítani a mezőre, az \n" +" alapértelmezett érték hozzáadása helyett." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:20 #, python-format msgid "Cancel" -msgstr "" +msgstr "Megszakítás" #. module: base_import #. openerp-web @@ -928,20 +1150,29 @@ msgid "" "What happens if I do not provide a value for a \n" " specific field?" msgstr "" +"Mi történik, ha nem adok meg értéket egy \n" +" bizonyos mezőhöz?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:68 #, python-format msgid "Frequently Asked Questions" -msgstr "" +msgstr "Leggyakoribb kérdések" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:305 #, python-format msgid "company_3,Boum,True" -msgstr "" +msgstr "vállalat_3,Boum,Igaz" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "Szóköz" #. module: base_import #. openerp-web @@ -955,6 +1186,12 @@ msgid "" "spreadsheet \n" " application." msgstr "" +"Ez a tulajdonság \n" +" lehetővé teszi az OpenERP Import/Export eszköz " +"használatát \n" +" a rekord kötegek módosítására a kedvenc táblázat " +"kezelőjénak \n" +" alkalmazásával." #. module: base_import #. openerp-web @@ -965,6 +1202,9 @@ msgid "" " import an other record that links to the first\n" " one, use" msgstr "" +"oszlop az OpenERP-ben. Ha\n" +" másik rekordot importál amelyik az elsőre\n" +" hivatkozik, hasznája" #. module: base_import #. openerp-web @@ -986,19 +1226,24 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 #, python-format msgid "CSV file for categories" -msgstr "" +msgstr "CSV fájl kategóriákhoz" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" -msgstr "" +msgstr "Normál mezők" #. module: base_import #. openerp-web @@ -1010,13 +1255,18 @@ msgid "" " identifier from the original application and\n" " map it to the" msgstr "" +"A különböző rekordok közötti kapcsolat újboli\n" +" létrehozásához, az eredeti alkalmazás \n" +" egyedi azonosítójának használata\n" +" szükséges amit\n" +" irányítson ehhez" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:170 #, python-format msgid "CSV file for Products" -msgstr "" +msgstr "CSV fájl a termékekhez" #. module: base_import #. openerp-web @@ -1037,34 +1287,42 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "Vessző" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" -msgstr "" +msgstr "base_import.tests.models.m2o.related" #. module: base_import #: field:base_import.tests.models.preview,name:0 msgid "Name" -msgstr "" +msgstr "Név" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "to the original unique identifier." -msgstr "" +msgstr "az eredeti egyedi ID azonosítóhoz." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:318 #, python-format msgid "person_3,Eric,False,company_2" -msgstr "" +msgstr "személy_3,Eric,Hamis,vállalt_2" #. module: base_import #: field:base_import.import,res_model:0 msgid "Model" -msgstr "" +msgstr "Modell" #. module: base_import #. openerp-web @@ -1072,7 +1330,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "ID" -msgstr "" +msgstr "Azonosító ID" #. module: base_import #. openerp-web @@ -1101,18 +1359,26 @@ msgid "" " (displayed under the Browse CSV file bar after you \n" " select your file)." msgstr "" +"Alapértelmezetten az importálás előnézetben a vesszők mint mező \n" +" elválasztók és a kérdőjelek mint szöveg határolók \n" +" szerepelnek. Ha a csv fájlnak nincsenek meg ezek a " +"\n" +" beállításai, akkor módosíthatja a fájl formátum " +"lehetőségekkel \n" +" (kijelezve a kiválasztott CSV fájl böngészési sávja " +"alatt)." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:73 #, python-format msgid "Separator:" -msgstr "" +msgstr "Elválasztó:" #. module: base_import #: field:base_import.import,file_name:0 msgid "File Name" -msgstr "" +msgstr "Fájl neve" #. module: base_import #. openerp-web @@ -1122,28 +1388,28 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "External ID" -msgstr "" +msgstr "Külső ID azonosító" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:39 #, python-format msgid "File Format Options…" -msgstr "" +msgstr "Fájl formátum lehetőségek…" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" -msgstr "" +msgstr "oszlopok közt %d és %d" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:19 #, python-format msgid "or" -msgstr "" +msgstr "vagy" #. module: base_import #. openerp-web @@ -1157,8 +1423,26 @@ msgid "" "demo \n" " data." msgstr "" +"Példának, it van egy \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" fájl egy pár árajánlatról amit beimportálhat, a demo " +"adat \n" +" alapján." #. module: base_import #: field:base_import.import,file:0 msgid "File" -msgstr "" +msgstr "Fájl" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Beszállítók és a hozzá tartozó kapcsolattartók" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "A következő CSV fájl megmutatja hogyan töltsük be a \n" +#~ " szállítókat a hozzájuk tartozó kapcsolatokhoz" diff --git a/addons/base_import/i18n/it.po b/addons/base_import/i18n/it.po index 4dd9671cc40..078025ecaad 100644 --- a/addons/base_import/i18n/it.po +++ b/addons/base_import/i18n/it.po @@ -7,19 +7,19 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Ottieni tutti i valori possibili" @@ -59,7 +59,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Campi Realazione" @@ -236,6 +236,8 @@ msgid "" "What's the difference between Database ID and \n" " External ID?" msgstr "" +"Qual'è la differenza tra ID database e \n" +"ID esterno?" #. module: base_import #. openerp-web @@ -247,13 +249,16 @@ msgid "" "\n" " you 3 different fields to import:" msgstr "" +"Per esempio, per\n" +"in riferimento al paese di un contatto, OpenERP propone\n" +"3 differenti campi da importare:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:175 #, python-format msgid "What can I do if I have multiple matches for a field?" -msgstr "" +msgstr "Cosa posso fare se trovo risultati multipli per un campo?" #. module: base_import #. openerp-web @@ -267,15 +272,6 @@ msgstr "ID esterno, Nome, è una azienda" msgid "Some Value" msgstr "Qualche valore" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -339,12 +335,14 @@ msgid "" "External ID,Name,Is a \n" " Company,Related Company/External ID" msgstr "" +"ID esterno, Nome, è una \n" +"azienda, azienda relativa / ID esterno" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" +msgid "Semicolon" msgstr "" #. module: base_import @@ -378,6 +376,9 @@ msgid "" "\n" " PSQL:" msgstr "" +"Per creare file CSV per persone, collegate ad\n" +"aziende, utilizzeremo il seguente comando SQL in\n" +"PSQL:" #. module: base_import #. openerp-web @@ -394,6 +395,13 @@ msgstr "" "(nella videata 'salva con nome' cliccare sull'elenco a discese 'strumenti' \n" "> Scheda Codifica)." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -578,9 +586,11 @@ msgid "Reload data to check changes." msgstr "" #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" -msgstr "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" #. module: base_import #. openerp-web @@ -674,7 +684,7 @@ msgstr "Importa" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "Ecco i possibili valori:" @@ -688,7 +698,7 @@ msgstr "Il" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -774,7 +784,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -833,7 +843,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "" @@ -852,7 +862,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "" @@ -873,6 +883,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -952,6 +971,13 @@ msgstr "" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -995,6 +1021,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1004,7 +1035,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1046,6 +1077,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1142,7 +1181,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" @@ -1171,3 +1210,15 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Fornitori e relativi contatti" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "Il seguente file CSV mostra come importare\n" +#~ "fornitori e rispettivi contatti" diff --git a/addons/base_import/i18n/mk.po b/addons/base_import/i18n/mk.po new file mode 100644 index 00000000000..6b2c132254c --- /dev/null +++ b/addons/base_import/i18n/mk.po @@ -0,0 +1,1237 @@ +# 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-11 13:29+0000\n" +"Last-Translator: Aleksandar Panov \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-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:451 +#, python-format +msgid "Get all possible values" +msgstr "Земи ги сите можни вредности" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:71 +#, python-format +msgid "Need to import data from an other application?" +msgstr "Потребно е увезување на податоци од друга апликација?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:163 +#, python-format +msgid "" +"When you use External IDs, you can import CSV files \n" +" with the \"External ID\" column to define the " +"External \n" +" ID of each record you import. Then, you will be able " +"\n" +" to make a reference to that record with columns like " +"\n" +" \"Field/External ID\". The following two CSV files " +"give \n" +" you an example for Products and their Categories." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:271 +#, python-format +msgid "" +"How to export/import different tables from an SQL \n" +" application to OpenERP?" +msgstr "" +"Како да извезете/увезете различни табели од SQL апликација во OpenERP?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:331 +#, python-format +msgid "Relation Fields" +msgstr "Полиња за врска" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:142 +#, python-format +msgid "" +"Country/Database ID: the unique OpenERP ID for a \n" +" record, defined by the ID postgresql column" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:155 +#, python-format +msgid "" +"Use \n" +" Country/Database ID: You should rarely use this \n" +" notation. It's mostly used by developers as it's " +"main \n" +" advantage is to never have conflicts (you may have \n" +" several records with the same name, but they always " +"\n" +" have a unique Database ID)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:146 +#, python-format +msgid "" +"For the country \n" +" Belgium, you can use one of these 3 ways to import:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:303 +#, python-format +msgid "company_1,Bigees,True" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o +msgid "base_import.tests.models.m2o" +msgstr "base_import.tests.models.m2o" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:297 +#, python-format +msgid "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:206 +#, python-format +msgid "CSV file for Manufacturer, Retailer" +msgstr "CSV фајл за Производител, Трговец на мало" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:160 +#, python-format +msgid "" +"Use \n" +" Country/External ID: Use External ID when you import " +"\n" +" data from a third party application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:316 +#, python-format +msgid "person_1,Fabien,False,company_1" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/External ID" +msgstr "XXX/Надворешна ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:351 +#, python-format +msgid "Don't Import" +msgstr "Не увезувај" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:24 +#, python-format +msgid "Select the" +msgstr "Изберете" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:100 +#, python-format +msgid "" +"Note that if your CSV file \n" +" has a tabulation as separator, OpenERP will not \n" +" detect the separations. You will need to change the " +"\n" +" file format options in your spreadsheet application. " +"\n" +" See the following question." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:141 +#, python-format +msgid "Country: the name or code of the country" +msgstr "Земја: Име или код на земјата" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child +msgid "base_import.tests.models.o2m.child" +msgstr "Copy text \t base_import.tests.models.o2m.child" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:239 +#, python-format +msgid "Can I import several times the same record?" +msgstr "Дали може да увезам повеќе пати ист запис?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:15 +#, python-format +msgid "Validate" +msgstr "Потврди" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:55 +#, python-format +msgid "Map your data to OpenERP" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:153 +#, python-format +msgid "" +"Use Country: This is \n" +" the easiest way when your data come from CSV files \n" +" that have been created manually." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:127 +#, python-format +msgid "" +"What's the difference between Database ID and \n" +" External ID?" +msgstr "" +"Која е разликата помеѓу ID на датабаза и\n" +"Надворешна ID?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:138 +#, python-format +msgid "" +"For example, to \n" +" reference the country of a contact, OpenERP proposes " +"\n" +" you 3 different fields to import:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:175 +#, python-format +msgid "What can I do if I have multiple matches for a field?" +msgstr "Што може да направам доколку имам повеќе совшаѓања за полето?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:302 +#, python-format +msgid "External ID,Name,Is a Company" +msgstr "Надворешна ID,Име,Компанија" + +#. module: base_import +#: field:base_import.tests.models.preview,somevalue:0 +msgid "Some Value" +msgstr "Некоја вредност" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:109 +#, python-format +msgid "" +"How can I change the CSV file format options when \n" +" saving in my spreadsheet application?" +msgstr "" +"Како може да се изврши промена на CSV фајл форматот при зачувување\n" +" во апликацијата?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:320 +#, python-format +msgid "" +"As you can see in this file, Fabien and Laurence \n" +" are working for the Bigees company (company_1) and \n" +" Eric is working for the Organi company. The relation " +"\n" +" between persons and companies is done using the \n" +" External ID of the companies. We had to prefix the \n" +" \"External ID\" by the name of the table to avoid a " +"\n" +" conflict of ID between persons and companies " +"(person_1 \n" +" and company_1 who shared the same ID 1 in the " +"orignial \n" +" database)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:308 +#, python-format +msgid "" +"copy (select \n" +" 'person_'||id as \"External ID\",person_name as \n" +" \"Name\",'False' as \"Is a " +"Company\",'company_'||company_id\n" +" as \"Related Company/External ID\" from persons) TO " +"\n" +" '/tmp/person.csv' with CSV" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "Country: Belgium" +msgstr "Земја: Белгија" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly +msgid "base_import.tests.models.char.stillreadonly" +msgstr "base_import.tests.models.char.stillreadonly" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:314 +#, python-format +msgid "" +"External ID,Name,Is a \n" +" Company,Related Company/External ID" +msgstr "" +"Надворешна ID,Име,\n" +"Компанија,Поврзана компанија/Надворешна ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:174 +#, python-format +msgid "Semicolon" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:179 +#, python-format +msgid "" +"If for example you have two product categories \n" +" with the child name \"Sellable\" (ie. \"Misc. \n" +" Products/Sellable\" & \"Other Products/Sellable\"),\n" +" your validation is halted but you may still import \n" +" your data. However, we recommend you do not import " +"the \n" +" data because they will all be linked to the first \n" +" 'Sellable' category found in the Product Category " +"list \n" +" (\"Misc. Products/Sellable\"). We recommend you " +"modify \n" +" one of the duplicates' values or your product " +"category \n" +" hierarchy." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:306 +#, python-format +msgid "" +"To create the CSV file for persons, linked to \n" +" companies, we will use the following SQL command in " +"\n" +" PSQL:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:119 +#, python-format +msgid "" +"Microsoft Excel will allow \n" +" you to modify only the encoding when saving \n" +" (in 'Save As' dialog box > click 'Tools' dropdown \n" +" list > Encoding tab)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "Табулатор" + +#. module: base_import +#: field:base_import.tests.models.preview,othervalue:0 +msgid "Other Variable" +msgstr "Друга варијабла" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "" +"will also be used to update the original\n" +" import if you need to re-import modified data\n" +" later, it's thus good practice to specify it\n" +" whenever possible" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid "" +"file to import. If you need a sample importable file, you\n" +" can use the export tool to generate one." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:148 +#, python-format +msgid "" +"Country/Database \n" +" ID: 21" +msgstr "" +"Земја/Датабаза\n" +"ID: 21" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char +msgid "base_import.tests.models.char" +msgstr "base_import.tests.models.char" + +#. module: base_import +#: help:base_import.import,file:0 +msgid "File to check and/or import, raw binary (not base64)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:230 +#, python-format +msgid "Purchase orders with their respective purchase order lines" +msgstr "Налози за набавка, со соодветните ставки од налогот за набавка" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:60 +#, python-format +msgid "" +"If the file contains\n" +" the column names, OpenERP can try auto-detecting the\n" +" field corresponding to the column. This makes imports\n" +" simpler especially when the file has many columns." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:26 +#, python-format +msgid ".CSV" +msgstr ".CSV" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "" +". The issue is\n" +" usually an incorrect file encoding." +msgstr "" +". Проблемот е\n" +" вообичаено погрешна кодна страница на фајлот." + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required +msgid "base_import.tests.models.m2o.required" +msgstr "base_import.tests.models.m2o.required" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly +msgid "base_import.tests.models.char.noreadonly" +msgstr "base_import.tests.models.char.noreadonly" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:113 +#, python-format +msgid "" +"If you edit and save CSV files in speadsheet \n" +" applications, your computer's regional settings will " +"\n" +" be applied for the separator and delimiter. \n" +" We suggest you use OpenOffice or LibreOffice Calc \n" +" as they will allow you to modify all three options \n" +" (in 'Save As' dialog box > Check the box 'Edit " +"filter \n" +" settings' > Save)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:30 +#, python-format +msgid "CSV File:" +msgstr "CSV Датотека:" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_preview +msgid "base_import.tests.models.preview" +msgstr "base_import.tests.models.preview" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_required +msgid "base_import.tests.models.char.required" +msgstr "base_import.tests.models.char.required" + +#. module: base_import +#: code:addons/base_import/models.py:112 +#, python-format +msgid "Database ID" +msgstr "ID на базата на податоци" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:313 +#, python-format +msgid "It will produce the following CSV file:" +msgstr "Ќе го произведе следниов CSV фајл:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:362 +#, python-format +msgid "Here is the start of the file we could not import:" +msgstr "Овде е почетокот на фајлот кој не можеме да го увеземе:" + +#. module: base_import +#: field:base_import.import,file_type:0 +msgid "File Type" +msgstr "Тип на датотека" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_import +msgid "base_import.import" +msgstr "base_import.import" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_o2m +msgid "base_import.tests.models.o2m" +msgstr "base_import.tests.models.o2m" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:360 +#, python-format +msgid "Import preview failed due to:" +msgstr "Вметнувањето на прегледот не е успешно поради:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:144 +#, python-format +msgid "" +"Country/External ID: the ID of this record \n" +" referenced in another application (or the .XML file " +"\n" +" that imported it)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:35 +#, python-format +msgid "Reload data to check changes." +msgstr "Освежи ги податоците за проверка на промените." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:131 +#, python-format +msgid "" +"Some fields define a relationship with another \n" +" object. For example, the country of a contact is a \n" +" link to a record of the 'Country' object. When you \n" +" want to import such fields, OpenERP will have to \n" +" recreate links between the different records. \n" +" To help you import such fields, OpenERP provides 3 \n" +" mechanisms. You must use one and only one mechanism " +"\n" +" per field you want to import." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:201 +#, python-format +msgid "" +"The tags should be separated by a comma without any \n" +" spacing. For example, if you want you customer to be " +"\n" +" lined to both tags 'Manufacturer' and 'Retailer' \n" +" then you will encode it as follow \"Manufacturer,\n" +" Retailer\" in the same column of your CSV file." +msgstr "" + +#. module: base_import +#: code:addons/base_import/models.py:264 +#, python-format +msgid "You must configure at least one field to import" +msgstr "Мора да конфигурирате барем едно поле за увезување" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:304 +#, python-format +msgid "company_2,Organi,True" +msgstr "company_2,Organi,True" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:58 +#, python-format +msgid "" +"The first row of the\n" +" file contains the label of the column" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_states +msgid "base_import.tests.models.char.states" +msgstr "base_import.tests.models.char.states" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:7 +#, python-format +msgid "Import a CSV File" +msgstr "Увези CSV фајл" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:74 +#, python-format +msgid "Quoting:" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related +msgid "base_import.tests.models.m2o.required.related" +msgstr "base_import.tests.models.m2o.required.related" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid ")." +msgstr ")." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:18 +#: code:addons/base_import/static/src/xml/import.xml:396 +#, python-format +msgid "Import" +msgstr "Увези" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:438 +#, python-format +msgid "Here are the possible values:" +msgstr "Еве ги можните вредности:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "The" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:248 +#, python-format +msgid "" +"A single column was found in the file, this often means the file separator " +"is incorrect" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:293 +#, python-format +msgid "dump of such a PostgreSQL database" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:301 +#, python-format +msgid "This SQL command will create the following CSV file:" +msgstr "SQL командата ќе го креира следниов CSV фајл:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:228 +#, python-format +msgid "" +"The following CSV file shows how to import purchase \n" +" orders with their respective purchase order lines:" +msgstr "" +"Следниов CSV фајл покажува како да ги импортирате налозите за набавка\n" +"со соодветните ставки од налогот за набавка:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:91 +#, python-format +msgid "" +"What can I do when the Import preview table isn't \n" +" displayed correctly?" +msgstr "" +"Што можам да направам кога табелата за преглед на увезување \n" +"не е прикажана правилно?" + +#. module: base_import +#: field:base_import.tests.models.char,value:0 +#: field:base_import.tests.models.char.noreadonly,value:0 +#: field:base_import.tests.models.char.readonly,value:0 +#: field:base_import.tests.models.char.required,value:0 +#: field:base_import.tests.models.char.states,value:0 +#: field:base_import.tests.models.char.stillreadonly,value:0 +#: field:base_import.tests.models.m2o,value:0 +#: field:base_import.tests.models.m2o.related,value:0 +#: field:base_import.tests.models.m2o.required,value:0 +#: field:base_import.tests.models.m2o.required.related,value:0 +#: field:base_import.tests.models.o2m,value:0 +#: field:base_import.tests.models.o2m.child,parent_id:0 +#: field:base_import.tests.models.o2m.child,value:0 +msgid "unknown" +msgstr "непознато" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:317 +#, python-format +msgid "person_2,Laurence,False,company_1" +msgstr "person_2,Laurence,False,company_1" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:149 +#, python-format +msgid "Country/External ID: base.be" +msgstr "Земја/Надворешна Id: base.be" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:288 +#, python-format +msgid "" +"As an example, suppose you have a SQL database \n" +" with two tables you want to import: companies and \n" +" persons. Each person belong to one company, so you \n" +" will have to recreate the link between a person and " +"\n" +" the company he work for. (If you want to test this \n" +" example, here is a" +msgstr "" +"На пример, по претпоставка дека имате SQL база на податоци \n" +" со две табели што сакате да ги импортирате: компании " +"и \n" +" личности. Секое лице припаѓа на една компанија, што " +"значи \n" +" ќе треба повторно да создадете врска помеѓу лицето и " +"\n" +" компанијата за која тоа лице работи. (Доколку сакате " +"да го тестирате овој\n" +" пример, еве" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:427 +#, python-format +msgid "(%d more)" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:227 +#, python-format +msgid "File for some Quotations" +msgstr "Пополнете за некои понуди" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:72 +#, python-format +msgid "Encoding:" +msgstr "Кодирање:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:280 +#, python-format +msgid "" +"To manage relations between tables, \n" +" you can use the \"External ID\" facilities of " +"OpenERP. \n" +" The \"External ID\" of a record is the unique " +"identifier \n" +" of this record in another application. This " +"\"External \n" +" ID\" must be unique accoss all the records of all \n" +" objects, so it's a good practice to prefix this \n" +" \"External ID\" with the name of the application or " +"\n" +" table. (like 'company_1', 'person_1' instead of '1')" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:295 +#, python-format +msgid "" +"We will first export all companies and their \n" +" \"External ID\". In PSQL, write the following " +"command:" +msgstr "" +"Најпрвин ќе ги извеземе сите компании и нивните\n" +"\"Надворешна ID\". Во PSQL, напиши ја следнава команда:" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:212 +#, python-format +msgid "" +"How can I import a one2many relationship (e.g. several \n" +" Order Lines of a Sales Order)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:404 +#, python-format +msgid "Everything seems valid." +msgstr "Изгледа се е валидно." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:188 +#, python-format +msgid "" +"However if you do not wish to change your \n" +" configuration of product categories, we recommend " +"you \n" +" use make use of the external ID for this field \n" +" 'Category'." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:421 +#, python-format +msgid "at row %d" +msgstr "на ред %d" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:197 +#, python-format +msgid "" +"How can I import a many2many relationship field \n" +" (e.g. a customer that has multiple tags)?" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "XXX/ID" +msgstr "XXX/ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:275 +#, python-format +msgid "" +"If you need to import data from different tables, \n" +" you will have to recreate relations between records " +"\n" +" belonging to different tables. (e.g. if you import \n" +" companies and persons, you will have to recreate the " +"\n" +" link between each person and the company they work \n" +" for)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:150 +#, python-format +msgid "" +"According to your need, you should use \n" +" one of these 3 ways to reference records in " +"relations. \n" +" Here is when you should use one or the other, \n" +" according to your need:" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:319 +#, python-format +msgid "person_4,Ramsy,False,company_3" +msgstr "person_4,Ramsy,False,company_3" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:261 +#, python-format +msgid "" +"If you do not set all fields in your CSV file, \n" +" OpenERP will assign the default value for every non " +"\n" +" defined fields. But if you\n" +" set fields with empty values in your CSV file, " +"OpenERP \n" +" will set the EMPTY value in the field, instead of \n" +" assigning the default value." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:20 +#, python-format +msgid "Cancel" +msgstr "Откажи" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:257 +#, python-format +msgid "" +"What happens if I do not provide a value for a \n" +" specific field?" +msgstr "" +"Што се случува доколку не доставам вредност за\n" +"одредено поле?" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:68 +#, python-format +msgid "Frequently Asked Questions" +msgstr "Често Поставувани Прашања" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:305 +#, python-format +msgid "company_3,Boum,True" +msgstr "company_3,Boum,True" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "Празно место" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:249 +#, python-format +msgid "" +"This feature \n" +" allows you to use the Import/Export tool of OpenERP " +"to \n" +" modify a batch of records in your favorite " +"spreadsheet \n" +" application." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#, python-format +msgid "" +"column in OpenERP. When you\n" +" import an other record that links to the first\n" +" one, use" +msgstr "" +"колона во OpenERP. Кога\n" +" увезувате друг запис кој е поврзан со првиот\n" +" употребете" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:242 +#, python-format +msgid "" +"If you import a file that contains one of the \n" +" column \"External ID\" or \"Database ID\", records " +"that \n" +" have already been imported will be modified instead " +"of \n" +" being created. This is very usefull as it allows you " +"\n" +" to import several times the same CSV file while " +"having \n" +" made some changes in between two imports. OpenERP " +"will \n" +" take care of creating or modifying each record \n" +" depending if it's new or not." +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:169 +#, python-format +msgid "CSV file for categories" +msgstr "CSV датотека за категории" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:330 +#, python-format +msgid "Normal Fields" +msgstr "Полиња Нормално" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:74 +#, python-format +msgid "" +"In order to re-create relationships between\n" +" different records, you should use the unique\n" +" identifier from the original application and\n" +" map it to the" +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:170 +#, python-format +msgid "CSV file for Products" +msgstr "CSV датотека за производи" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:216 +#, python-format +msgid "" +"If you want to import sales order having several \n" +" order lines; for each order line, you need to " +"reserve \n" +" a specific row in the CSV file. The first order line " +"\n" +" will be imported on the same row as the information " +"\n" +" relative to order. Any additional lines will need an " +"\n" +" addtional row that does not have any information in " +"\n" +" the fields relative to the order." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related +msgid "base_import.tests.models.m2o.related" +msgstr "base_import.tests.models.m2o.related" + +#. module: base_import +#: field:base_import.tests.models.preview,name:0 +msgid "Name" +msgstr "Име" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:80 +#, python-format +msgid "to the original unique identifier." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:318 +#, python-format +msgid "person_3,Eric,False,company_2" +msgstr "person_3,Eric,False,company_2" + +#. module: base_import +#: field:base_import.import,res_model:0 +msgid "Model" +msgstr "Модел" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "ID" +msgstr "ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:329 +#, python-format +msgid "" +"The two files produced are ready to be imported in \n" +" OpenERP without any modifications. After having \n" +" imported these two CSV files, you will have 4 " +"contacts \n" +" and 3 companies. (the firsts two contacts are linked " +"\n" +" to the first company). You must first import the \n" +" companies and then the persons." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:95 +#, python-format +msgid "" +"By default the Import preview is set on commas as \n" +" field separators and quotation marks as text \n" +" delimiters. If your csv file does not have these \n" +" settings, you can modify the File Format Options \n" +" (displayed under the Browse CSV file bar after you \n" +" select your file)." +msgstr "" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:73 +#, python-format +msgid "Separator:" +msgstr "Одделувач:" + +#. module: base_import +#: field:base_import.import,file_name:0 +msgid "File Name" +msgstr "Име на датотека" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/models.py:80 +#: code:addons/base_import/models.py:111 +#: code:addons/base_import/static/src/xml/import.xml:77 +#: code:addons/base_import/static/src/xml/import.xml:82 +#, python-format +msgid "External ID" +msgstr "Надворешна ID" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:39 +#, python-format +msgid "File Format Options…" +msgstr "Опции за формат на датотека..." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:423 +#, python-format +msgid "between rows %d and %d" +msgstr "помеѓу редови %d и %d" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:19 +#, python-format +msgid "or" +msgstr "или" + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:223 +#, python-format +msgid "" +"As an example, here is \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" file of some quotations you can import, based on " +"demo \n" +" data." +msgstr "" + +#. module: base_import +#: field:base_import.import,file:0 +msgid "File" +msgstr "Датотека" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "Следниов CSV фајл покажува како да увезете\n" +#~ "добавувачи и нивните контакти" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Добавувачи и нивните контакти" diff --git a/addons/base_import/i18n/mn.po b/addons/base_import/i18n/mn.po index 859642e5ea2..5a164361b10 100644 --- a/addons/base_import/i18n/mn.po +++ b/addons/base_import/i18n/mn.po @@ -7,29 +7,29 @@ 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-02-20 02:20+0000\n" -"Last-Translator: Altangerel \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-04 14:12+0000\n" +"Last-Translator: gobi \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-02-20 05:28+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" -msgstr "" +msgstr "Бүх боломжит утгыг авах" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:71 #, python-format msgid "Need to import data from an other application?" -msgstr "" +msgstr "Өөр програмаас өгөгдөл импортлох хэрэгтэй байна уу?" #. module: base_import #. openerp-web @@ -47,6 +47,14 @@ msgid "" "give \n" " you an example for Products and their Categories." msgstr "" +"Гадаад ID-г хэрэглэбэл CSV файлыг гадаад ID буюу \"External ID\" \n" +" гэсэн баганаар бичлэг бүрт гадаад ID тодорхойлон \n" +" импортлож болно. Дараа нь энэ бичлэг рүү \n" +" \"Field/External ID\" буюу \"Талбар/Гадаад ID\" гэсэн " +"\n" +" байдлаар сурвалж болгон холбох боломжтой. \n" +" Дараах хоёр CSV файл нь Бараа болон түүний \n" +" ангилалын хувьд жишээ болж байна." #. module: base_import #. openerp-web @@ -56,10 +64,13 @@ msgid "" "How to export/import different tables from an SQL \n" " application to OpenERP?" msgstr "" +"SQL-н програмуудаас ялгаатай хүснэгтийг OpenERP-руу \n" +" яаж импортлох " +"вэ?" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Харицааны талбарууд" @@ -72,6 +83,9 @@ msgid "" "Country/Database ID: the unique OpenERP ID for a \n" " record, defined by the ID postgresql column" msgstr "" +"Улс/Өгөгдлийн баазын ID: бичлэгийн үл давхцах \n" +" OpenERP ID, ID postgresql " +"баганаар тодорхойлогдсон" #. module: base_import #. openerp-web @@ -87,6 +101,14 @@ msgid "" "\n" " have a unique Database ID)" msgstr "" +"Хэрэглээ \n" +" Улс/Өгөгдлийн баазын ID: Энэ бичлэгийн цөөхөн " +"хэрэглэх нь \n" +" зохимжтой. Үүнийг голдуу хөгжүүлэгчид зөрчил " +"үүсгэхгүйн \n" +" тулд голдуу хэрэглэдэг. (ижил нэртэй бичлэгүүдтэй " +"байж \n" +" болох боловч өгөгдлийн баазын ID үл давхцах байна)" #. module: base_import #. openerp-web @@ -107,7 +129,7 @@ msgstr "" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o msgid "base_import.tests.models.m2o" -msgstr "" +msgstr "base_import.tests.models.m2o" #. module: base_import #. openerp-web @@ -121,6 +143,12 @@ msgid "" "companies) TO \n" " '/tmp/company.csv' with CSV HEADER;" msgstr "" +"copy \n" +" (select 'company_'||id as \"External " +"ID\",company_name \n" +" as \"Name\",'True' as \"Is a Company\" from " +"companies) TO \n" +" '/tmp/company.csv' with CSV HEADER;" #. module: base_import #. openerp-web @@ -264,15 +292,6 @@ msgstr "" msgid "Some Value" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -339,9 +358,9 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" +msgid "Semicolon" msgstr "" #. module: base_import @@ -387,6 +406,13 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -569,9 +595,11 @@ msgid "Reload data to check changes." msgstr "" #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" -msgstr "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" #. module: base_import #. openerp-web @@ -665,7 +693,7 @@ msgstr "Импортлох" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "" @@ -679,7 +707,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -765,7 +793,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -824,7 +852,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "" @@ -843,7 +871,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "" @@ -864,6 +892,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -943,6 +980,13 @@ msgstr "Түгээмэл Тавигддаг Асуултууд" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -986,6 +1030,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -995,7 +1044,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1037,6 +1086,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1133,7 +1190,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" diff --git a/addons/base_import/i18n/nb.po b/addons/base_import/i18n/nb.po index 439c330851b..92d0f2dc95a 100644 --- a/addons/base_import/i18n/nb.po +++ b/addons/base_import/i18n/nb.po @@ -7,19 +7,19 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Få alle mulige verdier." @@ -61,7 +61,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Forhold feltene." @@ -268,17 +268,6 @@ msgstr "Ekstern ID, navn, er et selskap." msgid "Some Value" msgstr "Noen verdi." -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" -"Følgende CSV-filen viser hvordan du importerer\n" -"leverandører og deres respektive kontakter." - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -349,10 +338,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "Leverandører og deres respektive kontakter." +msgid "Semicolon" +msgstr "" #. module: base_import #. openerp-web @@ -397,6 +386,13 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -585,9 +581,11 @@ msgid "Reload data to check changes." msgstr "Lad data til å sjekke endringer." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" -msgstr "Base_import.tester.modeller.char.lesbare." +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" #. module: base_import #. openerp-web @@ -683,7 +681,7 @@ msgstr "Importer." #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "Her er de mulige verdiene." @@ -697,7 +695,7 @@ msgstr "Den." #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -787,7 +785,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "(%d Mer)" @@ -848,7 +846,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "Alt virker gyldig." @@ -867,7 +865,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "På rad %d" @@ -888,6 +886,15 @@ msgstr "" msgid "XXX/ID" msgstr "XXX/ID." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -967,6 +974,13 @@ msgstr "" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -1010,6 +1024,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "Base_import.tester.modeller.char.lesbare." + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1019,7 +1038,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1061,6 +1080,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1157,7 +1184,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" @@ -1186,3 +1213,15 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Leverandører og deres respektive kontakter." + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "Følgende CSV-filen viser hvordan du importerer\n" +#~ "leverandører og deres respektive kontakter." diff --git a/addons/base_import/i18n/nl.po b/addons/base_import/i18n/nl.po index b4c10810065..6b392630f2b 100644 --- a/addons/base_import/i18n/nl.po +++ b/addons/base_import/i18n/nl.po @@ -7,19 +7,19 @@ 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-02-15 07:45+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-08 09:50+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-16 05:39+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-09 06:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Alle positieve waardes ophalen" @@ -70,7 +70,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Relatie velden" @@ -84,7 +84,7 @@ msgid "" " record, defined by the ID postgresql column" msgstr "" "Land/Database ID: de unieke OpenERP ID voor een \n" -" record, gedefinieerd door de postgresql kolom id" +" record, gedefinieerd door de PostgreSQL kolom id" #. module: base_import #. openerp-web @@ -106,9 +106,9 @@ msgstr "" "programmeurs\n" " omdat het als voordeel heeft dat je geen conflicten " "hebt (je kan \n" -"                        meerdere records met dezelfde naam hebben, maar ze " +" meerdere records met dezelfde naam hebben, maar ze " "hebben altijd\n" -"                        een unieke database ID)" +" een unieke database ID)" #. module: base_import #. openerp-web @@ -246,7 +246,7 @@ msgstr "Kan ik meerdere maken hetzelfde record importeren." #: code:addons/base_import/static/src/xml/import.xml:15 #, python-format msgid "Validate" -msgstr "Bevestigen" +msgstr "Valideren" #. module: base_import #. openerp-web @@ -314,17 +314,6 @@ msgstr "Externe ID,Naam,Is een bedrijf" msgid "Some Value" msgstr "Zelfde waarde" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" -"Het navolgende CSV bestand toont hoe leveranciers \n" -" en de contactpersonen te importeren" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -358,9 +347,9 @@ msgid "" msgstr "" "Zoals u in dit bestand kunt zien, werken Fabien en Laurence\n" " voor grote bedrijven (company_1) en Eric werkt\n" -" voor het nedrijf Organi. De relatie tussen de " +" voor het bedrijf Organi. De relatie tussen de " "personen \n" -" en de bedrijven wordt egmaakt door gebruik te maken " +" en de bedrijven wordt gemaakt door gebruik te maken " "van de \n" " External ID van de bedrijven. We hebben een prefix " "gemaakt voor de \n" @@ -418,10 +407,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "Leveranciers en de bijbehorende contactpersonen" +msgid "Semicolon" +msgstr "Puntkomma" #. module: base_import #. openerp-web @@ -444,19 +433,19 @@ msgid "" " hierarchy." msgstr "" "Als u bijvoorbeeld twee productcategorieën heeft\n" -"                         met het onderliggende categorie met de naam " +" met het onderliggende categorie met de naam " "\"Verkoopbaar\" (bijv. \"Div.\n" -"                         Producten / Verkoopbaar\" & \"Overige producten / " +" Producten / Verkoopbaar\" & \"Overige producten / " "Verkoopbaar\"),\n" -"                         zal de import validate stoppen, maar u kunt nog " +" zal de import validatie stoppen, maar u kunt nog " "steeds uw data importeren.\n" -"                         Toch raden wij u niet aan de data te importeren " +" Toch raden wij u niet aan de data te importeren " "omdat deze allemaal worden\n" -" gekoppeld aan de eerste categorie \"Verkoopbaar\" " -"in de product categorie lijst\n" -"                         (\"Div. Producten / Verkoopbaar\"). Wij raden u aan " +" gekoppeld aan de eerste categorie \"Verkoopbaar\" in " +"de product categorie lijst\n" +" (\"Div. Producten / Verkoopbaar\"). Wij raden u aan " "om een van de dubbele waarden\n" -" van uw productcategorie hiërarchie aan te passen." +" van uw productcategorie hiërarchie aan te passen." #. module: base_import #. openerp-web @@ -486,9 +475,16 @@ msgstr "" "Microsoft Excel geeft u \n" " de mogelijkheid alleen de codering te wijzigen bij " "het opslaan\n" -"                         (in 'Opslaan als' dialoogvenster> klik op 'Extra' " +" (in 'Opslaan als' dialoogvenster> klik op 'Extra' " "dropdown\n" -"                         lijst> Codering tab)." +" lijst> Codering tab)." + +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "Tab" #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 @@ -655,7 +651,7 @@ msgstr "Het zal het volgende CSV bestand produceren" #: code:addons/base_import/static/src/xml/import.xml:362 #, python-format msgid "Here is the start of the file we could not import:" -msgstr "Hier is de start van het bestand welke we niet konden improteren:" +msgstr "Hier is de start van het bestand welke we niet konden importeren:" #. module: base_import #: field:base_import.import,file_type:0 @@ -702,9 +698,11 @@ msgid "Reload data to check changes." msgstr "Gegevens herladen om te controleren op wijzigingen" #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" -msgstr "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "Klanten en de bijbehorende contactpersonen" #. module: base_import #. openerp-web @@ -819,7 +817,7 @@ msgstr "Importeren" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "Hier de mogelijke waarden." @@ -833,7 +831,7 @@ msgstr "De" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -935,7 +933,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "(%d meer)" @@ -996,7 +994,7 @@ msgid "" "command:" msgstr "" "We zullen eerst alle bedrijven met de \n" -" \"External ID\" exproteren. In PSQL, schrijf het " +" \"External ID\" exporteren. In PSQL, schrijf het " "volgende commando:" #. module: base_import @@ -1012,7 +1010,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "Alle velden lijken geldig." @@ -1028,15 +1026,15 @@ msgid "" " use make use of the external ID for this field \n" " 'Category'." msgstr "" -"Maar als u de configuratie van de\n" -"                         productcategorieën niet wiltr wijzigen, raden wij u " +"Maar als u de configuratie van de \n" +" productcategorieën niet wilt wijzigen, raden wij u " "aan\n" -"                         gebruik maken van de externe ID voor dit veld\n" -"                         'Categorie'." +" gebruik maken van de externe ID voor dit veld\n" +" 'Categorie'." #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "op regel %d" @@ -1059,6 +1057,18 @@ msgstr "" msgid "XXX/ID" msgstr "XXX/ID" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" +"Het volgende CSV bestand laaat zien hoe \n" +" klanten en de bijbehorende contactpersonen te " +"importeren." + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -1162,6 +1172,13 @@ msgstr "Vaak gestelde vragen (FAQ)" msgid "company_3,Boum,True" msgstr "company_3,Boum,True" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "Spatie" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -1190,8 +1207,8 @@ msgid "" " import an other record that links to the first\n" " one, use" msgstr "" -"kolom in OpenERP. Waneer u\n" -" een ander record importeerd, welke verwijst naar de " +"kolom in OpenERP. Wanneer u\n" +" een ander record importeert, welke verwijst naar de " "eerste\n" " gebruik," @@ -1228,6 +1245,11 @@ msgstr "" " zorg dragen voor het aanmaken of bijwerken van " "iedere record." +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1237,7 +1259,7 @@ msgstr "CSV bestand voor categorieën" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "Normale velden" @@ -1296,6 +1318,14 @@ msgstr "" "alleen de\n" " regelinformatie." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "Komma" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1408,7 +1438,7 @@ msgstr "Bestand formaat opties..." #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "Tussen regel %d en %d" @@ -1442,3 +1472,15 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "Bestand" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Leveranciers en de bijbehorende contactpersonen" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "Het navolgende CSV bestand toont hoe leveranciers \n" +#~ " en de contactpersonen te importeren" diff --git a/addons/base_import/i18n/pl.po b/addons/base_import/i18n/pl.po index fddb0a2b58f..358fe2fac27 100644 --- a/addons/base_import/i18n/pl.po +++ b/addons/base_import/i18n/pl.po @@ -7,19 +7,19 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Pobierz wszystkie możliwe wartości" @@ -59,7 +59,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Pola relacyjne" @@ -264,15 +264,6 @@ msgstr "" msgid "Some Value" msgstr "Jakaś wartość" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -339,9 +330,9 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" +msgid "Semicolon" msgstr "" #. module: base_import @@ -387,6 +378,13 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -569,8 +567,10 @@ msgid "Reload data to check changes." msgstr "Przełąduj dane, aby sprawdzić zmiany." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" msgstr "" #. module: base_import @@ -665,7 +665,7 @@ msgstr "Importuj" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "" @@ -679,7 +679,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -765,7 +765,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "(%d więcej)" @@ -824,7 +824,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "Wszystko wygląda poprawnie." @@ -843,7 +843,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "w wierszu %d" @@ -864,6 +864,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -943,6 +952,13 @@ msgstr "Najczęściej zadawane pytania" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -986,6 +1002,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -995,7 +1016,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1037,6 +1058,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1133,7 +1162,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "pomiędzy wierszami %d a %d" diff --git a/addons/base_import/i18n/pt.po b/addons/base_import/i18n/pt.po index d3e650f6889..15fe77042c5 100644 --- a/addons/base_import/i18n/pt.po +++ b/addons/base_import/i18n/pt.po @@ -7,19 +7,19 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-15 10:47+0000\n" -"Last-Translator: Andrei Talpa (multibase.pt) \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-21 12:42+0000\n" +"Last-Translator: Mike C. \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Buscar todos os valores possíveis" @@ -56,10 +56,12 @@ msgid "" "How to export/import different tables from an SQL \n" " application to OpenERP?" msgstr "" +"Como exportar/importar diferentes tabelas de uma \n" +"aplicação SQL para o OpenERP?" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Campos de relação" @@ -96,6 +98,8 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Para o país \n" +" Bélgica, pode usar um destes 3 métodos de importação:" #. module: base_import #. openerp-web @@ -166,7 +170,7 @@ msgstr "Não importar" #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Selecione o" #. module: base_import #. openerp-web @@ -264,15 +268,6 @@ msgstr "" msgid "Some Value" msgstr "Algum valor" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -339,9 +334,9 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" +msgid "Semicolon" msgstr "" #. module: base_import @@ -387,6 +382,13 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -569,9 +571,11 @@ msgid "Reload data to check changes." msgstr "" #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" -msgstr "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" #. module: base_import #. openerp-web @@ -665,7 +669,7 @@ msgstr "Importar" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "" @@ -679,7 +683,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -765,7 +769,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -824,7 +828,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "" @@ -843,7 +847,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "" @@ -864,6 +868,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -943,6 +956,13 @@ msgstr "Perguntas frequentes" msgid "company_3,Boum,True" msgstr "company_3,Boum,True" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -986,6 +1006,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -995,7 +1020,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1037,6 +1062,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1133,7 +1166,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" diff --git a/addons/base_import/i18n/pt_BR.po b/addons/base_import/i18n/pt_BR.po index 9ae32c74fdd..4715307788f 100644 --- a/addons/base_import/i18n/pt_BR.po +++ b/addons/base_import/i18n/pt_BR.po @@ -7,19 +7,19 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-28 20:27+0000\n" -"Last-Translator: Danimar Ribeiro \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-20 04:26+0000\n" +"Last-Translator: Thiago Tognoli \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-29 06:18+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Obter todos os valores possíveis" @@ -70,7 +70,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Campos Relacionais" @@ -209,6 +209,13 @@ msgid "" "\n" " See the following question." msgstr "" +"Observe que caso seu Arquivo CSV\n" +" tenha tabulações como separadores, o OpenERP não " +"irá\n" +" detectar as separações. Você irá precisar trocar o\n" +" a opção de formato de arquivo em seu programa de " +"planilha eletrônica. \n" +" Confira essa questão." #. module: base_import #. openerp-web @@ -299,17 +306,6 @@ msgstr "Id Externo,Nome,É uma Empresa" msgid "Some Value" msgstr "Algum Valor" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" -"O arquivo CSV a seguir mostra como importar\n" -"                         fornecedores e seus respectivos contatos" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -378,10 +374,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "Fornecedores e seus respectivos contatos" +msgid "Semicolon" +msgstr "Ponto e vírgula" #. module: base_import #. openerp-web @@ -426,6 +422,13 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "Tab" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -450,6 +453,8 @@ msgid "" "file to import. If you need a sample importable file, you\n" " can use the export tool to generate one." msgstr "" +"arquivo para importar. Se você precisa de um arquivo modelo, você\n" +" pode usar a ferramenta de exportação para gerar um." #. module: base_import #. openerp-web @@ -612,9 +617,11 @@ msgid "Reload data to check changes." msgstr "Recarregar os dados para verificar as alterações." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" -msgstr "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" #. module: base_import #. openerp-web @@ -666,6 +673,8 @@ msgid "" "The first row of the\n" " file contains the label of the column" msgstr "" +"A primeira linha do\n" +" arquivo contém os títulos das colunas" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states @@ -708,7 +717,7 @@ msgstr "Importar" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "Aqui estão os possíveis valores:" @@ -722,7 +731,7 @@ msgstr "O" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -736,7 +745,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid "dump of such a PostgreSQL database" -msgstr "" +msgstr "dump de um banco de dados PostgreSQL" #. module: base_import #. openerp-web @@ -785,7 +794,7 @@ msgstr "desconhecido" #: code:addons/base_import/static/src/xml/import.xml:317 #, python-format msgid "person_2,Laurence,False,company_1" -msgstr "" +msgstr "person_2,Laurence,False,company_1" #. module: base_import #. openerp-web @@ -810,7 +819,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "(mais %d)" @@ -869,7 +878,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "Tudo parece válido." @@ -888,7 +897,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "na linha %d" @@ -909,6 +918,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -988,6 +1006,13 @@ msgstr "Perguntas Freqüentes" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "Espaço" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -1031,6 +1056,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1040,7 +1070,7 @@ msgstr "Arquivo CSV para categorias" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "Campos normais" @@ -1082,6 +1112,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "Vírgula" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1178,7 +1216,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" @@ -1206,4 +1244,16 @@ msgstr "" #. module: base_import #: field:base_import.import,file:0 msgid "File" -msgstr "" +msgstr "Arquivo" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "O arquivo CSV a seguir mostra como importar\n" +#~ "                         fornecedores e seus respectivos contatos" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Fornecedores e seus respectivos contatos" diff --git a/addons/base_import/i18n/ro.po b/addons/base_import/i18n/ro.po index 40575fe96da..1a9198eb766 100644 --- a/addons/base_import/i18n/ro.po +++ b/addons/base_import/i18n/ro.po @@ -7,19 +7,19 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-22 18:19+0000\n" -"Last-Translator: Fekete Mihai \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-07 18:36+0000\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-01-23 06:03+0000\n" -"X-Generator: Launchpad (build 16441)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Obtineti toate valorile posibile" @@ -71,7 +71,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Campuri de Legatura" @@ -315,17 +315,6 @@ msgstr "ID Extern,Nume,Este o Companie" msgid "Some Value" msgstr "Niste Valori" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" -"Urmatorul fisier CSV va arata cum sa importati \n" -" furnizorii si contactele lor" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -418,10 +407,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "Furnizori si contactele lor" +msgid "Semicolon" +msgstr "Punct si virgula" #. module: base_import #. openerp-web @@ -488,6 +477,13 @@ msgstr "" "lista \n" " verticala > tabul Codare)." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "Tab" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -702,9 +698,11 @@ msgid "Reload data to check changes." msgstr "Reincarcati datele pentru a verifica modificarile." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" -msgstr "baza_import.teste.modele.car.doarcitire" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" #. module: base_import #. openerp-web @@ -818,7 +816,7 @@ msgstr "Import" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "Iata valorile posibile" @@ -832,7 +830,7 @@ msgstr "-l" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -935,7 +933,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "(%d mai mult)" @@ -1012,7 +1010,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "Totul pare valabil." @@ -1036,7 +1034,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "la randul %d" @@ -1059,6 +1057,15 @@ msgstr "" msgid "XXX/ID" msgstr "XXX/ID" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -1162,6 +1169,13 @@ msgstr "Intrebari Frecvente" msgid "company_3,Boum,True" msgstr "compania_3,Boum,Adevarat" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "Spatiu" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -1225,6 +1239,11 @@ msgstr "" " crea sau va modifica fiecare inregistrare \n" " in functie daca este noua sau nu." +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "baza_import.teste.modele.car.doarcitire" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1234,7 +1253,7 @@ msgstr "Fisier CSV pentru categorii" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "Campuri Obisnuite" @@ -1291,6 +1310,14 @@ msgstr "" " rand suplimentar care nu are alte informatii in \n" " campurile asociate comenzii." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "Virgula" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1403,7 +1430,7 @@ msgstr "Optiuni de Format Fisier..." #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "intre randurile %d si %d" @@ -1438,3 +1465,15 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "Fisier" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "Urmatorul fisier CSV va arata cum sa importati \n" +#~ " furnizorii si contactele lor" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Furnizori si contactele lor" diff --git a/addons/base_import/i18n/ru.po b/addons/base_import/i18n/ru.po index 1158eb73e90..1e4376968bd 100644 --- a/addons/base_import/i18n/ru.po +++ b/addons/base_import/i18n/ru.po @@ -7,19 +7,19 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-26 08:56+0000\n" "Last-Translator: Olga \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-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Получить все возможные значения" @@ -59,7 +59,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "" @@ -206,7 +206,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:15 #, python-format msgid "Validate" -msgstr "" +msgstr "Утвердить" #. module: base_import #. openerp-web @@ -264,15 +264,6 @@ msgstr "" msgid "Some Value" msgstr "" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -339,9 +330,9 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" +msgid "Semicolon" msgstr "" #. module: base_import @@ -387,6 +378,13 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -569,8 +567,10 @@ msgid "Reload data to check changes." msgstr "" #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" msgstr "" #. module: base_import @@ -665,7 +665,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "" @@ -679,7 +679,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -765,7 +765,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -824,7 +824,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "" @@ -843,7 +843,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "" @@ -864,6 +864,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -943,6 +952,13 @@ msgstr "Часто задаваемые вопросы" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -986,6 +1002,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -995,7 +1016,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1037,6 +1058,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1133,7 +1162,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" diff --git a/addons/base_import/i18n/sl.po b/addons/base_import/i18n/sl.po index 12f0ebbfdfb..d1dd53552e1 100644 --- a/addons/base_import/i18n/sl.po +++ b/addons/base_import/i18n/sl.po @@ -7,19 +7,19 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-12 12:02+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:36+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "Get all possible values" @@ -71,7 +71,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "Relation Fields" @@ -314,17 +314,6 @@ msgstr "External ID,Name,Is a Company" msgid "Some Value" msgstr "Some Value" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -415,10 +404,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "Suppliers and their respective contacts" +msgid "Semicolon" +msgstr "" #. module: base_import #. openerp-web @@ -485,6 +474,13 @@ msgstr "" " (in 'Save As' dialog box > click 'Tools' dropdown \n" " list > Encoding tab)." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -694,9 +690,11 @@ msgid "Reload data to check changes." msgstr "Reload data to check changes." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" -msgstr "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" +msgstr "" #. module: base_import #. openerp-web @@ -807,7 +805,7 @@ msgstr "Import" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "Here are the possible values:" @@ -821,7 +819,7 @@ msgstr "The" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -920,7 +918,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "(%d more)" @@ -996,7 +994,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "Everything seems valid." @@ -1020,7 +1018,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "at row %d" @@ -1043,6 +1041,15 @@ msgstr "" msgid "XXX/ID" msgstr "XXX/ID" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -1145,6 +1152,13 @@ msgstr "Frequently Asked Questions" msgid "company_3,Boum,True" msgstr "company_3,Boum,True" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -1210,6 +1224,11 @@ msgstr "" " take care of creating or modifying each record \n" " depending if it's new or not." +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1219,7 +1238,7 @@ msgstr "CSV file for categories" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "Normal Fields" @@ -1277,6 +1296,14 @@ msgstr "" "\n" " the fields relative to the order." +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1387,7 +1414,7 @@ msgstr "File Format Options…" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "between rows %d and %d" @@ -1422,3 +1449,15 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "File" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Suppliers and their respective contacts" diff --git a/addons/base_import/i18n/tr.po b/addons/base_import/i18n/tr.po index b12a93a9fd8..0ee5962578a 100644 --- a/addons/base_import/i18n/tr.po +++ b/addons/base_import/i18n/tr.po @@ -7,29 +7,29 @@ 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-02-06 10:49+0000\n" -"Last-Translator: Ahmet Altınışık \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-17 19:29+0000\n" +"Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" -msgstr "" +msgstr "Bütün olası değerleri al" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:71 #, python-format msgid "Need to import data from an other application?" -msgstr "" +msgstr "Başka bir uygulamadan veri içeaktarmanız mı gerekiyor?" #. module: base_import #. openerp-web @@ -56,13 +56,15 @@ msgid "" "How to export/import different tables from an SQL \n" " application to OpenERP?" msgstr "" +"Bir SQL uygulamasından değişik tablolar OpenERP ye nasıl \n" +" alınır/verilir?" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" -msgstr "" +msgstr "İlişki Alanları" #. module: base_import #. openerp-web @@ -72,6 +74,8 @@ msgid "" "Country/Database ID: the unique OpenERP ID for a \n" " record, defined by the ID postgresql column" msgstr "" +"Ülke/Veritabanı ID: bir kayıt için eşsiz OpenERP ID, \n" +" ID psotgresql sütunu tarafından tanımlanır" #. module: base_import #. openerp-web @@ -96,13 +100,15 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Belçika ülkesi için, \n" +" bu 3 içeaktarma yönteminden birini kullanabilirsiniz:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:303 #, python-format msgid "company_1,Bigees,True" -msgstr "company_1,Bigees,True" +msgstr "company_1,Bigees,Doğru" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o @@ -127,7 +133,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:206 #, python-format msgid "CSV file for Manufacturer, Retailer" -msgstr "" +msgstr "Üretici, Satıcı için CSV dosyası" #. module: base_import #. openerp-web @@ -139,20 +145,24 @@ msgid "" "\n" " data from a third party application." msgstr "" +"Bunu kullan \n" +" Ülke/Dış ID: Bir üçüncü partiden veri " +"içeaktaracağınızda \n" +" Dış Id kullanın." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:316 #, python-format msgid "person_1,Fabien,False,company_1" -msgstr "" +msgstr "person_1,Fabien,False,company_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/External ID" -msgstr "" +msgstr "XXX/DışID" #. module: base_import #. openerp-web @@ -166,7 +176,7 @@ msgstr "Aktarma" #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Bunu seç" #. module: base_import #. openerp-web @@ -187,7 +197,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:141 #, python-format msgid "Country: the name or code of the country" -msgstr "" +msgstr "Ülke: ülke adı ya da kodu" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child @@ -199,7 +209,7 @@ msgstr "base_import.tests.models.o2m.child" #: code:addons/base_import/static/src/xml/import.xml:239 #, python-format msgid "Can I import several times the same record?" -msgstr "" +msgstr "Aynı kaydı birçok sefer içeaktarabilir miyim?" #. module: base_import #. openerp-web @@ -213,7 +223,7 @@ msgstr "Onayla" #: code:addons/base_import/static/src/xml/import.xml:55 #, python-format msgid "Map your data to OpenERP" -msgstr "" +msgstr "Verilerinizi OpenERP ye eşleştirin" #. module: base_import #. openerp-web @@ -224,6 +234,9 @@ msgid "" " the easiest way when your data come from CSV files \n" " that have been created manually." msgstr "" +"Ülke Kullan: Bu \n" +" verilerinizin elle oluşturulan CSV dosyalarından \n" +" geldiği durumlarda en kolay yoldur." #. module: base_import #. openerp-web @@ -233,6 +246,8 @@ msgid "" "What's the difference between Database ID and \n" " External ID?" msgstr "" +"Veritabanı ID ile Dış ID arasındaki fark \n" +" nedir?" #. module: base_import #. openerp-web @@ -257,21 +272,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:302 #, python-format msgid "External ID,Name,Is a Company" -msgstr "" +msgstr "Dış ID,Adı, Bir Firmadır" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 msgid "Some Value" -msgstr "" - -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "" +msgstr "Birkaç Değer" #. module: base_import #. openerp-web @@ -339,10 +345,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "" +msgid "Semicolon" +msgstr "Noktalı Virgül" #. module: base_import #. openerp-web @@ -387,10 +393,17 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "Sekme" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" -msgstr "" +msgstr "Diğer Değişken" #. module: base_import #. openerp-web @@ -420,11 +433,13 @@ msgid "" "Country/Database \n" " ID: 21" msgstr "" +"Ülke/Veritabanı \n" +" ID: 21" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char msgid "base_import.tests.models.char" -msgstr "" +msgstr "base_import.tests.models.char" #. module: base_import #: help:base_import.import,file:0 @@ -454,7 +469,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:26 #, python-format msgid ".CSV" -msgstr "" +msgstr ".CSV" #. module: base_import #. openerp-web @@ -464,16 +479,18 @@ msgid "" ". The issue is\n" " usually an incorrect file encoding." msgstr "" +". Sorun\n" +" genellikle bir yanlış dosya şifrelemesidir." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required msgid "base_import.tests.models.m2o.required" -msgstr "" +msgstr "base_import.tests.models.m2o.required" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" -msgstr "" +msgstr "base_import.tests.models.char.noreadonly" #. module: base_import #. openerp-web @@ -501,32 +518,32 @@ msgstr "CSV dosyası:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_preview msgid "base_import.tests.models.preview" -msgstr "" +msgstr "base_import.tests.models.preview" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_required msgid "base_import.tests.models.char.required" -msgstr "" +msgstr "base_import.tests.models.char.required" #. module: base_import #: code:addons/base_import/models.py:112 #, python-format msgid "Database ID" -msgstr "" +msgstr "Veritabanı ID" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:313 #, python-format msgid "It will produce the following CSV file:" -msgstr "" +msgstr "Aşağıdaki CSV dosyasını oluşturacaktır:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:362 #, python-format msgid "Here is the start of the file we could not import:" -msgstr "" +msgstr "İçeaktaramadığımız dosyanın başı:" #. module: base_import #: field:base_import.import,file_type:0 @@ -548,7 +565,7 @@ msgstr "base_import.tests.models.o2m" #: code:addons/base_import/static/src/xml/import.xml:360 #, python-format msgid "Import preview failed due to:" -msgstr "" +msgstr "İçeaktarma hatasının nedeni<:" #. module: base_import #. openerp-web @@ -566,11 +583,13 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:35 #, python-format msgid "Reload data to check changes." -msgstr "" +msgstr "Değişiklikleri denetlemek için veriyi yeniden yükleyin." #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" msgstr "" #. module: base_import @@ -606,7 +625,7 @@ msgstr "" #: code:addons/base_import/models.py:264 #, python-format msgid "You must configure at least one field to import" -msgstr "" +msgstr "İçeaktarma yapabilmek için enaz bir alanı yapılandırmalısınız" #. module: base_import #. openerp-web @@ -623,37 +642,39 @@ msgid "" "The first row of the\n" " file contains the label of the column" msgstr "" +"Dosyanın ilk satırı\n" +" sütunun adını içerir" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states msgid "base_import.tests.models.char.states" -msgstr "" +msgstr "base_import.tests.models.char.states" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:7 #, python-format msgid "Import a CSV File" -msgstr "" +msgstr "Bir CSV Dosyası içeaktar" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:74 #, python-format msgid "Quoting:" -msgstr "" +msgstr "Çıkan:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related msgid "base_import.tests.models.m2o.required.related" -msgstr "" +msgstr "base_import.tests.models.m2o.required.related" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid ")." -msgstr "" +msgstr ")." #. module: base_import #. openerp-web @@ -665,26 +686,27 @@ msgstr "İçe Aktar" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" -msgstr "" +msgstr "Olası değerler:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "The" -msgstr "" +msgstr "Bu" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " "is incorrect" msgstr "" +"Dosyada tek bir satır bulunmuştur, bu ayırıcının yanlış olduğu anlamına gelir" #. module: base_import #. openerp-web @@ -698,7 +720,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:301 #, python-format msgid "This SQL command will create the following CSV file:" -msgstr "" +msgstr "Bu SQL komutu aşağıdaki CSV dosyasını oluşturacaktır:" #. module: base_import #. openerp-web @@ -708,6 +730,9 @@ msgid "" "The following CSV file shows how to import purchase \n" " orders with their respective purchase order lines:" msgstr "" +"Aşağıdaki CSV dosyası satınalma siparişlerini ilgili satınalma \n" +" sipariş kalemleri ile birlikte nasıl " +"içeaktarılacağını gösterir:" #. module: base_import #. openerp-web @@ -765,7 +790,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -812,6 +837,9 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"Önce bütün şirketleri ve şirketlerin \n" +" \"Dış ID\"lerini dışaaktaracağız. PSQL de, aşağıdaki " +"komutu yazın:" #. module: base_import #. openerp-web @@ -824,7 +852,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "" @@ -843,7 +871,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "" @@ -864,6 +892,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -943,6 +980,13 @@ msgstr "Sıkça Sorulan Sorular" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -986,6 +1030,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "base_import.tests.models.char.readonly" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -995,7 +1044,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1037,6 +1086,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1133,7 +1190,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" @@ -1162,3 +1219,15 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "" +#~ "Aşağıdaki CSV dosyası tedarikçi ve ilgili \n" +#~ " kişilerinin nasıl içeaktarılacağını gösterir" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "Tedarikçiler ve ilgili Kişileri" diff --git a/addons/base_import/i18n/zh_CN.po b/addons/base_import/i18n/zh_CN.po index 871561305e8..d4c985affea 100644 --- a/addons/base_import/i18n/zh_CN.po +++ b/addons/base_import/i18n/zh_CN.po @@ -7,19 +7,19 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-29 13:45+0000\n" "Last-Translator: Roc Wu \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:420 +#: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" msgstr "获取所有可能的值" @@ -65,7 +65,7 @@ msgstr "从SQL中如何导出/导入不同的表" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:310 +#: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" msgstr "关联字段" @@ -290,15 +290,6 @@ msgstr "" msgid "Some Value" msgstr "一些值" -#. module: base_import -#. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:231 -#, python-format -msgid "" -"The following CSV file shows how to import \n" -" suppliers and their respective contacts" -msgstr "下面是文件是CSV的导入说明" - #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:109 @@ -367,10 +358,10 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/xml/import.xml:233 +#: code:addons/base_import/static/src/js/import.js:174 #, python-format -msgid "Suppliers and their respective contacts" -msgstr "供应商和他们各自的联系人" +msgid "Semicolon" +msgstr "" #. module: base_import #. openerp-web @@ -415,6 +406,13 @@ msgid "" " list > Encoding tab)." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:175 +#, python-format +msgid "Tab" +msgstr "" + #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" @@ -603,8 +601,10 @@ msgid "Reload data to check changes." msgstr "刷新数据,以检查变化。" #. module: base_import -#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly -msgid "base_import.tests.models.char.readonly" +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:233 +#, python-format +msgid "Customers and their respective contacts" msgstr "" #. module: base_import @@ -704,7 +704,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:407 +#: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" msgstr "" @@ -718,7 +718,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:227 +#: code:addons/base_import/static/src/js/import.js:248 #, python-format msgid "" "A single column was found in the file, this often means the file separator " @@ -804,7 +804,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:396 +#: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" msgstr "" @@ -863,7 +863,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:373 +#: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." msgstr "" @@ -882,7 +882,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:390 +#: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" msgstr "" @@ -903,6 +903,15 @@ msgstr "" msgid "XXX/ID" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/xml/import.xml:231 +#, python-format +msgid "" +"The following CSV file shows how to import \n" +" customers and their respective contacts" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:275 @@ -982,6 +991,13 @@ msgstr "" msgid "company_3,Boum,True" msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:176 +#, python-format +msgid "Space" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:249 @@ -1025,6 +1041,11 @@ msgid "" " depending if it's new or not." msgstr "" +#. module: base_import +#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly +msgid "base_import.tests.models.char.readonly" +msgstr "" + #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 @@ -1034,7 +1055,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:309 +#: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" msgstr "" @@ -1076,6 +1097,14 @@ msgid "" " the fields relative to the order." msgstr "" +#. module: base_import +#. openerp-web +#: code:addons/base_import/static/src/js/import.js:173 +#: code:addons/base_import/static/src/js/import.js:184 +#, python-format +msgid "Comma" +msgstr "" + #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" @@ -1172,7 +1201,7 @@ msgstr "" #. module: base_import #. openerp-web -#: code:addons/base_import/static/src/js/import.js:392 +#: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" msgstr "" @@ -1201,3 +1230,13 @@ msgstr "" #: field:base_import.import,file:0 msgid "File" msgstr "" + +#, python-format +#~ msgid "Suppliers and their respective contacts" +#~ msgstr "供应商和他们各自的联系人" + +#, python-format +#~ msgid "" +#~ "The following CSV file shows how to import \n" +#~ " suppliers and their respective contacts" +#~ msgstr "下面是文件是CSV的导入说明" diff --git a/addons/base_import/static/csv/o2m_customers_contacts.csv b/addons/base_import/static/csv/o2m_customers_contacts.csv new file mode 100644 index 00000000000..9a2411b2bee --- /dev/null +++ b/addons/base_import/static/csv/o2m_customers_contacts.csv @@ -0,0 +1,9 @@ +Name,Is a company,Related company,Address type,Customer,Supplier,Street,ZIP,City,State,Country +Aurora Shelves,1,,,1,0,25 Pacific Road,95101,San José,CA,United States +Roger Martins,0,Aurora Shelves,Invoice,1,0,27 Pacific Road,95102,San José,CA,United States +House Sales Direct,1,,,1,0,104 Saint Mary Avenue,94059,Redwood,CA,United States +Yvan Holiday,0,House Sales Direct,Default,1,0,104 Saint Mary Avenue,94060,Redwood,CA,United States +Jack Unsworth,0,House Sales Direct,Invoice,1,0,227 Jackson Road,94061,Redwood,CA,United States +Michael Mason,0,,,1,0,16 5th Avenue,94104,San Francisco,CA,United States +International Wood,1,,,1,0,748 White House Boulevard,20004,Washington,DC,United States +Sharon Pecker,0,International Wood,Invoice,1,0,755 White House Boulevard,20005,Washington,DC,United States diff --git a/addons/base_import/static/csv/o2m_suppliers_contacts.csv b/addons/base_import/static/csv/o2m_suppliers_contacts.csv deleted file mode 100644 index 6c7be9037b8..00000000000 --- a/addons/base_import/static/csv/o2m_suppliers_contacts.csv +++ /dev/null @@ -1,8 +0,0 @@ -Name,Address type,Street,City,Country,Tags,Supplier,Customer,Is a company,Companies that refers to partner / Parent company -Wood y Wood Pecker,,"Snow Street, 25",Kainuu,Finland,Supplier,1,0,1, -Roger Pecker,Default,"Snow Street, 27",Kainuu,Finland,Supplier,1,0,0,Wood y Wood Pecker -Sharon Pecker,Delivery,"Snow Street, 28",Kainuu,Finland,Supplier,1,0,0,Wood y Wood Pecker -Thomas Pecker,Contact,"Snow Street, 27",Kainuu,Finland,Supplier,1,0,0,Wood y Wood Pecker -Vicking Direct,,"Atonium Street, 45a",Brussels,Belgium,Supplier,1,0,1, -Yvan Holiday,Invoice,"Atonium Street, 45b",Brussels,Belgium,Supplier,1,0,0,Vicking Direct -Jack Unsworth,Contact,"Atonium Street, 45a",Brussels,Belgium,Supplier,1,0,0,Vicking Direct diff --git a/addons/base_import/static/lib/select2/README.md b/addons/base_import/static/lib/select2/README.md old mode 100755 new mode 100644 diff --git a/addons/base_import/static/lib/select2/select2.css b/addons/base_import/static/lib/select2/select2.css old mode 100755 new mode 100644 diff --git a/addons/base_import/static/lib/select2/select2.js b/addons/base_import/static/lib/select2/select2.js old mode 100755 new mode 100644 diff --git a/addons/base_import/static/lib/select2/spinner.gif b/addons/base_import/static/lib/select2/spinner.gif old mode 100755 new mode 100644 diff --git a/addons/base_import/static/src/xml/import.xml b/addons/base_import/static/src/xml/import.xml index c8b2b2c63dd..97bf3e66f7a 100644 --- a/addons/base_import/static/src/xml/import.xml +++ b/addons/base_import/static/src/xml/import.xml @@ -229,8 +229,8 @@ orders with their respective purchase order lines:

Purchase orders with their respective purchase order lines

The following CSV file shows how to import - suppliers and their respective contacts

- Suppliers and their respective contacts + customers and their respective contacts

+ Customers and their respective contacts diff --git a/addons/base_report_designer/base_report_designer.py b/addons/base_report_designer/base_report_designer.py index 825d1d29c4c..180a534b07f 100644 --- a/addons/base_report_designer/base_report_designer.py +++ b/addons/base_report_designer/base_report_designer.py @@ -19,10 +19,11 @@ # ############################################################################## +import base64 +import openerp.modules.registry from openerp.osv import osv from openerp_sxw2rml import sxw2rml from StringIO import StringIO -import base64 from openerp import pooler from openerp import addons @@ -55,7 +56,12 @@ class report_xml(osv.osv): 'report_sxw_content': base64.decodestring(file_sxw), 'report_rml_content': str(sxw2rml(sxwval, xsl=fp.read())), }) + + # FIXME: this should be moved to an override of the ir.actions.report_xml.create() method + cr.commit() pool.get('ir.actions.report.xml').register_all(cr) + openerp.modules.registry.RegistryManager.signal_registry_change(cr.dbname) + return True def report_get(self, cr, uid, report_id, context=None): diff --git a/addons/base_report_designer/i18n/ar.po b/addons/base_report_designer/i18n/ar.po index 5b3f36a7cfe..41ae70789c5 100644 --- a/addons/base_report_designer/i18n/ar.po +++ b/addons/base_report_designer/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/base_report_designer.pot b/addons/base_report_designer/i18n/base_report_designer.pot index ded37bedeb8..58e0deee575 100644 --- a/addons/base_report_designer/i18n/base_report_designer.pot +++ b/addons/base_report_designer/i18n/base_report_designer.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_report_designer/i18n/bg.po b/addons/base_report_designer/i18n/bg.po index 9b7d80f0c46..174b9b8e5b2 100644 --- a/addons/base_report_designer/i18n/bg.po +++ b/addons/base_report_designer/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/bs.po b/addons/base_report_designer/i18n/bs.po index afaba417a2a..7d3b41b826d 100644 --- a/addons/base_report_designer/i18n/bs.po +++ b/addons/base_report_designer/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ca.po b/addons/base_report_designer/i18n/ca.po index ff841cfd976..e03a824df83 100644 --- a/addons/base_report_designer/i18n/ca.po +++ b/addons/base_report_designer/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/cs.po b/addons/base_report_designer/i18n/cs.po index 361a6394ba2..afe0882a608 100644 --- a/addons/base_report_designer/i18n/cs.po +++ b/addons/base_report_designer/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/da.po b/addons/base_report_designer/i18n/da.po index a90945e6f69..3c09b5b96ba 100644 --- a/addons/base_report_designer/i18n/da.po +++ b/addons/base_report_designer/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/de.po b/addons/base_report_designer/i18n/de.po index 3bb2854d2dc..a6fa5eeeeb0 100644 --- a/addons/base_report_designer/i18n/de.po +++ b/addons/base_report_designer/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/el.po b/addons/base_report_designer/i18n/el.po index bbcbcb7ad09..35481e958ab 100644 --- a/addons/base_report_designer/i18n/el.po +++ b/addons/base_report_designer/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/en_GB.po b/addons/base_report_designer/i18n/en_GB.po index c26b561d201..c3aa8ed6f52 100644 --- a/addons/base_report_designer/i18n/en_GB.po +++ b/addons/base_report_designer/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-07 20:24+0000\n" "Last-Translator: mrx5682 \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-08 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es.po b/addons/base_report_designer/i18n/es.po index d1e29d42e35..596007be30b 100644 --- a/addons/base_report_designer/i18n/es.po +++ b/addons/base_report_designer/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_AR.po b/addons/base_report_designer/i18n/es_AR.po index 70be4c8cb2a..52f6153d9ae 100644 --- a/addons/base_report_designer/i18n/es_AR.po +++ b/addons/base_report_designer/i18n/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Argentina) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_CR.po b/addons/base_report_designer/i18n/es_CR.po index 5477fc0e86f..e5d3d47e9ec 100644 --- a/addons/base_report_designer/i18n/es_CR.po +++ b/addons/base_report_designer/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_EC.po b/addons/base_report_designer/i18n/es_EC.po index 17931dcae2d..6ff43fb29f7 100644 --- a/addons/base_report_designer/i18n/es_EC.po +++ b/addons/base_report_designer/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_PY.po b/addons/base_report_designer/i18n/es_PY.po index 949dff05031..6203de62520 100644 --- a/addons/base_report_designer/i18n/es_PY.po +++ b/addons/base_report_designer/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/et.po b/addons/base_report_designer/i18n/et.po index 17ee2ea5d66..55fa82dec18 100644 --- a/addons/base_report_designer/i18n/et.po +++ b/addons/base_report_designer/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fa.po b/addons/base_report_designer/i18n/fa.po index d588d79a51d..0e43b57b3bb 100644 --- a/addons/base_report_designer/i18n/fa.po +++ b/addons/base_report_designer/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fi.po b/addons/base_report_designer/i18n/fi.po index 03b8fbab5cc..11f94693698 100644 --- a/addons/base_report_designer/i18n/fi.po +++ b/addons/base_report_designer/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fr.po b/addons/base_report_designer/i18n/fr.po index 4a7d6d38d11..2ce99195c43 100644 --- a/addons/base_report_designer/i18n/fr.po +++ b/addons/base_report_designer/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/gl.po b/addons/base_report_designer/i18n/gl.po index 19af4b5dbf5..1eae363c7c3 100644 --- a/addons/base_report_designer/i18n/gl.po +++ b/addons/base_report_designer/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hr.po b/addons/base_report_designer/i18n/hr.po index abc8bafb539..099cb46b706 100644 --- a/addons/base_report_designer/i18n/hr.po +++ b/addons/base_report_designer/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hu.po b/addons/base_report_designer/i18n/hu.po index c599ea806e4..bee4eb9cb6a 100644 --- a/addons/base_report_designer/i18n/hu.po +++ b/addons/base_report_designer/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-14 11:40+0000\n" +"Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw @@ -25,7 +25,7 @@ msgstr "base.report.sxw" #. module: base_report_designer #: view:base_report_designer.installer:0 msgid "OpenERP Report Designer Configuration" -msgstr "" +msgstr "OpenERP Jelentéstervező beállítása" #. module: base_report_designer #: view:base_report_designer.installer:0 @@ -33,6 +33,8 @@ msgid "" "This plug-in allows you to create/modify OpenERP Reports into OpenOffice " "Writer." msgstr "" +"Ez a plug-in lehetővé teszi az OpenERP jelentések létrehozását/módosítását " +"az OpenOffice Writer keresztül." #. module: base_report_designer #: view:base.report.sxw:0 @@ -78,7 +80,7 @@ msgstr "RML jelentés" #. module: base_report_designer #: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard msgid "Report Designer" -msgstr "" +msgstr "Jelentéstervező" #. module: base_report_designer #: field:base_report_designer.installer,name:0 @@ -89,13 +91,13 @@ msgstr "Fájl neve" #: view:base.report.file.sxw:0 #: view:base.report.sxw:0 msgid "Get a report" -msgstr "" +msgstr "Igényeljen egy jelentést" #. module: base_report_designer #: view:base_report_designer.installer:0 #: model:ir.actions.act_window,name:base_report_designer.action_report_designer_wizard msgid "OpenERP Report Designer" -msgstr "" +msgstr "OpenERP jelentéstervező" #. module: base_report_designer #: view:base.report.sxw:0 @@ -113,6 +115,8 @@ msgid "" "OpenObject Report Designer plug-in file. Save as this file and install this " "plug-in in OpenOffice." msgstr "" +"OpenObject jelentéstervező plug-in fájl. Mentse másképpen ezt a fájlt és " +"telepítse ezt az OpenOffice plig-in fájlt.." #. module: base_report_designer #: view:base.report.rml.save:0 @@ -143,11 +147,15 @@ msgid "" "Don't forget to install the OpenERP SA OpenOffice package to modify it.\n" "Once it is modified, re-upload it in OpenERP using this wizard." msgstr "" +"Ez a kívánt jelentésének a sablonja.\n" +"Mentse mint egy .SXW fájl és nyissa meg az OpenOffice szerkesztővel.\n" +"Ne felejtse el telepíteni az OpenERP SA OpenOffice csomagot a módosításhoz.\n" +"Módosítás után, ismét töltse fel az OpenERP varázsló használatával." #. module: base_report_designer #: model:ir.actions.act_window,name:base_report_designer.action_view_base_report_sxw msgid "Base Report sxw" -msgstr "" +msgstr "Alapértelmezett jelentés SXW" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_file_sxw @@ -157,12 +165,12 @@ msgstr "base.report.file.sxw" #. module: base_report_designer #: field:base_report_designer.installer,plugin_file:0 msgid "OpenObject Report Designer Plug-in" -msgstr "" +msgstr "OpenObject jelentéstervező Plug-in" #. module: base_report_designer #: model:ir.actions.act_window,name:base_report_designer.action_report_designer_installer msgid "OpenERP Report Designer Installation" -msgstr "" +msgstr "OpenERP jelentéstervező telepítés" #. module: base_report_designer #: view:base.report.sxw:0 @@ -172,12 +180,12 @@ msgstr "Mégsem" #. module: base_report_designer #: view:base.report.sxw:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_ir_actions_report_xml msgid "ir.actions.report.xml" -msgstr "" +msgstr "ir.actions.report.xml" #. module: base_report_designer #: view:base.report.sxw:0 diff --git a/addons/base_report_designer/i18n/id.po b/addons/base_report_designer/i18n/id.po index 8fe06d57c6a..643aef757c8 100644 --- a/addons/base_report_designer/i18n/id.po +++ b/addons/base_report_designer/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/it.po b/addons/base_report_designer/i18n/it.po index e79e36b2a97..e2d132a69a3 100644 --- a/addons/base_report_designer/i18n/it.po +++ b/addons/base_report_designer/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ja.po b/addons/base_report_designer/i18n/ja.po index 8a4895e255a..ce73acd3b67 100644 --- a/addons/base_report_designer/i18n/ja.po +++ b/addons/base_report_designer/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ko.po b/addons/base_report_designer/i18n/ko.po index b4d88235599..e6143f179cb 100644 --- a/addons/base_report_designer/i18n/ko.po +++ b/addons/base_report_designer/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/lt.po b/addons/base_report_designer/i18n/lt.po index aba5a3ce5cb..636880b6683 100644 --- a/addons/base_report_designer/i18n/lt.po +++ b/addons/base_report_designer/i18n/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/mk.po b/addons/base_report_designer/i18n/mk.po new file mode 100644 index 00000000000..ae8e54aadfd --- /dev/null +++ b/addons/base_report_designer/i18n/mk.po @@ -0,0 +1,196 @@ +# 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. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-29 09:25+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" + +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_base_report_sxw +msgid "base.report.sxw" +msgstr "base.report.sxw" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +msgid "OpenERP Report Designer Configuration" +msgstr "Конфигурација за дизајнирање на OpenERP извештај" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +msgid "" +"This plug-in allows you to create/modify OpenERP Reports into OpenOffice " +"Writer." +msgstr "" +"Овој приклучок ви овозможува да креирате/менувате OpenERP извештаи во " +"OpenOffice Writer." + +#. module: base_report_designer +#: view:base.report.sxw:0 +msgid "Upload the modified report" +msgstr "Качи изменет извештај" + +#. module: base_report_designer +#: view:base.report.file.sxw:0 +msgid "The .SXW report" +msgstr "The .SXW извештај" + +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_base_report_designer_installer +msgid "base_report_designer.installer" +msgstr "base_report_designer.installer" + +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_base_report_rml_save +msgid "base.report.rml.save" +msgstr "base.report.rml.save" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +msgid "Configure" +msgstr "Конфигурирај" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +msgid "title" +msgstr "наслов" + +#. module: base_report_designer +#: field:base.report.file.sxw,report_id:0 +#: field:base.report.sxw,report_id:0 +msgid "Report" +msgstr "Извештај" + +#. module: base_report_designer +#: view:base.report.rml.save:0 +msgid "The RML Report" +msgstr "The RML Извештај" + +#. module: base_report_designer +#: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard +msgid "Report Designer" +msgstr "Дизајнер на извештај" + +#. module: base_report_designer +#: field:base_report_designer.installer,name:0 +msgid "File name" +msgstr "Име на датотеката" + +#. module: base_report_designer +#: view:base.report.file.sxw:0 +#: view:base.report.sxw:0 +msgid "Get a report" +msgstr "Добиј извештај" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +#: model:ir.actions.act_window,name:base_report_designer.action_report_designer_wizard +msgid "OpenERP Report Designer" +msgstr "Дизајнер на OpenERP извештај" + +#. module: base_report_designer +#: view:base.report.sxw:0 +msgid "Continue" +msgstr "Продолжи" + +#. module: base_report_designer +#: field:base.report.rml.save,file_rml:0 +msgid "Save As" +msgstr "Зачувај како" + +#. module: base_report_designer +#: help:base_report_designer.installer,plugin_file:0 +msgid "" +"OpenObject Report Designer plug-in file. Save as this file and install this " +"plug-in in OpenOffice." +msgstr "" +"Датотека за додатокот OpenObject Report Designer. Зачувајте ја оваа датотека " +"и инсталирајте го додатокот во OpenOffice." + +#. module: base_report_designer +#: view:base.report.rml.save:0 +msgid "Save RML FIle" +msgstr "Зачувај RML фајл" + +#. module: base_report_designer +#: field:base.report.file.sxw,file_sxw:0 +#: field:base.report.file.sxw,file_sxw_upload:0 +msgid "Your .SXW file" +msgstr "Вашиот .SXW фајл" + +#. module: base_report_designer +#: view:base_report_designer.installer:0 +msgid "Installation and Configuration Steps" +msgstr "Чекори за инсталација и конфигурација" + +#. module: base_report_designer +#: field:base_report_designer.installer,description:0 +msgid "Description" +msgstr "Опис" + +#. module: base_report_designer +#: view:base.report.file.sxw:0 +msgid "" +"This is the template of your requested report.\n" +"Save it as a .SXW file and open it with OpenOffice.\n" +"Don't forget to install the OpenERP SA OpenOffice package to modify it.\n" +"Once it is modified, re-upload it in OpenERP using this wizard." +msgstr "" +"Ова е урнек за бараниот извештај.\n" +"Зачувајте го како .SXW фајл и отворете го со OpenOffice.\n" +"Не заборавајте да го инсталирате OpenERP SA OpenOffice пакетот за да го " +"измените.\n" +"Откако е изменет, качете го повторно во OpenERP со користење на овој " +"волшебник." + +#. module: base_report_designer +#: model:ir.actions.act_window,name:base_report_designer.action_view_base_report_sxw +msgid "Base Report sxw" +msgstr "Основен извештај sxw" + +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_base_report_file_sxw +msgid "base.report.file.sxw" +msgstr "base.report.file.sxw" + +#. module: base_report_designer +#: field:base_report_designer.installer,plugin_file:0 +msgid "OpenObject Report Designer Plug-in" +msgstr "Приклучок за дизајнер на OpenObject извештај" + +#. module: base_report_designer +#: model:ir.actions.act_window,name:base_report_designer.action_report_designer_installer +msgid "OpenERP Report Designer Installation" +msgstr "Инсталација на Дизајнер за OpenERP извештај" + +#. module: base_report_designer +#: view:base.report.sxw:0 +msgid "Cancel" +msgstr "Откажи" + +#. module: base_report_designer +#: view:base.report.sxw:0 +msgid "or" +msgstr "или" + +#. module: base_report_designer +#: model:ir.model,name:base_report_designer.model_ir_actions_report_xml +msgid "ir.actions.report.xml" +msgstr "ir.actions.report.xml" + +#. module: base_report_designer +#: view:base.report.sxw:0 +msgid "Select your report" +msgstr "Селектирајте го вашиот извештај" diff --git a/addons/base_report_designer/i18n/mn.po b/addons/base_report_designer/i18n/mn.po index 788c0de00e3..b9d816cbfe7 100644 --- a/addons/base_report_designer/i18n/mn.po +++ b/addons/base_report_designer/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-19 06:21+0000\n" "Last-Translator: Мөнхөө \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-02-20 05:28+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nb.po b/addons/base_report_designer/i18n/nb.po index 5f630c9fc24..073610c6323 100644 --- a/addons/base_report_designer/i18n/nb.po +++ b/addons/base_report_designer/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl.po b/addons/base_report_designer/i18n/nl.po index 4ebe9647c62..ac16669b0c4 100644 --- a/addons/base_report_designer/i18n/nl.po +++ b/addons/base_report_designer/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl_BE.po b/addons/base_report_designer/i18n/nl_BE.po index dd3b3480e57..fc23729b451 100644 --- a/addons/base_report_designer/i18n/nl_BE.po +++ b/addons/base_report_designer/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pl.po b/addons/base_report_designer/i18n/pl.po index a20557bc6ba..a5f8f20c41c 100644 --- a/addons/base_report_designer/i18n/pl.po +++ b/addons/base_report_designer/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt.po b/addons/base_report_designer/i18n/pt.po index 07ff3619cab..616a17df896 100644 --- a/addons/base_report_designer/i18n/pt.po +++ b/addons/base_report_designer/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt_BR.po b/addons/base_report_designer/i18n/pt_BR.po index efad036ff71..91b9f6dfc2c 100644 --- a/addons/base_report_designer/i18n/pt_BR.po +++ b/addons/base_report_designer/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ro.po b/addons/base_report_designer/i18n/ro.po index f11adb2ea87..d4453c51a39 100644 --- a/addons/base_report_designer/i18n/ro.po +++ b/addons/base_report_designer/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-20 09:14+0000\n" -"Last-Translator: Fekete Mihai \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-01-21 05:27+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ru.po b/addons/base_report_designer/i18n/ru.po index 430c7d01fc5..1e50de00fc4 100644 --- a/addons/base_report_designer/i18n/ru.po +++ b/addons/base_report_designer/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-17 10:20+0000\n" "Last-Translator: Denis Karataev \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sk.po b/addons/base_report_designer/i18n/sk.po index a31c7f7d0c7..c9be0ac13f1 100644 --- a/addons/base_report_designer/i18n/sk.po +++ b/addons/base_report_designer/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sl.po b/addons/base_report_designer/i18n/sl.po index 45375ee222a..83f4fb25f74 100644 --- a/addons/base_report_designer/i18n/sl.po +++ b/addons/base_report_designer/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sq.po b/addons/base_report_designer/i18n/sq.po index 8221dea81b2..b9ff6fef3ff 100644 --- a/addons/base_report_designer/i18n/sq.po +++ b/addons/base_report_designer/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr.po b/addons/base_report_designer/i18n/sr.po index 17f22ccb9f2..4c095e30eec 100644 --- a/addons/base_report_designer/i18n/sr.po +++ b/addons/base_report_designer/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr@latin.po b/addons/base_report_designer/i18n/sr@latin.po index 951d3320c99..5af24b0db47 100644 --- a/addons/base_report_designer/i18n/sr@latin.po +++ b/addons/base_report_designer/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sv.po b/addons/base_report_designer/i18n/sv.po index 1ddcfc6b0c5..4011b1d1e62 100644 --- a/addons/base_report_designer/i18n/sv.po +++ b/addons/base_report_designer/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-17 23:56+0000\n" "Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tlh.po b/addons/base_report_designer/i18n/tlh.po index 03d58ab8791..416f48f9100 100644 --- a/addons/base_report_designer/i18n/tlh.po +++ b/addons/base_report_designer/i18n/tlh.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Klingon \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tr.po b/addons/base_report_designer/i18n/tr.po index 15a1de3f1cc..6105d6fd496 100644 --- a/addons/base_report_designer/i18n/tr.po +++ b/addons/base_report_designer/i18n/tr.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-08 14:11+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-01 12:20+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-09 05:29+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw msgid "base.report.sxw" -msgstr "Temel.rapor.sxw" +msgstr "temel.rapor.sxw" #. module: base_report_designer #: view:base_report_designer.installer:0 @@ -33,8 +33,8 @@ msgid "" "This plug-in allows you to create/modify OpenERP Reports into OpenOffice " "Writer." msgstr "" -"Bu eklenti OpenERP raporlarını OpenOffice writer üzerinden oluşturup " -"değiştirmeye olanak verir." +"Bu eklenti OpenERP raporlarını OpenOffice writer üzerinden " +"oluşturmaya/değiştirmeye olanak verir." #. module: base_report_designer #: view:base.report.sxw:0 @@ -80,7 +80,7 @@ msgstr "RML Raporu" #. module: base_report_designer #: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard msgid "Report Designer" -msgstr "Rapor Tasarımcısı" +msgstr "Rapor Tasarımı" #. module: base_report_designer #: field:base_report_designer.installer,name:0 diff --git a/addons/base_report_designer/i18n/uk.po b/addons/base_report_designer/i18n/uk.po index 607ed6c2960..ccd62999baf 100644 --- a/addons/base_report_designer/i18n/uk.po +++ b/addons/base_report_designer/i18n/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/vi.po b/addons/base_report_designer/i18n/vi.po index c7f93f4a2ad..d4080b053a1 100644 --- a/addons/base_report_designer/i18n/vi.po +++ b/addons/base_report_designer/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po index e0290b9e8d5..763640b9a45 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_TW.po b/addons/base_report_designer/i18n/zh_TW.po index 346071c3e33..a1087ebc2cb 100644 --- a/addons/base_report_designer/i18n/zh_TW.po +++ b/addons/base_report_designer/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/openerp_sxw2rml/normalized_odt2rml.xsl b/addons/base_report_designer/openerp_sxw2rml/normalized_odt2rml.xsl index 50ffb3d81be..9f9e5050d69 100644 --- a/addons/base_report_designer/openerp_sxw2rml/normalized_odt2rml.xsl +++ b/addons/base_report_designer/openerp_sxw2rml/normalized_odt2rml.xsl @@ -414,7 +414,7 @@ - . + diff --git a/addons/base_report_designer/openerp_sxw2rml/normalized_oo2rml.xsl b/addons/base_report_designer/openerp_sxw2rml/normalized_oo2rml.xsl index 66ef0b5b53c..ae68ae1ed1b 100644 --- a/addons/base_report_designer/openerp_sxw2rml/normalized_oo2rml.xsl +++ b/addons/base_report_designer/openerp_sxw2rml/normalized_oo2rml.xsl @@ -414,7 +414,7 @@ - . + diff --git a/addons/base_report_designer/openerp_sxw2rml/openerp_sxw2rml.py b/addons/base_report_designer/openerp_sxw2rml/openerp_sxw2rml.py old mode 100644 new mode 100755 diff --git a/addons/base_report_designer/plugin/openerp_report_designer.zip b/addons/base_report_designer/plugin/openerp_report_designer.zip index 855fef319fb..238f9d19671 100644 Binary files a/addons/base_report_designer/plugin/openerp_report_designer.zip and b/addons/base_report_designer/plugin/openerp_report_designer.zip differ diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/About.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/About.py index 43b452b82e2..9fb6cd11219 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/About.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/About.py @@ -1,49 +1,25 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno from com.sun.star.task import XJobExecutor diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/AddAttachment.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/AddAttachment.py index ba69174ffc6..2dce1750e34 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/AddAttachment.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/AddAttachment.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com +# This library 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 +# Lesser General Public License for more details. # -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # -# This library 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 -# Lesser General Public License for more details. +# See: http://www.gnu.org/licenses/lgpl.html # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html -# -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 os import uno import unohelper diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Change.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Change.py index b85a9d9bb06..e0b66780e8b 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Change.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Change.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import string import unohelper @@ -72,7 +49,7 @@ class Change( unohelper.Base, XJobExecutor ): 'XML-RPC': 'http://', 'XML-RPC secure': 'https://', 'NET-RPC': 'socket://', - } + } host=port=protocol='' if docinfo.getUserFieldValue(0): m = re.match('^(http[s]?://|socket://)([\w.\-]+):(\d{1,5})$', docinfo.getUserFieldValue(0) or '') @@ -80,7 +57,7 @@ class Change( unohelper.Base, XJobExecutor ): port = m.group(3) protocol = m.group(1) if protocol: - for (key, value) in self.protocol.iteritems(): + for (key, value) in self.protocol.iteritems(): if value==protocol: protocol=key break @@ -102,7 +79,7 @@ class Change( unohelper.Base, XJobExecutor ): self.win.addButton( 'btnNext', -2, -5, 30, 15, 'Next', actionListenerProc = self.btnNext_clicked ) self.win.addButton( 'btnCancel', -2 - 30 - 5 ,-5, 30, 15, 'Cancel', actionListenerProc = self.btnCancel_clicked ) - + for i in self.protocol.keys(): self.lstProtocol.addItem(i,self.lstProtocol.getItemCount() ) self.win.doModalDialog( "lstProtocol", protocol) @@ -110,27 +87,27 @@ class Change( unohelper.Base, XJobExecutor ): def btnNext_clicked(self, oActionEvent): global url aVal='' - #aVal= Fetature used + #aVal= Fetature used try: url = self.protocol[self.win.getListBoxSelectedItem("lstProtocol")]+self.win.getEditText("txtHost")+":"+self.win.getEditText("txtPort") self.sock=RPCSession(url) desktop=getDesktop() doc = desktop.getCurrentComponent() - docinfo=doc.getDocumentInfo() + docinfo=doc.getDocumentInfo() docinfo.setUserFieldValue(0,url) res=self.sock.listdb() self.win.endExecute() ServerParameter(aVal,url) except : - import traceback,sys + import traceback,sys info = reduce(lambda x, y: x+y, traceback.format_exception(sys.exc_type, sys.exc_value, sys.exc_traceback)) - self.logobj.log_write('ServerParameter', LOG_ERROR, info) + self.logobj.log_write('ServerParameter', LOG_ERROR, info) ErrorDialog("Connection to server is fail. Please check your Server Parameter.", "", "Error!") self.win.endExecute() - + def btnCancel_clicked(self,oActionEvent): self.win.endExecute() - + if __name__<>"package" and __name__=="__main__": Change(None) diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertBracesToField.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertBracesToField.py index c1fa8b22a85..17cc25687b1 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertBracesToField.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertBracesToField.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com +# This library 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 +# Lesser General Public License for more details. # -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # -# This library 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 -# Lesser General Public License for more details. +# See: http://www.gnu.org/licenses/lgpl.html # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html -# -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import unohelper import string diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertFieldsToBraces.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertFieldsToBraces.py index ffa88a8cd06..b8abcb1dc6c 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertFieldsToBraces.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ConvertFieldsToBraces.py @@ -1,49 +1,25 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import unohelper @@ -81,7 +57,7 @@ class ConvertFieldsToBraces( unohelper.Base, XJobExecutor ): if __name__<>"package": ConvertFieldsToBraces(None) else: - g_ImplementationHelper.addImplementation( ConvertFieldsToBraces, "org.openoffice.openerp.report.convertFB", ("com.sun.star.task.Job",),) + g_ImplementationHelper.addImplementation( ConvertFieldsToBraces, "org.openoffice.openerp.report.convertFB", ("com.sun.star.task.Job",),) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ExportToRML.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ExportToRML.py index d92b2aec14f..a12becdc68c 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ExportToRML.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ExportToRML.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com +# This library 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 +# Lesser General Public License for more details. # -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # -# This library 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 -# Lesser General Public License for more details. +# See: http://www.gnu.org/licenses/lgpl.html # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html -# -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 os import uno import unohelper @@ -92,9 +69,9 @@ class ExportToRML( unohelper.Base, XJobExecutor ): if docinfo.getUserFieldValue(2) == "": ErrorDialog("Please Save this file on server","Use Send To Server Option in OpenERP Report Menu","Error") exit(1) - filename = self.GetAFileName() - if not filename: - exit(1) + filename = self.GetAFileName() + if not filename: + exit(1) global passwd self.password = passwd try: @@ -118,7 +95,7 @@ class ExportToRML( unohelper.Base, XJobExecutor ): initPath = tempfile.gettempdir() oUcb = createUnoService("com.sun.star.ucb.SimpleFileAccess") if oUcb.exists(initPath): - oFileDialog.setDisplayDirectory('file://' + ( os.name == 'nt' and '/' or '' ) + initPath ) + oFileDialog.setDisplayDirectory('file://' + ( os.name == 'nt' and '/' or '' ) + initPath ) oFileDialog.setDefaultName(f_path ) diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Expression.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Expression.py index 9e3b175b67b..896a5954c7d 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Expression.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Expression.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import string import unohelper diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Fields.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Fields.py index 3e39b528b6b..8ed4d2c25e8 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Fields.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Fields.py @@ -1,50 +1,25 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import string @@ -209,13 +184,13 @@ class Fields(unohelper.Base, XJobExecutor ): key.sort() myval=None if not sVar.find("/")==-1: - myval=sVar[:sVar.find("/")] + myval=sVar[:sVar.find("/")] else: myval=sVar if myval in key: if (res[myval]['type'] in ['many2one']): sObject = res[myval]['relation'] - return self.getRes(sock,res[myval]['relation'], sVar[sVar.find("/")+1:]) + return self.getRes(sock,res[myval]['relation'], sVar[sVar.find("/")+1:]) else: return sObject diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/LoginTest.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/LoginTest.py index 85059d7712c..11c74555447 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/LoginTest.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/LoginTest.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 . -# -# -############################################################################## +############################################################################# + if __name__<>"package": from ServerParameter import * from lib.gui import * diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ModifyExistingReport.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ModifyExistingReport.py index bc7d439c76d..ef1d3548a6e 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ModifyExistingReport.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ModifyExistingReport.py @@ -1,49 +1,25 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com +# This library 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 +# Lesser General Public License for more details. # -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # -# This library 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 -# Lesser General Public License for more details. +# See: http://www.gnu.org/licenses/lgpl.html # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html -# -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import string diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/NewReport.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/NewReport.py index 138c68b690e..3c6316d9fdb 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/NewReport.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/NewReport.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import string import unohelper diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Repeatln.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Repeatln.py index 16735d40f4e..b6edaecdc44 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Repeatln.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Repeatln.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import string import unohelper @@ -166,33 +143,33 @@ class RepeatIn( unohelper.Base, XJobExecutor ): self.sValue= "objects" else: sItem="" - for anObject in self.aObjectList: - if anObject[:anObject.find("(")] == sObject: - sItem = anObject - self.insVariable.setText( sItem ) + for anObject in self.aObjectList: + if anObject[:anObject.find("(")] == sObject: + sItem = anObject + self.insVariable.setText( sItem ) - genTree( - sItem[sItem.find("(")+1:sItem.find(")")], - self.aListRepeatIn, - self.insField, - self.sMyHost, - 2, - ending=['one2many','many2many'], - recur=['one2many','many2many'] - ) + genTree( + sItem[sItem.find("(")+1:sItem.find(")")], + self.aListRepeatIn, + self.insField, + self.sMyHost, + 2, + ending=['one2many','many2many'], + recur=['one2many','many2many'] + ) self.sValue= self.win.getListBoxItem("lstFields",self.aListRepeatIn.index(sFields)) for var in self.aVariableList: - if var[:8] <> 'List of ': - self.model_ids = self.sock.execute(database, uid, self.password, 'ir.model' , 'search', [('model','=',var[var.find("(")+1:var.find(")")])]) + if var[:8] <> 'List of ': + self.model_ids = self.sock.execute(database, uid, self.password, 'ir.model' , 'search', [('model','=',var[var.find("(")+1:var.find(")")])]) else: - self.model_ids = self.sock.execute(database, uid, self.password, 'ir.model' , 'search', [('model','=',var[8:])]) + self.model_ids = self.sock.execute(database, uid, self.password, 'ir.model' , 'search', [('model','=',var[8:])]) fields=['name','model'] self.model_res = self.sock.execute(database, uid, self.password, 'ir.model', 'read', self.model_ids,fields) if self.model_res <> []: - if var[:8]<>'List of ': + if var[:8]<>'List of ': self.insVariable.addItem(var[:var.find("(")+1] + self.model_res[0]['name'] + ")" ,self.insVariable.getItemCount()) else: self.insVariable.addItem('List of ' + self.model_res[0]['name'] ,self.insVariable.getItemCount()) @@ -212,8 +189,8 @@ class RepeatIn( unohelper.Base, XJobExecutor ): self.win.setEditText("txtName", self.sGVariable) self.win.setEditText("txtUName",self.sGDisplayName) else: - self.win.setEditText("txtName",sMain[sMain.rfind("/")+1:]) - self.win.setEditText("txtUName","|-."+sItem[sItem.rfind("/")+1:]+".-|") + self.win.setEditText("txtName",sMain[sMain.rfind("/")+1:]) + self.win.setEditText("txtUName","|-."+sItem[sItem.rfind("/")+1:]+".-|") def cmbVariable_selected(self, oItemEvent): @@ -225,15 +202,15 @@ class RepeatIn( unohelper.Base, XJobExecutor ): self.win.removeListBoxItems("lstFields", 0, self.win.getListBoxItemCount("lstFields")) sItem=self.win.getComboBoxText("cmbVariable") for var in self.aVariableList: - if var[:8]=='List of ': - if var[:8]==sItem[:8]: + if var[:8]=='List of ': + if var[:8]==sItem[:8]: sItem = var - elif var[:var.find("(")+1] == sItem[:sItem.find("(")+1]: + elif var[:var.find("(")+1] == sItem[:sItem.find("(")+1]: sItem = var self.aListRepeatIn=[] - data = ( sItem[sItem.rfind(" ") + 1:] == docinfo.getUserFieldValue(3) ) and docinfo.getUserFieldValue(3) or sItem[sItem.find("(")+1:sItem.find(")")] - genTree( data, self.aListRepeatIn, self.insField, self.sMyHost, 2, ending=['one2many','many2many'], recur=['one2many','many2many'] ) + data = ( sItem[sItem.rfind(" ") + 1:] == docinfo.getUserFieldValue(3) ) and docinfo.getUserFieldValue(3) or sItem[sItem.find("(")+1:sItem.find(")")] + genTree( data, self.aListRepeatIn, self.insField, self.sMyHost, 2, ending=['one2many','many2many'], recur=['one2many','many2many'] ) self.win.selectListBoxItemPos("lstFields", 0, True ) diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/SendToServer.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/SendToServer.py index 86cf24edaa4..dbd0a51d66d 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/SendToServer.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/SendToServer.py @@ -1,49 +1,25 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com +# This library 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 +# Lesser General Public License for more details. # -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # -# This library 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 -# Lesser General Public License for more details. +# See: http://www.gnu.org/licenses/lgpl.html # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html -# -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import string @@ -123,6 +99,7 @@ class SendtoServer(unohelper.Base, XJobExecutor): self.win.addFixedText("lblReportName", 2, 30, 50, 15, "Technical Name :") self.win.addEdit("txtReportName", -5, 25, 123, 15,report_name) self.win.addCheckBox("chkHeader", 51, 45, 70 ,15, "Corporate Header") + self.win.setCheckBoxState("chkHeader", True) self.win.addFixedText("lblResourceType", 2 , 60, 50, 15, "Select Rpt. Type :") self.win.addComboListBox("lstResourceType", -5, 58, 123, 15,True,itemListenerProc=self.lstbox_selected) self.lstResourceType = self.win.getControl( "lstResourceType" ) @@ -190,7 +167,6 @@ class SendtoServer(unohelper.Base, XJobExecutor): #sock = xmlrpclib.ServerProxy(docinfo.getUserFieldValue(0) +'/xmlrpc/object') file_type = oDoc2.getURL()[7:].split(".")[-1] - res = self.sock.execute(database, uid, self.password, 'ir.actions.report.xml', 'upload_report', int(docinfo.getUserFieldValue(2)),base64.encodestring(data),file_type,{}) params = { 'name': self.win.getEditText("txtName"), 'model': docinfo.getUserFieldValue(3), @@ -200,7 +176,12 @@ class SendtoServer(unohelper.Base, XJobExecutor): } if self.win.getListBoxSelectedItem("lstResourceType")=='OpenOffice': params['report_type']=file_type - res = self.sock.execute(database, uid, self.password, 'ir.actions.report.xml', 'write', int(docinfo.getUserFieldValue(2)), params) + self.sock.execute(database, uid, self.password, 'ir.actions.report.xml', 'write', int(docinfo.getUserFieldValue(2)), params) + + # Call upload_report as the *last* step, as it will call register_all() and cause the report service + # to be loaded - which requires all the data to be correct in the database + self.sock.execute(database, uid, self.password, 'ir.actions.report.xml', 'upload_report', int(docinfo.getUserFieldValue(2)),base64.encodestring(data),file_type,{}) + self.logobj.log_write('SendToServer',LOG_INFO, ':Report %s successfully send using %s'%(params['name'],database)) self.win.endExecute() else: diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ServerParameter.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ServerParameter.py index c399634bfe5..b09b02699b0 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ServerParameter.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/ServerParameter.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com +# This library 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 +# Lesser General Public License for more details. # -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # -# This library 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 -# Lesser General Public License for more details. +# See: http://www.gnu.org/licenses/lgpl.html # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html -# -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import string import unohelper diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Translation.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Translation.py index 13d02c86329..132882e0932 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Translation.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/Translation.py @@ -1,49 +1,25 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com +# This library 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 +# Lesser General Public License for more details. # -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # -# This library 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 -# Lesser General Public License for more details. +# See: http://www.gnu.org/licenses/lgpl.html # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html -# -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 uno import string @@ -112,43 +88,43 @@ class AddLang(unohelper.Base, XJobExecutor ): text=cursor.getText() tcur=text.createTextCursorByRange(cursor) - self.aVariableList.extend( filter( lambda obj: obj[:obj.find("(")] == "Objects", self.aObjectList ) ) + self.aVariableList.extend( filter( lambda obj: obj[:obj.find("(")] == "Objects", self.aObjectList ) ) for i in range(len(self.aItemList)): - anItem = self.aItemList[i][1] - component = self.aComponentAdd[i] + anItem = self.aItemList[i][1] + component = self.aComponentAdd[i] if component == "Document": - sLVal = anItem[anItem.find(",'") + 2:anItem.find("')")] - self.aVariableList.extend( filter( lambda obj: obj[:obj.find("(")] == sLVal, self.aObjectList ) ) + sLVal = anItem[anItem.find(",'") + 2:anItem.find("')")] + self.aVariableList.extend( filter( lambda obj: obj[:obj.find("(")] == sLVal, self.aObjectList ) ) if tcur.TextSection: getRecersiveSection(tcur.TextSection,self.aSectionList) if component in self.aSectionList: - sLVal = anItem[anItem.find(",'") + 2:anItem.find("')")] - self.aVariableList.extend( filter( lambda obj: obj[:obj.find("(")] == sLVal, self.aObjectList ) ) + sLVal = anItem[anItem.find(",'") + 2:anItem.find("')")] + self.aVariableList.extend( filter( lambda obj: obj[:obj.find("(")] == sLVal, self.aObjectList ) ) if tcur.TextTable: - if not component == "Document" and component[component.rfind(".") + 1:] == tcur.TextTable.Name: + if not component == "Document" and component[component.rfind(".") + 1:] == tcur.TextTable.Name: VariableScope(tcur,self.insVariable,self.aObjectList,self.aComponentAdd,self.aItemList,component) self.bModify=bFromModify if self.bModify==True: sItem="" - for anObject in self.aObjectList: - if anObject[:anObject.find("(")] == sVariable: - sItem = anObject - self.insVariable.setText( sItem ) - genTree(sItem[sItem.find("(")+1:sItem.find(")")],self.aListFields, self.insField,self.sMyHost,2,ending_excl=['one2many','many2one','many2many','reference'], recur=['many2one']) + for anObject in self.aObjectList: + if anObject[:anObject.find("(")] == sVariable: + sItem = anObject + self.insVariable.setText( sItem ) + genTree(sItem[sItem.find("(")+1:sItem.find(")")],self.aListFields, self.insField,self.sMyHost,2,ending_excl=['one2many','many2one','many2many','reference'], recur=['many2one']) self.sValue= self.win.getListBoxItem("lstFields",self.aListFields.index(sFields)) for var in self.aVariableList: - self.model_ids = self.sock.execute(database, uid, self.password, 'ir.model' , 'search', [('model','=',var[var.find("(")+1:var.find(")")])]) + self.model_ids = self.sock.execute(database, uid, self.password, 'ir.model' , 'search', [('model','=',var[var.find("(")+1:var.find(")")])]) fields=['name','model'] self.model_res = self.sock.execute(database, uid, self.password, 'ir.model', 'read', self.model_ids,fields) if self.model_res <> []: - self.insVariable.addItem(var[:var.find("(")+1] + self.model_res[0]['name'] + ")" ,self.insVariable.getItemCount()) + self.insVariable.addItem(var[:var.find("(")+1] + self.model_res[0]['name'] + ")" ,self.insVariable.getItemCount()) else: self.insVariable.addItem(var ,self.insVariable.getItemCount()) @@ -165,15 +141,15 @@ class AddLang(unohelper.Base, XJobExecutor ): docinfo=doc.getDocumentInfo() sItem= self.win.getComboBoxText("cmbVariable") for var in self.aVariableList: - if var[:var.find("(")+1]==sItem[:sItem.find("(")+1]: + if var[:var.find("(")+1]==sItem[:sItem.find("(")+1]: sItem = var sMain=self.aListFields[self.win.getListBoxSelectedItemPos("lstFields")] t=sMain.rfind('/lang') if t!=-1: - sObject=self.getRes(self.sock,sItem[sItem.find("(")+1:-1],sMain[1:]) + sObject=self.getRes(self.sock,sItem[sItem.find("(")+1:-1],sMain[1:]) ids = self.sock.execute(database, uid, self.password, sObject , 'search', []) res = self.sock.execute(database, uid, self.password, sObject , 'read',[ids[0]]) - self.win.setEditText("txtUName",res[0][sMain[sMain.rfind("/")+1:]]) + self.win.setEditText("txtUName",res[0][sMain[sMain.rfind("/")+1:]]) else: ErrorDialog("Please select a language.") @@ -192,13 +168,13 @@ class AddLang(unohelper.Base, XJobExecutor ): key.sort() myval=None if not sVar.find("/")==-1: - myval=sVar[:sVar.find("/")] + myval=sVar[:sVar.find("/")] else: myval=sVar if myval in key: if (res[myval]['type'] in ['many2one']): sObject = res[myval]['relation'] - return self.getRes(sock,res[myval]['relation'], sVar[sVar.find("/")+1:]) + return self.getRes(sock,res[myval]['relation'], sVar[sVar.find("/")+1:]) else: return sObject @@ -213,18 +189,18 @@ class AddLang(unohelper.Base, XJobExecutor ): self.aListFields=[] tempItem = self.win.getComboBoxText("cmbVariable") for var in self.aVariableList: - if var[:var.find("(")] == tempItem[:tempItem.find("(")]: + if var[:var.find("(")] == tempItem[:tempItem.find("(")]: sItem=var - genTree( - sItem[ sItem.find("(") + 1:sItem.find(")")], - self.aListFields, - self.insField, - self.sMyHost, - 2, - ending_excl=['one2many','many2one','many2many','reference'], - recur=['many2one'] - ) + genTree( + sItem[ sItem.find("(") + 1:sItem.find(")")], + self.aListFields, + self.insField, + self.sMyHost, + 2, + ending_excl=['one2many','many2one','many2many','reference'], + recur=['many2one'] + ) except: import traceback;traceback.print_exc() diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/__init__.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/__init__.py index 0ccd1c9d011..d7f93351fac 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/__init__.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/__init__.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 Expression import lib import Fields diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/compile_all.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/compile_all.py index 4740c61b178..897f9abd00c 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/compile_all.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/compile_all.py @@ -1,49 +1,26 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 compileall compileall.compile_dir('package') diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/actions.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/actions.py index 8511bb8343d..cf82d0e1a76 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/actions.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/actions.py @@ -1,47 +1,23 @@ ########################################################################## # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 . +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # ############################################################################## diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/error.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/error.py index cb86f5f429a..f44404eaa16 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/error.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/error.py @@ -1,47 +1,23 @@ ########################################################################## # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 . +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # ############################################################################## diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/functions.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/functions.py index 1b614224147..52af0821790 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/functions.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/functions.py @@ -1,47 +1,23 @@ ########################################################################## # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 . +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # ############################################################################## @@ -87,19 +63,19 @@ def genTree(object, aList, insField, host, level=3, ending=None, ending_excl=Non def VariableScope(oTcur, insVariable, aObjectList, aComponentAdd, aItemList, sTableName=""): if sTableName.find(".") != -1: - for i in range(len(aItemList)): + for i in range(len(aItemList)): if aComponentAdd[i]==sTableName: - sLVal=aItemList[i][1][aItemList[i][1].find(",'")+2:aItemList[i][1].find("')")] + sLVal=aItemList[i][1][aItemList[i][1].find(",'")+2:aItemList[i][1].find("')")] for j in range(len(aObjectList)): - if aObjectList[j][:aObjectList[j].find("(")] == sLVal: + if aObjectList[j][:aObjectList[j].find("(")] == sLVal: insVariable.append(aObjectList[j]) - VariableScope(oTcur,insVariable,aObjectList,aComponentAdd,aItemList, sTableName[:sTableName.rfind(".")]) + VariableScope(oTcur,insVariable,aObjectList,aComponentAdd,aItemList, sTableName[:sTableName.rfind(".")]) else: - for i in range(len(aItemList)): + for i in range(len(aItemList)): if aComponentAdd[i]==sTableName: - sLVal=aItemList[i][1][aItemList[i][1].find(",'")+2:aItemList[i][1].find("')")] + sLVal=aItemList[i][1][aItemList[i][1].find(",'")+2:aItemList[i][1].find("')")] for j in range(len(aObjectList)): - if aObjectList[j][:aObjectList[j].find("(")] == sLVal and sLVal!="": + if aObjectList[j][:aObjectList[j].find("(")] == sLVal and sLVal!="": insVariable.append(aObjectList[j]) def getList(aObjectList, host, count): @@ -145,8 +121,8 @@ def getRelation(sRelName, sItem, sObjName, aObjectList, host): if k == sItem: aObjectList.append(sObjName + "(" + res[k]['relation'] + ")") return 0 - if k == sItem[:sItem.find(".")]: - getRelation(res[k]['relation'], sItem[sItem.find(".")+1:], sObjName,aObjectList,host) + if k == sItem[:sItem.find(".")]: + getRelation(res[k]['relation'], sItem[sItem.find(".")+1:], sObjName,aObjectList,host) def getPath(sPath, sMain): @@ -157,13 +133,13 @@ def getPath(sPath, sMain): oPar = oParEnum.nextElement() if oPar.supportsService("com.sun.star.text.TextField.DropDown"): sItem=oPar.Items[1] - if sPath[:sPath.find(".")] == sMain: + if sPath[:sPath.find(".")] == sMain: break; else: res = re.findall('\\[\\[ *([a-zA-Z0-9_\.]+) *\\]\\]',sPath) if len(res) <> 0: - if sItem[sItem.find(",'")+2:sItem.find("')")] == sPath[:sPath.find(".")]: - sPath = sItem[sItem.find("(")+1:sItem.find(",")] + sPath[sPath.find("."):] + if sItem[sItem.find(",'")+2:sItem.find("')")] == sPath[:sPath.find(".")]: + sPath = sItem[sItem.find("(")+1:sItem.find(",")] + sPath[sPath.find("."):] getPath(sPath, sMain) return sPath diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/gui.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/gui.py index d75469ca658..92b5ab750ca 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/gui.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/gui.py @@ -1,47 +1,23 @@ ########################################################################## # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library 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 -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library 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 +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 . +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # ############################################################################## diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/rpc.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/rpc.py index 5d6f8ca6dbc..e0176bfec62 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/rpc.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/rpc.py @@ -61,8 +61,8 @@ class RPCSession(object): protocol = m.group(1) if not m: return -1 - if protocol == 'http://' or protocol == 'http://': - self.gateway = XMLRPCGateway(host, port, 'http') + if protocol == 'http://' or protocol == 'https://': + self.gateway = XMLRPCGateway(host, port, protocol[:-3]) elif protocol == 'socket://': self.gateway = NETRPCGateway(host, port) diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/tools.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/tools.py index 53dc81f5bc3..8e03d853773 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/tools.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/tools.py @@ -22,21 +22,21 @@ import urllib def get_absolute_file_path(url): - url_unquoted = urllib.unquote(url) - return os.name == 'nt' and url_unquoted[1:] or url_unquoted + url_unquoted = urllib.unquote(url) + return os.name == 'nt' and url_unquoted[1:] or url_unquoted # This function reads the content of a file and return it to the caller def read_data_from_file(filename): - fp = file( filename, "rb" ) - data = fp.read() - fp.close() - return data + fp = file( filename, "rb" ) + data = fp.read() + fp.close() + return data # This function writes the content to a file def write_data_to_file(filename, data): - fp = file( filename, 'wb' ) - fp.write( data ) - fp.close() + fp = file( filename, 'wb' ) + fp.write( data ) + fp.close() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/modify.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/modify.py index b5f5a1501b9..f8d90c30d75 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/modify.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/modify.py @@ -1,49 +1,25 @@ -########################################################################## +######################################################################### # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com +# This library 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 +# Lesser General Public License for more details. # -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # -# This library 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 -# Lesser General Public License for more details. +# See: http://www.gnu.org/licenses/lgpl.html # -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html -# -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 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 re import uno @@ -75,42 +51,42 @@ class modify(unohelper.Base, XJobExecutor ): self.sMyHost= docinfo.getUserFieldValue(0) else: ErrorDialog( - "Please insert user define field Field-1", - "Just go to File->Properties->User Define \n" - "Field-1 E.g. http://localhost:8069" - ) + "Please insert user define field Field-1", + "Just go to File->Properties->User Define \n" + "Field-1 E.g. http://localhost:8069" + ) exit(1) # Check weather Field-4 is available or not otherwise exit from application if not docinfo.getUserFieldValue(3) == "" and not docinfo.getUserFieldValue(0)=="": if self.oVC.TextField: self.oCurObj=self.oVC.TextField - item = self.oCurObj.Items[0] + item = self.oCurObj.Items[0] - kind, group1, group2 = self.getOperation(self.oCurObj.Items[1] ) + kind, group1, group2 = self.getOperation(self.oCurObj.Items[1] ) - start_group1 = group1[:group1.find(".")] - stop_group1 = group1[group1.find("."):].replace(".", "/") + start_group1 = group1[:group1.find(".")] + stop_group1 = group1[group1.find("."):].replace(".", "/") if kind == "field": - Fields( start_group1, stop_group1, item, True ) + Fields( start_group1, stop_group1, item, True ) elif kind == "expression": Expression( group1, item, True ) elif kind == "repeatIn": - RepeatIn( start_group1, group2, stop_group1, item, True ) + RepeatIn( start_group1, group2, stop_group1, item, True ) else: ErrorDialog( "Please place your cursor at beginning of field that you want to modify.","" - ) + ) else: ErrorDialog( - "Please insert user define field Field-1 or Field-4", - "Just go to File->Properties->User Define \n" - "Field-1 E.g. http://localhost:8069 \n" - "OR \n" - "Field-4 E.g. account.invoice" - ) + "Please insert user define field Field-1 or Field-4", + "Just go to File->Properties->User Define \n" + "Field-1 E.g. http://localhost:8069 \n" + "OR \n" + "Field-4 E.g. account.invoice" + ) exit(1) def getOperation(self, str): @@ -121,14 +97,14 @@ class modify(unohelper.Base, XJobExecutor ): method2 = lambda x: (u'field', x.group(1), None) method3 = lambda x: (u'expression', x.group(1), None) regexes = [ - ('\\[\\[ *repeatIn\\( *(.+)*, *\'([a-zA-Z0-9_]+)\' *\\) *\\]\\]', method1), - ('\\[\\[ *([a-zA-Z0-9_\.]+) *\\]\\]', method2), - ('\\[\\[ *(.+) *\\]\\]', method3) + ('\\[\\[ *repeatIn\\( *(.+)*, *\'([a-zA-Z0-9_]+)\' *\\) *\\]\\]', method1), + ('\\[\\[ *([a-zA-Z0-9_\.]+) *\\]\\]', method2), + ('\\[\\[ *(.+) *\\]\\]', method3) ] for (rule,method) in regexes: - res = re.match(rule, str) - if res: - return method(res) + res = re.match(rule, str) + if res: + return method(res) if __name__<>"package": modify(None) diff --git a/addons/base_report_designer/plugin/openerp_report_designer/test/test_fields.py b/addons/base_report_designer/plugin/openerp_report_designer/test/test_fields.py index c23e0e739bf..948b3733b70 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/test/test_fields.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/test/test_fields.py @@ -11,23 +11,23 @@ import time sock = xmlrpclib.ServerProxy('http://localhost:8069/xmlrpc/object') def get(object, level=3, ending=None, ending_excl=None, recur=None, root=''): - if ending is None: - ending = [] - if ending_excl is None: - ending_excl = [] - if recur is None: - recur = [] - res = sock.execute('terp', 3, 'admin', 'account.invoice', 'fields_get') - key = res.keys() - key.sort() - for k in key: - if (not ending or res[k]['type'] in ending) and ((not ending_excl) or not (res[k]['type'] in ending_excl)): - print root+'/'+k + if ending is None: + ending = [] + if ending_excl is None: + ending_excl = [] + if recur is None: + recur = [] + res = sock.execute('terp', 3, 'admin', 'account.invoice', 'fields_get') + key = res.keys() + key.sort() + for k in key: + if (not ending or res[k]['type'] in ending) and ((not ending_excl) or not (res[k]['type'] in ending_excl)): + print root+'/'+k - if res[k]['type'] in recur: - print root+'/'+k - if (res[k]['type'] in recur) and (level>0): - get(res[k]['relation'], level-1, ending, ending_excl, recur, root+'/'+k) + if res[k]['type'] in recur: + print root+'/'+k + if (res[k]['type'] in recur) and (level>0): + get(res[k]['relation'], level-1, ending, ending_excl, recur, root+'/'+k) print 'Field selection for a rields', '='*40 get('account.invoice', level=0, ending_excl=['one2many','many2one','many2many','reference'], recur=['many2one']) diff --git a/addons/base_setup/i18n/ar.po b/addons/base_setup/i18n/ar.po index 114d9d1be52..2fd916575df 100644 --- a/addons/base_setup/i18n/ar.po +++ b/addons/base_setup/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-27 21:43+0000\n" "Last-Translator: gehad shaat \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/base_setup.pot b/addons/base_setup/i18n/base_setup.pot index 7ff08d99ea1..b1a2b53fbad 100644 --- a/addons/base_setup/i18n/base_setup.pot +++ b/addons/base_setup/i18n/base_setup.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_setup/i18n/bg.po b/addons/base_setup/i18n/bg.po index 28a75f1a7e7..f64845defad 100644 --- a/addons/base_setup/i18n/bg.po +++ b/addons/base_setup/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bs.po b/addons/base_setup/i18n/bs.po index ed5c6344473..116e53151d2 100644 --- a/addons/base_setup/i18n/bs.po +++ b/addons/base_setup/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ca.po b/addons/base_setup/i18n/ca.po index b7bd75537f4..1573de24528 100644 --- a/addons/base_setup/i18n/ca.po +++ b/addons/base_setup/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/cs.po b/addons/base_setup/i18n/cs.po index 255327e232a..50d3d6bb735 100644 --- a/addons/base_setup/i18n/cs.po +++ b/addons/base_setup/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/da.po b/addons/base_setup/i18n/da.po index ba5f822feca..36a7faadbc5 100644 --- a/addons/base_setup/i18n/da.po +++ b/addons/base_setup/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/de.po b/addons/base_setup/i18n/de.po index 08ba48dfe4d..ab34390b232 100644 --- a/addons/base_setup/i18n/de.po +++ b/addons/base_setup/i18n/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-06 09:14+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/el.po b/addons/base_setup/i18n/el.po index 55c2c2506b2..e3f448d41e8 100644 --- a/addons/base_setup/i18n/el.po +++ b/addons/base_setup/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/en_GB.po b/addons/base_setup/i18n/en_GB.po index f766e765258..310e3a0c5f1 100644 --- a/addons/base_setup/i18n/en_GB.po +++ b/addons/base_setup/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es.po b/addons/base_setup/i18n/es.po index aaf04d26734..1bfdd993455 100644 --- a/addons/base_setup/i18n/es.po +++ b/addons/base_setup/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po index 2c66cd50c9c..7be611bd373 100644 --- a/addons/base_setup/i18n/es_AR.po +++ b/addons/base_setup/i18n/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Argentina) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CL.po b/addons/base_setup/i18n/es_CL.po index 47c950af9de..a4c8d6b7a1d 100644 --- a/addons/base_setup/i18n/es_CL.po +++ b/addons/base_setup/i18n/es_CL.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Chile) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CR.po b/addons/base_setup/i18n/es_CR.po index 5e6550fe7c2..4a06377e44b 100644 --- a/addons/base_setup/i18n/es_CR.po +++ b/addons/base_setup/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_EC.po b/addons/base_setup/i18n/es_EC.po index 95f37a01f0c..b61df12b09c 100644 --- a/addons/base_setup/i18n/es_EC.po +++ b/addons/base_setup/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_MX.po b/addons/base_setup/i18n/es_MX.po index 394b66efdda..7338b710f4a 100644 --- a/addons/base_setup/i18n/es_MX.po +++ b/addons/base_setup/i18n/es_MX.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-18 23:32+0000\n" "Last-Translator: Antonio Fregoso \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: 2013-01-19 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_PY.po b/addons/base_setup/i18n/es_PY.po index c1d4b2b0429..ed162f18c3f 100644 --- a/addons/base_setup/i18n/es_PY.po +++ b/addons/base_setup/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/et.po b/addons/base_setup/i18n/et.po index 46fb1edbcf4..41181facc21 100644 --- a/addons/base_setup/i18n/et.po +++ b/addons/base_setup/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fa.po b/addons/base_setup/i18n/fa.po index 0a38df7d086..e243059b5d2 100644 --- a/addons/base_setup/i18n/fa.po +++ b/addons/base_setup/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fi.po b/addons/base_setup/i18n/fi.po index 37032d2a42c..6aeba73bc4b 100644 --- a/addons/base_setup/i18n/fi.po +++ b/addons/base_setup/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fr.po b/addons/base_setup/i18n/fr.po index 07ecb0ad81f..7926f384037 100644 --- a/addons/base_setup/i18n/fr.po +++ b/addons/base_setup/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-03 10:49+0000\n" -"Last-Translator: Florian Hatat \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-21 01:51+0000\n" +"Last-Translator: WANTELLET Sylvain \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -331,7 +331,7 @@ msgstr "Options" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Activer le portail client" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/gl.po b/addons/base_setup/i18n/gl.po index 1338a70f6e8..ffaa6cc3e10 100644 --- a/addons/base_setup/i18n/gl.po +++ b/addons/base_setup/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/gu.po b/addons/base_setup/i18n/gu.po index fff161adc24..8eecabc5713 100644 --- a/addons/base_setup/i18n/gu.po +++ b/addons/base_setup/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hr.po b/addons/base_setup/i18n/hr.po index 6a66371e029..9788df073d2 100644 --- a/addons/base_setup/i18n/hr.po +++ b/addons/base_setup/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-06 08:35+0000\n" "Last-Translator: Davor Bojkić \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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hu.po b/addons/base_setup/i18n/hu.po index f398c8f34ae..8b8971d60e5 100644 --- a/addons/base_setup/i18n/hu.po +++ b/addons/base_setup/i18n/hu.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-14 11:24+0000\n" +"Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "e-amil integrálás" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -30,18 +30,20 @@ msgstr "Vendég" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Kapcsolattartók" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 msgid "" "Use external authentication providers, sign in with google, facebook, ..." msgstr "" +"Használjon külső azonosító tartalomkezelőt, lépjen be mint google, facebook, " +"... felhasználó" #. module: base_setup #: view:sale.config.settings:0 @@ -55,11 +57,21 @@ msgid "" "OpenERP using specific\n" " plugins for your preferred email application." msgstr "" +"OpenERP lehetővé teszi az automatikus érdeklődések (vagy egyéb dokumentumok) " +"létrehozását \n" +" a beérkező levelekből. Autokmatikusan tud e-" +"mailt szinkronizálni az OpenERP\n" +" alapértelmezett POP/IMAP fiókok használatával, " +"közvetlen az e-mail szerver címéhez tartozó \n" +" e-mail beillesztő skript használatával, vagy " +"kézzel saját betöltő plugin használatával az OpenERP\n" +" kiegészítőivel, az előnyben létesített levelező " +"használatához." #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "ÉRTÉKESÍTÉS" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -69,74 +81,74 @@ msgstr "Tag" #. module: base_setup #: view:base.config.settings:0 msgid "Portal access" -msgstr "" +msgstr "Portál hozzáférés" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "" +msgstr "Azonosítás" #. module: base_setup #: view:sale.config.settings:0 msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Árajánlatok és vevői megrendelések" #. module: base_setup #: view:base.config.settings:0 #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "Általános beállítások" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Donor" -msgstr "" +msgstr "Donor" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "E-mail" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "CRM ügyfélkapcsolat-kezelő rendszer" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Patient" -msgstr "" +msgstr "Páciens" #. module: base_setup #: field:base.config.settings,module_base_import:0 msgid "Allow users to import data from CSV files" -msgstr "" +msgstr "Lehetővé teszi a felhasználók adatainak betöltését CSV fájlokból" #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "" +msgstr "Többes válallkozás kezelése" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "Az e-mail ügyfelen" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=YOUR_DATABAE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "" +msgstr "Kapcsolatok automatikus behozatala a LinkeIn-ből" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Thunderbird plug-in bekapcsolása" #. module: base_setup #: view:base.setup.terminology:0 @@ -146,22 +158,22 @@ msgstr "res_config_contents" #. module: base_setup #: view:sale.config.settings:0 msgid "Customer Features" -msgstr "" +msgstr "Vavő tulajdonságai" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "" +msgstr "Import / Export" #. module: base_setup #: view:sale.config.settings:0 msgid "Sale Features" -msgstr "" +msgstr "eladás tulajdonságai" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Outlook plug-in bekapcsolása" #. module: base_setup #: view:base.setup.terminology:0 @@ -169,21 +181,23 @@ msgid "" "You can use this wizard to change the terminologies for customers in the " "whole application." msgstr "" +"Használhatja ezt a varázslót a vevők nyelvezetének megváltoztatásához a " +"teljes alkalmazásra vonatkozólag." #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Tenant" -msgstr "" +msgstr "Haszonélvező" #. module: base_setup #: help:base.config.settings,module_share:0 msgid "Share or embbed any screen of openerp." -msgstr "" +msgstr "Bármely OpenERP képernyő megosztása vagy eltüntetése." #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Customer" -msgstr "" +msgstr "Vevő" #. module: base_setup #: help:sale.config.settings,module_web_linkedin:0 @@ -191,6 +205,8 @@ msgid "" "When you create a new contact (person or company), you will be able to load " "all the data from LinkedIn (photos, address, etc)." msgstr "" +"Ha új kapcsolatot hoz létre (személy vagy vállalkozás), akkor lehetősége " +"lesz a LinkedIn adatok betöltésére (fotók, címek, stb.)." #. module: base_setup #: help:base.config.settings,module_multi_company:0 @@ -199,6 +215,9 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Többes vállalkozású környezetben dolgozni, a helyesen meghatározott " +"vállalatok közötti hozzáférési jogosultságokkal.\n" +" Ez a multi_company modult telepíti." #. module: base_setup #: view:base.config.settings:0 @@ -207,6 +226,9 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"A közösségi portál csak akkor hozzáférhetző ha egyszeres, önálló adatbázis " +"módot használ. Elindíthatja\n" +" az OpenERP Szervert ezzel a lehetőséggel" #. module: base_setup #: view:base.config.settings:0 @@ -214,16 +236,18 @@ msgid "" "You will find more options in your company details: address for the header " "and footer, overdue payments texts, etc." msgstr "" +"Több lehetőséget fog találni a vállalata részleteinél: a fejléc és " +"lábjegyzet címek, határidő túllépés szöveges üzenete, stb." #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: base_setup #: field:base.setup.terminology,partner:0 msgid "How do you call a Customer" -msgstr "" +msgstr "Hogy hívhat meg egy Vevőt" #. module: base_setup #: view:base.config.settings:0 @@ -237,21 +261,30 @@ msgid "" "projects,\n" " etc." msgstr "" +"Ha egy dokumentumot küld egy Vevőhöz\n" +" (árajánlat, számla), a Vevő " +"feliratkozhat\n" +" a dokumentumainak eléréséhez,\n" +" a vállalati új hírek elolvasásához, " +"projektek ellenőrzéséhez,\n" +" stb." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" -msgstr "" +msgstr "base.setup.terminology" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Client" -msgstr "" +msgstr "Ügyfél" #. module: base_setup #: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" +"Az OpenERP közösségi részének bekapcsolása, OpenERP elérhetővé válik egy " +"közösségi weboldalként." #. module: base_setup #: help:sale.config.settings,module_plugin_thunderbird:0 @@ -264,22 +297,31 @@ msgid "" " Partner from the selected emails.\n" " This installs the module plugin_thunderbird." msgstr "" +"A közösség lehetővé teszi a kiválasztott OpenERP\n" +" objektumhoz tartozó e-mailek és mellékletei\n" +" archiválását. Kiválaszthat egy partnert, vagy érdeklődést és " +"\n" +" mellékelheti a kiválasztott levelet mint .eml fájl\n" +" a kiválasztott rekord mellékleteként. A CRM érdeklődésekből " +"dokumentumokat\n" +" hozhat létre, Partnert a kiválasztott e-mailekből.\n" +" Ez a plugin_thunderbird modult telepíti.." #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form msgid "Use another word to say \"Customer\"" -msgstr "" +msgstr "Használjon másik szót amivel kifejezi \"Vevő\"" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_sale_config #: view:sale.config.settings:0 msgid "Configure Sales" -msgstr "" +msgstr "Eladás beállítása" #. module: base_setup #: help:sale.config.settings,module_plugin_outlook:0 @@ -292,16 +334,24 @@ msgid "" " email into an OpenERP mail message with attachments.\n" " This installs the module plugin_outlook." msgstr "" +"Az Outlook plugin lehetővé teszi egy objektum kiválasztását amit\n" +" az Outlookból az e-mailhez és mellékletéhez szeretne " +"csatolni. \n" +" Kiválaszthat egy partnert vagy érdeklődés objektumot\n" +" és eltárolhatja a kiválasztott e-mailt az OpenERP " +"üzenetekhez\n" +" mellékletekkel együtt.\n" +" Ez a plugin_outlook modult telepíti." #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Lehetőségek" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "A közösségi portál aktiválása" #. module: base_setup #: view:base.config.settings:0 @@ -310,61 +360,64 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" +"így tenni.\n" +" Ha egyszer aktiválva van, a " +"bejelentkezési oldal ki lesz váltva a közösségi weboldallal." #. module: base_setup #: field:base.config.settings,module_share:0 msgid "Allow documents sharing" -msgstr "" +msgstr "Dokumentumok megoszásának engedélyezése" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(vállalati hírek, munkahelyek, kapcsolatu űrlapok, stb.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Közösségi portál aktiválása" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Kimenő e-mail szerverek beállítása" #. module: base_setup #: view:sale.config.settings:0 msgid "Social Network Integration" -msgstr "" +msgstr "Közösségi hálózat integráció" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Adjon hozzáférést a vevőknek a dokumentumaikhoz." #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Visszavonás" #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Alkalmaz" #. module: base_setup #: view:base.setup.terminology:0 msgid "Specify Your Terminology" -msgstr "" +msgstr "Terminológia meghatározása" #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "A vállalata részleteinek beállítása" diff --git a/addons/base_setup/i18n/id.po b/addons/base_setup/i18n/id.po index 94149bcc8ea..70c1b391519 100644 --- a/addons/base_setup/i18n/id.po +++ b/addons/base_setup/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/it.po b/addons/base_setup/i18n/it.po index 1dc5405a951..35cbc559331 100644 --- a/addons/base_setup/i18n/it.po +++ b/addons/base_setup/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-06 23:13+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ja.po b/addons/base_setup/i18n/ja.po index 230d0ba1346..18a52afb701 100644 --- a/addons/base_setup/i18n/ja.po +++ b/addons/base_setup/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ko.po b/addons/base_setup/i18n/ko.po index 93e69b07a92..fd4cf36129f 100644 --- a/addons/base_setup/i18n/ko.po +++ b/addons/base_setup/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/lt.po b/addons/base_setup/i18n/lt.po index 6d6cd6cfbf0..0410d09af37 100644 --- a/addons/base_setup/i18n/lt.po +++ b/addons/base_setup/i18n/lt.po @@ -1,21 +1,21 @@ # Lithuanian 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. +# Giedrius Slavinskas , 2012. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-30 16:27+0000\n" +"Last-Translator: Giedrius Slavinskas - inovera.lt \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -30,7 +30,7 @@ msgstr "" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Kontaktai" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings @@ -64,7 +64,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" -msgstr "" +msgstr "Narys" #. module: base_setup #: view:base.config.settings:0 @@ -79,7 +79,7 @@ msgstr "" #. module: base_setup #: view:sale.config.settings:0 msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Pasiūlymai ir pardavimo užsakymai" #. module: base_setup #: view:base.config.settings:0 @@ -96,7 +96,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "El. paštas" #. module: base_setup #: field:sale.config.settings,module_crm:0 @@ -183,7 +183,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Customer" -msgstr "" +msgstr "Pirkėjas" #. module: base_setup #: help:sale.config.settings,module_web_linkedin:0 @@ -268,7 +268,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form @@ -296,7 +296,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Pasirinkimai" #. module: base_setup #: field:base.config.settings,module_portal:0 @@ -345,13 +345,13 @@ msgstr "" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Atšaukti" #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Taikyti" #. module: base_setup #: view:base.setup.terminology:0 @@ -362,7 +362,7 @@ msgstr "" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "arba" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/lv.po b/addons/base_setup/i18n/lv.po index 9f078553e19..fb0155861af 100644 --- a/addons/base_setup/i18n/lv.po +++ b/addons/base_setup/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/mk.po b/addons/base_setup/i18n/mk.po new file mode 100644 index 00000000000..98677f30e20 --- /dev/null +++ b/addons/base_setup/i18n/mk.po @@ -0,0 +1,421 @@ +# Macedonian 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. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: OpenERP Macedonian \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-28 22:14+0000\n" +"Last-Translator: Aleksandar Panov \n" +"Language-Team: OpenERP Macedonia \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "Emails Integration" +msgstr "Интегрирање на e-mail адреси" + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Guest" +msgstr "Гостин" + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "Contacts" +msgstr "Контакти" + +#. module: base_setup +#: model:ir.model,name:base_setup.model_base_config_settings +msgid "base.config.settings" +msgstr "base.config.settings" + +#. module: base_setup +#: field:base.config.settings,module_auth_oauth:0 +msgid "" +"Use external authentication providers, sign in with google, facebook, ..." +msgstr "" +"Користење надворешни провајдери за автентикација, најави се преку google, " +"facebook, ..." + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "" +"OpenERP allows to automatically create leads (or others documents)\n" +" from incoming emails. You can automatically " +"synchronize emails with OpenERP\n" +" using regular POP/IMAP accounts, using a direct " +"email integration script for your\n" +" email server, or by manually pushing emails to " +"OpenERP using specific\n" +" plugins for your preferred email application." +msgstr "" +"OpenERP дозволува автоматско креирање на управувачки или други документи\n" +" од дојдовни e-mail пораки. Можна е автоматска " +"синхронизација на e-mail пораките со OpenERP\n" +" користејки ги стандардните POP/IMAP сметки, " +"користејки скрипта за директна интеграција\n" +" на e-mail серверот, или рачно префрлање на " +"пораките во OpenERP користејки одредени \n" +" додатоци за одредени апликации." + +#. module: base_setup +#: field:sale.config.settings,module_sale:0 +msgid "SALE" +msgstr "ПРОДАЖБА" + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Member" +msgstr "Член" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Portal access" +msgstr "Пристап до порталот" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Authentication" +msgstr "Автентикација" + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "Quotations and Sales Orders" +msgstr "Понуди и налози за продажба" + +#. module: base_setup +#: view:base.config.settings:0 +#: model:ir.actions.act_window,name:base_setup.action_general_configuration +#: model:ir.ui.menu,name:base_setup.menu_general_configuration +msgid "General Settings" +msgstr "Општи подесувања" + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Donor" +msgstr "Донатор" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Email" +msgstr "E-mail" + +#. module: base_setup +#: field:sale.config.settings,module_crm:0 +msgid "CRM" +msgstr "CRM" + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Patient" +msgstr "Пациент" + +#. module: base_setup +#: field:base.config.settings,module_base_import:0 +msgid "Allow users to import data from CSV files" +msgstr "Дозволи на корисниците да импортираат податоци од CSV фајлови" + +#. module: base_setup +#: field:base.config.settings,module_multi_company:0 +msgid "Manage multiple companies" +msgstr "Управување со повеќе компании" + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "On Mail Client" +msgstr "" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "--db-filter=YOUR_DATABAE" +msgstr "--db-filter=YOUR_DATABAE" + +#. module: base_setup +#: field:sale.config.settings,module_web_linkedin:0 +msgid "Get contacts automatically from linkedIn" +msgstr "Превземи ги контактите директно од linkedIn" + +#. module: base_setup +#: field:sale.config.settings,module_plugin_thunderbird:0 +msgid "Enable Thunderbird plug-in" +msgstr "Овозможи го Thunderbird додатокот" + +#. module: base_setup +#: view:base.setup.terminology:0 +msgid "res_config_contents" +msgstr "res_config_contents" + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "Customer Features" +msgstr "Функции на клиентот" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Import / Export" +msgstr "Импортирај / Експортирај" + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "Sale Features" +msgstr "Функции на продажбата" + +#. module: base_setup +#: field:sale.config.settings,module_plugin_outlook:0 +msgid "Enable Outlook plug-in" +msgstr "Овозможи го Outlook додатокот" + +#. module: base_setup +#: view:base.setup.terminology:0 +msgid "" +"You can use this wizard to change the terminologies for customers in the " +"whole application." +msgstr "" +"Може да го користите овој волшебник за промена на терминологијата за " +"клиентите во целата апликација." + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Tenant" +msgstr "Потстанар" + +#. module: base_setup +#: help:base.config.settings,module_share:0 +msgid "Share or embbed any screen of openerp." +msgstr "Сподели или вметни билокој екран од openerp." + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Customer" +msgstr "Потрошувач" + +#. module: base_setup +#: help:sale.config.settings,module_web_linkedin:0 +msgid "" +"When you create a new contact (person or company), you will be able to load " +"all the data from LinkedIn (photos, address, etc)." +msgstr "" +"При креирање на нов контакт (лице или компанија), ќе имате можност да ги " +"превземете сите информации од LinkedIn (слики, адреси, итн.)" + +#. module: base_setup +#: help:base.config.settings,module_multi_company:0 +msgid "" +"Work in multi-company environments, with appropriate security access between " +"companies.\n" +" This installs the module multi_company." +msgstr "" +"Работа во околина со повеќе компании, со соодветен безбедносен пристап " +"помеѓу нив.\n" +" Ова го инсталира модулот multi_company." + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"The public portal is accessible only if you are in a single database mode. " +"You can\n" +" launch the OpenERP Server with the option" +msgstr "" +"Јавниот портал е достапен само доколу сте во режим на единечна база на " +"податоци. Може да\n" +" го покренете OpenERP Серверот со таа " +"опција" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"You will find more options in your company details: address for the header " +"and footer, overdue payments texts, etc." +msgstr "" +"Ќе најдете повеќе опции во деталите за вашата компанија: адреса за " +"заглавјето и долниот дел, заостанати плаќања, итн." + +#. module: base_setup +#: model:ir.model,name:base_setup.model_sale_config_settings +msgid "sale.config.settings" +msgstr "sale.config.settings" + +#. module: base_setup +#: field:base.setup.terminology,partner:0 +msgid "How do you call a Customer" +msgstr "Како го нарекувате Потрошувачот" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"When you send a document to a customer\n" +" (quotation, invoice), your customer will " +"be\n" +" able to signup to get all his " +"documents,\n" +" read your company news, check his " +"projects,\n" +" etc." +msgstr "" +"Кога праќате документ до клиент\n" +" (понуда, фактура), вашиот клиент ќе\n" +" може да се најави за да ги превземе " +"документите,\n" +" да ги прочита новостите за вашата " +"компанија, да ги провери неговите проекти,\n" +" итн." + +#. module: base_setup +#: model:ir.model,name:base_setup.model_base_setup_terminology +msgid "base.setup.terminology" +msgstr "base.setup.terminology" + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Client" +msgstr "Клиент" + +#. module: base_setup +#: help:base.config.settings,module_portal_anonymous:0 +msgid "Enable the public part of openerp, openerp becomes a public website." +msgstr "" +"Со овозможување на јавниот дел на openerp, тој станува јавен вебсајт." + +#. module: base_setup +#: help:sale.config.settings,module_plugin_thunderbird:0 +msgid "" +"The plugin allows you archive email and its attachments to the selected\n" +" OpenERP objects. You can select a partner, or a lead and\n" +" attach the selected mail as a .eml file in\n" +" the attachment of a selected record. You can create " +"documents for CRM Lead,\n" +" Partner from the selected emails.\n" +" This installs the module plugin_thunderbird." +msgstr "" +"Додатокот ви овозможува да ги архивирате вашите e-mail пораки и " +"прикачувањата во избраниот\n" +" OpenERP објект. Може да изберете партнер или водач и да го " +"прикачете\n" +" одбраниот e-mail како .eml фајл.\n" +" Може да креирате документи за управувачот со CRM,\n" +" партнерот од избраните e-mail пораки.\n" +" Со ова се инсталира модулот plugin_thunderbird." + +#. module: base_setup +#: selection:base.setup.terminology,partner:0 +msgid "Partner" +msgstr "Партнер" + +#. module: base_setup +#: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form +msgid "Use another word to say \"Customer\"" +msgstr "Употреби друг збор за да кажеш \"Потрошувач\"" + +#. module: base_setup +#: model:ir.actions.act_window,name:base_setup.action_sale_config +#: view:sale.config.settings:0 +msgid "Configure Sales" +msgstr "Конфигурација на продажба" + +#. module: base_setup +#: help:sale.config.settings,module_plugin_outlook:0 +msgid "" +"The Outlook plugin allows you to select an object that you would like to " +"add\n" +" to your email and its attachments from MS Outlook. You can " +"select a partner,\n" +" or a lead object and archive a selected\n" +" email into an OpenERP mail message with attachments.\n" +" This installs the module plugin_outlook." +msgstr "" +"Outlook додатокот ви овозможува да изберете објект што сакате да го " +"прикачите\n" +" на вашиот e-mail од MS Outlook. Може да изберете партнер\n" +" или управувачки објект и да ја архивирате избраната\n" +" e-mail порака во ОpenERP порака со прикачувања.\n" +" Ова го инсталира модулот plugin_outlook." + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Options" +msgstr "Опции" + +#. module: base_setup +#: field:base.config.settings,module_portal:0 +msgid "Activate the customer portal" +msgstr "Активирај го порталот на клиентот" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "" +"to do so.\n" +" Once activated, the login page will be " +"replaced by the public website." +msgstr "" +"да го стори тоа.\n" +" Кога ќе се активира, страницата за " +"најавување ќе биде заменета од јавниот вебсајт." + +#. module: base_setup +#: field:base.config.settings,module_share:0 +msgid "Allow documents sharing" +msgstr "Дозволи споделување на документи" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "(company news, jobs, contact form, etc.)" +msgstr "(новости, работа, контакт форми, итн.)" + +#. module: base_setup +#: field:base.config.settings,module_portal_anonymous:0 +msgid "Activate the public portal" +msgstr "Активирање на јавниот портал" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Configure outgoing email servers" +msgstr "Конфигурација на излезни e-mail сервери" + +#. module: base_setup +#: view:sale.config.settings:0 +msgid "Social Network Integration" +msgstr "Интегрирање на социјални мрежи" + +#. module: base_setup +#: help:base.config.settings,module_portal:0 +msgid "Give your customers access to their documents." +msgstr "Овозможете им на клиентите пристап до нивните документи." + +#. module: base_setup +#: view:base.config.settings:0 +#: view:sale.config.settings:0 +msgid "Cancel" +msgstr "Откажи" + +#. module: base_setup +#: view:base.config.settings:0 +#: view:sale.config.settings:0 +msgid "Apply" +msgstr "Примени" + +#. module: base_setup +#: view:base.setup.terminology:0 +msgid "Specify Your Terminology" +msgstr "Специфицирајте ја вашата терминологија" + +#. module: base_setup +#: view:base.config.settings:0 +#: view:sale.config.settings:0 +msgid "or" +msgstr "или" + +#. module: base_setup +#: view:base.config.settings:0 +msgid "Configure your company data" +msgstr "Конфигурирај податоци за компанијата" diff --git a/addons/base_setup/i18n/mn.po b/addons/base_setup/i18n/mn.po index 873cbe42b5c..9463e655554 100644 --- a/addons/base_setup/i18n/mn.po +++ b/addons/base_setup/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-08 07:13+0000\n" -"Last-Translator: Altangerel \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-03 04:14+0000\n" +"Last-Translator: gobi \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-02-09 05:29+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,13 @@ msgid "" "OpenERP using specific\n" " plugins for your preferred email application." msgstr "" +"OpenERP нь ирж байгаа имэйлээс автоматаар сэжим (болон бусад баримтууд)-г \n" +" үүсгэх боломжийг олгодог. OpenERP-тай энгийн " +"POP/IMAP имэйл эрхийг ашиглан \n" +" имэйлийг шууд имэйл сервертэй холбож болно. " +"Эсвэл гараараа зарим нэг имэйлийг \n" +" тусгай залгаасын тусламжтайгаар OpenERP-руу " +"оруулж болно." #. module: base_setup #: field:sale.config.settings,module_sale:0 @@ -121,17 +128,17 @@ msgstr "Олон компанийг менежмент хийх" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "Мэйл Клиентэд" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=Таны_Өгөгдлийн_Бааз" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "" +msgstr "linkedin-с холбох хаягуудыг автоматаар авах" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 @@ -204,6 +211,8 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Олон компаний орчинд зохих нууцлалын хяналттайгаар ажиллах.\n" +" Энэ нь multi_company модулийг суулгадаг." #. module: base_setup #: view:base.config.settings:0 @@ -212,6 +221,9 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"Нийтийн порталь нь зөвхөн нэг өгөгдлийн баазийн горимд л хандах боломжтой. " +"OpenERP серверийг\n" +" энэ горимоор ажиллуулаж боломжтой" #. module: base_setup #: view:base.config.settings:0 @@ -219,6 +231,8 @@ msgid "" "You will find more options in your company details: address for the header " "and footer, overdue payments texts, etc." msgstr "" +"Компаний дэлгэрэнгүй дотор өшөө олон сонголтууд бий: толгой болон хөлд " +"хэрэглэх хаяг, хугацаа хэтэрсэн төлбөрийн текст, гм." #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings @@ -242,6 +256,9 @@ msgid "" "projects,\n" " etc." msgstr "" +"Баримтыг захиалагчид илгээхэд захиалагч OpenERP-руу нэвтэрч өөрийн бүх " +"баримтыг авч болно. Мөн танай компанийн мэдээ зэрэгийг унших боломжтой. Мөн " +"өөрсдийн төслийг хянах боломжтой." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology @@ -257,6 +274,7 @@ msgstr "Клиент" #: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" +"OpenERP-н нийтийн хэсгийг зөвшөөрснөөр OpenERP нь нийтийн веб болж хувирна." #. module: base_setup #: help:sale.config.settings,module_plugin_thunderbird:0 @@ -269,6 +287,13 @@ msgid "" " Partner from the selected emails.\n" " This installs the module plugin_thunderbird." msgstr "" +"Энэ залгаас нь OpenERP-н сонгосон обьектуудын имэйл болон түүний " +"хавсралтуудыг OpenERP-д оруулан архивлах \n" +" боломжийг олгодог. Харилцагч, сэжимийг сонгож холбогдох " +"имэйлийг .eml өргөтгөлтэйгээр \n" +" хавсаргаж өгөх боломжтой. Сонгосон имэйлүүдээс CRM сэжим " +"болон харилцагч үүсгэх боломжтой. \n" +" Энэ нь plugin_thunderbird модулийг суулгадаг." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -297,6 +322,11 @@ msgid "" " email into an OpenERP mail message with attachments.\n" " This installs the module plugin_outlook." msgstr "" +"Outlook залгаас нь өөрийн MS Outlook дотороос OpenERP-н обьектийг сонгон \n" +" имэйлийг түүнд нэмэх боломжийг олгодог. Харилцагч, сэжимийг " +"сонгож тухайн \n" +" имэйлийг OpenERP-руу оруулан архивлах боломжтой. \n" +" Энэ нь plugin_outlook модулийг суулгадаг." #. module: base_setup #: view:base.config.settings:0 @@ -315,6 +345,9 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" +"хийх зүйлс.\n" +" Идэвхжүүлсэн бол нэвтрэх хуудас нь " +"нийтийн веб хуудсаар солигдоно." #. module: base_setup #: field:base.config.settings,module_share:0 @@ -334,7 +367,7 @@ msgstr "Нийтийн порталь идэвхижүүлэх" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Гарах имэйл серверүүдийг тохируулах" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nb.po b/addons/base_setup/i18n/nb.po index 7e75b32eb92..388b204c094 100644 --- a/addons/base_setup/i18n/nb.po +++ b/addons/base_setup/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl.po b/addons/base_setup/i18n/nl.po index 1a32e9e3c3a..26f6dc6c82e 100644 --- a/addons/base_setup/i18n/nl.po +++ b/addons/base_setup/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-31 13:14+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-28 11:39+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-01 05:49+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -57,13 +57,13 @@ msgid "" " plugins for your preferred email application." msgstr "" "OpenERP maakt het mogelijk om automatisch leads (of anderen documenten)\n" -"                             van inkomende e-mails aan te maken. U kunt " +" van inkomende e-mails aan te maken. U kunt " "automatisch e-mails synchroniseren met OpenERP\n" -"                             met behulp van reguliere POP / IMAP-accounts, " +" met behulp van reguliere POP / IMAP-accounts, " "via een direct e-mail integratie script voor uw\n" -"                             e-mail server, of door handmatig uw e-mails te " +" e-mail server, of door handmatig uw e-mails te " "sturen naar OpenERP met behulp van specifieke\n" -"                             plugins voor uw favoriete e-mailprogramma." +" plugins voor uw favoriete e-mailprogramma." #. module: base_setup #: field:sale.config.settings,module_sale:0 @@ -160,7 +160,7 @@ msgstr "Klant opties" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "Importeren / Exporteren" +msgstr "Importeren" #. module: base_setup #: view:sale.config.settings:0 @@ -214,7 +214,7 @@ msgid "" msgstr "" "Werken in multi-company omgevingen, met de nodige beveiliging toegang tussen " "de bedrijven.\n" -"                 Dit installeert de module multi_company." +" Dit installeert de module multi_company." #. module: base_setup #: view:base.config.settings:0 @@ -224,8 +224,8 @@ msgid "" " launch the OpenERP Server with the option" msgstr "" "Het publiek portal is alleen toegankelijk als u zich in een enkele database-" -"modus bevind. u kunt\n" -"                                     de OpenERP Server starten met de optie" +"modus bevind. U kunt\n" +" de OpenERP Server starten met de optie" #. module: base_setup #: view:base.config.settings:0 @@ -259,12 +259,12 @@ msgid "" " etc." msgstr "" "Wanneer u een document naar een klant stuurt,\n" -"                                     (offerte, factuur), kan uw klant\n" -"                                     inloggen en inzage krijgen in zijn " +" (offerte, factuur), kan uw klant\n" +" inloggen en inzage krijgen in zijn " "documenten,\n" -"                                     uw bedrijfsnieuws lezen, zijn projecten " +" uw bedrijfsnieuws lezen, zijn projecten " "checken,\n" -"                                     enz.." +" enz.." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology @@ -296,14 +296,14 @@ msgid "" msgstr "" "Met de plugin kunt u e-mails en bijbehorende bijlagen koppelen aan de " "geselecteerde\n" -"                 OpenERP objecten. U kunt kiezen voor een relatie, of een " +" OpenERP objecten. U kunt kiezen voor een relatie, of een " "lead en\n" -"                 de geselecteerde e-mail koppelen als een. eml-bestand als " +" de geselecteerde e-mail koppelen als een. eml-bestand als " "bijlage\n" -"                 van het geselecteerde record. U kunt documenten aanmaken " +" van het geselecteerde record. U kunt documenten aanmaken " "voor CRM Lead,\n" -"                 en relaties van de geselecteerde e-mails. Dit installeert " -"de module plugin_thunderbird." +" en relaties van de geselecteerde e-mails. Dit installeert de " +"module plugin_thunderbird." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -333,12 +333,12 @@ msgid "" " This installs the module plugin_outlook." msgstr "" "Met de Outlook-plugin kunt u een object selecteren dat u wilt toevoegen\n" -"                 aan uw e-mail en de bijlagen van MS Outlook. U kunt een " +" aan uw e-mail en de bijlagen van MS Outlook. U kunt een " "relatie \n" -"                 of een lead kiezen en de geselecteerde e-mail archiveren in " +" of een lead kiezen en de geselecteerde e-mail archiveren in " "een\n" -"                 OpenERP mailbericht met bijlagen.\n" -"                 Dit installeert de module plugin_outlook." +" OpenERP mailbericht met bijlagen.\n" +" Dit installeert de module plugin_outlook." #. module: base_setup #: view:base.config.settings:0 @@ -357,9 +357,8 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" -"te doen.\n" -"                                     Eenmaal geactiveerd, zal de login " -"pagina worden vervangen door de openbare website." +"Eenmaal geactiveerd, zal de login pagina worden vervangen door de openbare " +"website." #. module: base_setup #: field:base.config.settings,module_share:0 diff --git a/addons/base_setup/i18n/nl_BE.po b/addons/base_setup/i18n/nl_BE.po index b82070ca8e4..52c306eaf6d 100644 --- a/addons/base_setup/i18n/nl_BE.po +++ b/addons/base_setup/i18n/nl_BE.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "E-mailintegratie" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -30,18 +30,19 @@ msgstr "Gast" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Contactpersonen" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 msgid "" "Use external authentication providers, sign in with google, facebook, ..." msgstr "" +"Gebruik externe verificatieproviders. Meld aan met Google, Facebook, ..." #. module: base_setup #: view:sale.config.settings:0 @@ -55,11 +56,19 @@ msgid "" "OpenERP using specific\n" " plugins for your preferred email application." msgstr "" +"OpenERP maakt het mogelijk om automatisch leads (of andere documenten)\n" +" aan te maken op basis van inkomende e-mails. U " +"kunt automatisch e-mails synchroniseren met OpenERP\n" +" met behulp van reguliere POP / IMAP-accounts, " +"via een direct e-mailintegratiescript voor uw\n" +" e-mailserver, of door zelf uw e-mails naar " +"OpenERP te sturen met behulp van specifieke\n" +" plug-ins voor uw favoriete e-mailprogramma." #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "VERKOOP" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -69,24 +78,24 @@ msgstr "Lid" #. module: base_setup #: view:base.config.settings:0 msgid "Portal access" -msgstr "" +msgstr "Portaaltoegang" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "" +msgstr "Verificatie" #. module: base_setup #: view:sale.config.settings:0 msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Offertes en verkooporders" #. module: base_setup #: view:base.config.settings:0 #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "Algemeen" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -96,12 +105,12 @@ msgstr "Donor" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "E-mail" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "Relatiebeheer" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -111,32 +120,32 @@ msgstr "Patiënt" #. module: base_setup #: field:base.config.settings,module_base_import:0 msgid "Allow users to import data from CSV files" -msgstr "" +msgstr "Gebruikers mogen gegevens importeren uit csv-bestanden" #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "" +msgstr "Meerdere bedrijven beheren" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "Op e-mailclient" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=UW_DATABASE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "" +msgstr "Haal contactpersonen op uit LinkedIn" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Activeer de Thunderbirdplug-in" #. module: base_setup #: view:base.setup.terminology:0 @@ -146,22 +155,22 @@ msgstr "res_config_contents" #. module: base_setup #: view:sale.config.settings:0 msgid "Customer Features" -msgstr "" +msgstr "Klantenopties" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "" +msgstr "Import / Export" #. module: base_setup #: view:sale.config.settings:0 msgid "Sale Features" -msgstr "" +msgstr "Verkoopopties" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Activeer de Outlookplug-in" #. module: base_setup #: view:base.setup.terminology:0 @@ -180,7 +189,7 @@ msgstr "Huurder" #. module: base_setup #: help:base.config.settings,module_share:0 msgid "Share or embbed any screen of openerp." -msgstr "" +msgstr "Gelijk welk scherm van OpenERP delen of insluiten" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -193,6 +202,8 @@ msgid "" "When you create a new contact (person or company), you will be able to load " "all the data from LinkedIn (photos, address, etc)." msgstr "" +"Als u een nieuwe contactpersoon maakt (persoon of bedrijf), kunt u alle " +"gegevens van LinkedIn laden (foto, adres, enz.)" #. module: base_setup #: help:base.config.settings,module_multi_company:0 @@ -201,6 +212,9 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Werken in omgevingen met meerdere bedrijven, met de nodige " +"toegangsbeveiliging tussen de bedrijven.\n" +" Hiermee installeert u de module multi_company." #. module: base_setup #: view:base.config.settings:0 @@ -209,6 +223,9 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"Het openbare portaal is alleen toegankelijk als u zich in een enkele " +"databasemodus bevindt. U kunt\n" +" de OpenERP-server starten met de optie" #. module: base_setup #: view:base.config.settings:0 @@ -216,11 +233,13 @@ msgid "" "You will find more options in your company details: address for the header " "and footer, overdue payments texts, etc." msgstr "" +"U vindt meer opties bij de bedrijfsgegevens: adres voor de kop- en " +"voettekst, teksten voor achterstallige betalingen, enz." #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: base_setup #: field:base.setup.terminology,partner:0 @@ -239,6 +258,12 @@ msgid "" "projects,\n" " etc." msgstr "" +"Wanneer u een document naar een klant stuurt,\n" +" (offerte, factuur), kan uw klant\n" +" aanmelden en zijn documenten bekijken,\n" +" uw bedrijfsnieuws lezen, zijn projecten " +"controleren,\n" +" enz." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology @@ -254,6 +279,8 @@ msgstr "Cliënt" #: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" +"Activeer het openbare deel van OpenERP; OpenERP wordt hiermee een openbare " +"website." #. module: base_setup #: help:sale.config.settings,module_plugin_thunderbird:0 @@ -266,6 +293,13 @@ msgid "" " Partner from the selected emails.\n" " This installs the module plugin_thunderbird." msgstr "" +"Met de plug-in kunt u e-mails met bijlagen koppelen aan de geselecteerde\n" +" OpenERP-objecten. U kunt een relatie of een lead kiezen en\n" +" de gekozen e-mail koppelen als een .eml-bestand als bijlage\n" +" aan het geselecteerde record. U kunt documenten aanmaken " +"voor CRM-lead\n" +" en relaties vanuit de geselecteerde e-mails. Hiermee " +"installeert u de module plugin_thunderbird." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -281,7 +315,7 @@ msgstr "Gebruik een andere benaming voor Klant" #: model:ir.actions.act_window,name:base_setup.action_sale_config #: view:sale.config.settings:0 msgid "Configure Sales" -msgstr "" +msgstr "Verkoop instellen" #. module: base_setup #: help:sale.config.settings,module_plugin_outlook:0 @@ -294,16 +328,23 @@ msgid "" " email into an OpenERP mail message with attachments.\n" " This installs the module plugin_outlook." msgstr "" +"Met de Outlookplug-in kunt u een object selecteren dat u wilt toevoegen\n" +" aan uw e-mail en de bijlagen van MS Outlook. U kunt een " +"relatie \n" +" of een lead kiezen en de geselecteerde e-mail archiveren in " +"een\n" +" OpenERP-mailbericht met bijlagen.\n" +" Hiermee installeert u de module plugin_outlook." #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Opties" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Klantenportaal activeren" #. module: base_setup #: view:base.config.settings:0 @@ -312,36 +353,37 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" +"Na activering zal de aanmeldpagina worden vervangen door de openbare website." #. module: base_setup #: field:base.config.settings,module_share:0 msgid "Allow documents sharing" -msgstr "" +msgstr "Sta het delen van documenten toe" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(bedrijfsnieuws, vacatures, contactformulier, enz.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Openbare portaal activeren" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Uitgaande e-mailservers instellen" #. module: base_setup #: view:sale.config.settings:0 msgid "Social Network Integration" -msgstr "" +msgstr "Integratie sociale netwerken" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Geef uw klanten toegang tot hun documenten." #. module: base_setup #: view:base.config.settings:0 @@ -353,7 +395,7 @@ msgstr "Afbreken" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Toepassen" #. module: base_setup #: view:base.setup.terminology:0 @@ -364,9 +406,9 @@ msgstr "Kies uw terminologie" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "of" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "Uw bedrijfsgegevens instellen" diff --git a/addons/base_setup/i18n/pl.po b/addons/base_setup/i18n/pl.po index 06d5d9908da..aefc69997b4 100644 --- a/addons/base_setup/i18n/pl.po +++ b/addons/base_setup/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pt.po b/addons/base_setup/i18n/pt.po index 8924c5f1f5b..389664f727f 100644 --- a/addons/base_setup/i18n/pt.po +++ b/addons/base_setup/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-24 09:53+0000\n" "Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" -"X-Generator: Launchpad (build 16445)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index acd14c9a7aa..2d3d5b5d2bf 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/i18n/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-26 20:54+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-27 05:09+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ro.po b/addons/base_setup/i18n/ro.po index 4f491c87275..caa2e474ee2 100644 --- a/addons/base_setup/i18n/ro.po +++ b/addons/base_setup/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 18:05+0000\n" -"Last-Translator: Fekete Mihai \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-01-24 05:35+0000\n" -"X-Generator: Launchpad (build 16445)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ru.po b/addons/base_setup/i18n/ru.po index f92a9331f7b..a46534b6776 100644 --- a/addons/base_setup/i18n/ru.po +++ b/addons/base_setup/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -42,6 +42,8 @@ msgstr "base.config.settings" msgid "" "Use external authentication providers, sign in with google, facebook, ..." msgstr "" +"Использовать внешние сервисы аутентификации, например, вход через google, " +"facebook, ..." #. module: base_setup #: view:sale.config.settings:0 @@ -69,7 +71,7 @@ msgstr "Участник" #. module: base_setup #: view:base.config.settings:0 msgid "Portal access" -msgstr "" +msgstr "Доступ к порталу" #. module: base_setup #: view:base.config.settings:0 @@ -193,6 +195,9 @@ msgid "" "When you create a new contact (person or company), you will be able to load " "all the data from LinkedIn (photos, address, etc)." msgstr "" +"Когда вы создаете новый контакт (человека или компанию), у вас есть " +"возможность загрузить из LinkedIn всю информацию о нем (адреса, фотографии и " +"т.д.)" #. module: base_setup #: help:base.config.settings,module_multi_company:0 @@ -201,6 +206,9 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Работать в режиме Мульти-компании, с соответствующими правами доступа между " +"компаниями.\n" +" Будет установлен модуль multi_company." #. module: base_setup #: view:base.config.settings:0 @@ -209,6 +217,9 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"Публичный портал доступен только при использовании одной базы данных. Вы " +"можете\n" +" запустить сервер OpenERP с этой опцией" #. module: base_setup #: view:base.config.settings:0 @@ -216,6 +227,8 @@ msgid "" "You will find more options in your company details: address for the header " "and footer, overdue payments texts, etc." msgstr "" +"Больше опций вы можете найти в настройках компании: адреса для " +"верхнего/нижнего колонтитула, тексты для просроченных платежей и т.д." #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings @@ -239,6 +252,14 @@ msgid "" "projects,\n" " etc." msgstr "" +"Когда вы отправляете заказчику документы\n" +" (прайсы, счета), для их получения он " +"сможет\n" +" войти на портал, где так же сможет " +"прочитать\n" +" новости вашей компании, узнать " +"обновления по\n" +" его проектам и т.д." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology @@ -253,7 +274,7 @@ msgstr "Клиент" #. module: base_setup #: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." -msgstr "" +msgstr "Включая публичную часть, openerp становится общедоступным сайтом." #. module: base_setup #: help:sale.config.settings,module_plugin_thunderbird:0 @@ -275,13 +296,13 @@ msgstr "Контрагент" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form msgid "Use another word to say \"Customer\"" -msgstr "" +msgstr "Использовать другое слово вместо \"Заказчик\"" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_sale_config #: view:sale.config.settings:0 msgid "Configure Sales" -msgstr "" +msgstr "Настройки продаж" #. module: base_setup #: help:sale.config.settings,module_plugin_outlook:0 @@ -298,12 +319,12 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Настройки" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Включить клиентский портал" #. module: base_setup #: view:base.config.settings:0 @@ -316,32 +337,32 @@ msgstr "" #. module: base_setup #: field:base.config.settings,module_share:0 msgid "Allow documents sharing" -msgstr "" +msgstr "Разрешить совместный доступ к документам" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(новости компании, вакансии, форма обратной связи т.д.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Включить публичный портал" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Настроить сервер(а) исходящей почты" #. module: base_setup #: view:sale.config.settings:0 msgid "Social Network Integration" -msgstr "" +msgstr "Интеграция с социальными сетями" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Разрешить заказчикам доступ к своим документам" #. module: base_setup #: view:base.config.settings:0 @@ -353,20 +374,20 @@ msgstr "Отмена" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Применить" #. module: base_setup #: view:base.setup.terminology:0 msgid "Specify Your Terminology" -msgstr "" +msgstr "Определить терминологию" #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "или" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "Настроить информацию о компании" diff --git a/addons/base_setup/i18n/sk.po b/addons/base_setup/i18n/sk.po index 5604190de03..a0bcd18c24d 100644 --- a/addons/base_setup/i18n/sk.po +++ b/addons/base_setup/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sl.po b/addons/base_setup/i18n/sl.po index 5815046aa96..d78999673f4 100644 --- a/addons/base_setup/i18n/sl.po +++ b/addons/base_setup/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-14 17:25+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sq.po b/addons/base_setup/i18n/sq.po index ef0ec45eff5..67b471c5418 100644 --- a/addons/base_setup/i18n/sq.po +++ b/addons/base_setup/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr.po b/addons/base_setup/i18n/sr.po index d9740ef52dd..247db0bfc59 100644 --- a/addons/base_setup/i18n/sr.po +++ b/addons/base_setup/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr@latin.po b/addons/base_setup/i18n/sr@latin.po index d5b1b25e9b0..474c7f53209 100644 --- a/addons/base_setup/i18n/sr@latin.po +++ b/addons/base_setup/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sv.po b/addons/base_setup/i18n/sv.po index 8b659186636..e6382026933 100644 --- a/addons/base_setup/i18n/sv.po +++ b/addons/base_setup/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-20 17:40+0000\n" "Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/th.po b/addons/base_setup/i18n/th.po index 935c22004d9..8e22179b191 100644 --- a/addons/base_setup/i18n/th.po +++ b/addons/base_setup/i18n/th.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tlh.po b/addons/base_setup/i18n/tlh.po index dad5617fa68..5f4b579e08a 100644 --- a/addons/base_setup/i18n/tlh.po +++ b/addons/base_setup/i18n/tlh.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Klingon \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tr.po b/addons/base_setup/i18n/tr.po index 18fe620cef4..734e283b167 100644 --- a/addons/base_setup/i18n/tr.po +++ b/addons/base_setup/i18n/tr.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-09 10:23+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-17 19:35+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-10 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "E-posta entegrasyonu" +msgstr "Eposta entegrasyonu" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -41,7 +41,7 @@ msgstr "base.config.settings" #: field:base.config.settings,module_auth_oauth:0 msgid "" "Use external authentication providers, sign in with google, facebook, ..." -msgstr "Dış doğrulama sağlayıcıları kullan, google, facebook, ... ile giriş" +msgstr "Dış doğrulama sağlayıcıları kullan, google, facebook ile giriş..." #. module: base_setup #: view:sale.config.settings:0 @@ -55,6 +55,14 @@ msgid "" "OpenERP using specific\n" " plugins for your preferred email application." msgstr "" +"OpenERP gelen epostalardan kendiliğinden adaylar oluşturur\n" +" (yada başka belgeler). OpenERP ile düzenli " +"POP/IMAP hesaplarını kullanarak,\n" +" eposta sunucunuz için doğrudan eposta " +"entegrasyon kodu kullanarak, ya da\n" +" yeğlediğiniz eposta uygulaması eklentileri " +"kullanarak epostaları elle\n" +" OpenERP ye itekleyebilirsiniz.." #. module: base_setup #: field:sale.config.settings,module_sale:0 @@ -74,7 +82,7 @@ msgstr "Portal erişimi" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "Kimlik doğrulaması" +msgstr "Kimlik doğrulama" #. module: base_setup #: view:sale.config.settings:0 @@ -91,7 +99,7 @@ msgstr "Genel Ayarlar" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Donor" -msgstr "Verici" +msgstr "Bağışçı" #. module: base_setup #: view:base.config.settings:0 @@ -126,12 +134,12 @@ msgstr "Posta İstemcisinde" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-süzgeçi=SİZİN_VERİTABANI" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "Linkedin'den otomatik olarak kişileri al" +msgstr "Linkedin'den kişileri otomatik al" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 @@ -169,8 +177,8 @@ msgid "" "You can use this wizard to change the terminologies for customers in the " "whole application." msgstr "" -"Bu sihirbazı kullanarak uygulamanın içinde müşterileriniz için farklı " -"terimler atayabilirsiniz. (Hasta, cari, müşteri,iş ortağı gibi)" +"Bu sihirbazı kullanarak tüm uygulamanın içinde müşteri terminolojilerini " +"değiştirebilirsiniz." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -203,6 +211,8 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Firmalar arasında uygun güvenli erişimle çok şirketli ortamlarda çalışın.\n" +" Bu, multi_company modülünü kurar." #. module: base_setup #: view:base.config.settings:0 @@ -211,6 +221,8 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"Genel portal, yalnızca tek veritabanlı oddaysanız erişilebilir. OpenERP\n" +" Sunucusunu bu seçenekle başlatabilirsiniz" #. module: base_setup #: view:base.config.settings:0 @@ -218,6 +230,8 @@ msgid "" "You will find more options in your company details: address for the header " "and footer, overdue payments texts, etc." msgstr "" +"Şirket ayrıntılarınızda daha çok seçenecek bulacaksınız: altbilgi ve " +"üstbilgi için adres ve vadesi geçmiş ödemeler için metinler, vb." #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings @@ -227,7 +241,7 @@ msgstr "sale.config.settings" #. module: base_setup #: field:base.setup.terminology,partner:0 msgid "How do you call a Customer" -msgstr "Müşterilerinize ne isim veriyorsunuz ?" +msgstr "Müşterilerinize nasıl isimlendiriyorsunuz ?" #. module: base_setup #: view:base.config.settings:0 @@ -241,6 +255,14 @@ msgid "" "projects,\n" " etc." msgstr "" +"Bir müşteriye bir belge gönderdiğinizde\n" +" (teklif, fatura), müşterileriniz bütün " +"bu\n" +" belgeleri alabilmek, şirket " +"haberlerinizi,\n" +" okuyabilmek, projelerini denetlemek, vb. " +"için\n" +" kayıt yapabilecektir." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology @@ -256,6 +278,7 @@ msgstr "Müşteri" #: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." msgstr "" +"Openerp nin genel kısmını etkinleştirince, openerp genel bir websitesi olur." #. module: base_setup #: help:sale.config.settings,module_plugin_thunderbird:0 @@ -268,11 +291,17 @@ msgid "" " Partner from the selected emails.\n" " This installs the module plugin_thunderbird." msgstr "" +"Eklenti, eposta ve eklerini seçtiğiniz OpenERP nesnelerine arşivlemenizi\n" +" sağlar. Bir iş ortağı ya da aday seçebilir ve seçilen bir \n" +" kayda ait eklere seçilen epostayı .eml dosyası olarak\n" +" ekleyebilirsiniz. Seçilen epostalarda CRM Adayları,\n" +" İş Ortakları oluşturabilirsiniz.\n" +" Bu, plugin_thunderbird modülünü kurar." #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "Cari" +msgstr "İş Ortağı" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form @@ -283,7 +312,7 @@ msgstr "\"Müşteri\" yerine başka bir söz seçin" #: model:ir.actions.act_window,name:base_setup.action_sale_config #: view:sale.config.settings:0 msgid "Configure Sales" -msgstr "" +msgstr "Satışları Yapılandır" #. module: base_setup #: help:sale.config.settings,module_plugin_outlook:0 @@ -296,6 +325,13 @@ msgid "" " email into an OpenERP mail message with attachments.\n" " This installs the module plugin_outlook." msgstr "" +"Outlook eklentisi, Ms Outlooktan epostalarınıza ve eklerine eklemek " +"isteyebileceğiniz\n" +" nesneleri seçmenizi sağlar. Bir iş ortağı ya da aday " +"seçebilir ve seçilmiş bir\n" +" epostayı ekleriyle birlikte bir OpenERP posta iletisine " +"ekleyebilirsiniz.\n" +" Bu, plugin_outlook modülünü kurar." #. module: base_setup #: view:base.config.settings:0 @@ -305,7 +341,7 @@ msgstr "Şeçenekler" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Müşteri portalını etkinleştir" #. module: base_setup #: view:base.config.settings:0 @@ -314,36 +350,39 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" +"bunu yapmak için.\n" +" Etkinleştirildiğinde, giriş sayfası " +"genel websitesiyle değiştirilecektir." #. module: base_setup #: field:base.config.settings,module_share:0 msgid "Allow documents sharing" -msgstr "" +msgstr "Belge paylaşımına izin ver" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(şirket haberleri, işler, iletişim formu, vb.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Genel portalı etkinleştir" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Giden eposta sunucusunu yapılandır" #. module: base_setup #: view:sale.config.settings:0 msgid "Social Network Integration" -msgstr "" +msgstr "Sosyal Ağ Entegrasyonu" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Müşterilerinize belgelerine erişim verin" #. module: base_setup #: view:base.config.settings:0 @@ -360,7 +399,7 @@ msgstr "Uygula" #. module: base_setup #: view:base.setup.terminology:0 msgid "Specify Your Terminology" -msgstr "Terminolojinizi Belirleyin" +msgstr "Terminolojinizi Belirtin" #. module: base_setup #: view:base.config.settings:0 @@ -371,4 +410,4 @@ msgstr "ya da" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "Şirket verilerinizi yapılandırın" diff --git a/addons/base_setup/i18n/uk.po b/addons/base_setup/i18n/uk.po index 1bc32e61e8d..91f93d9770d 100644 --- a/addons/base_setup/i18n/uk.po +++ b/addons/base_setup/i18n/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/vi.po b/addons/base_setup/i18n/vi.po index b3790a0c3b6..6e4a7e197ff 100644 --- a/addons/base_setup/i18n/vi.po +++ b/addons/base_setup/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po index 36d5709658d..e5ccd8e416b 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_TW.po b/addons/base_setup/i18n/zh_TW.po index 8ca160f5d46..7e8ed931c4c 100644 --- a/addons/base_setup/i18n/zh_TW.po +++ b/addons/base_setup/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-30 13:42+0000\n" "Last-Translator: Charles Hsu \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-01-31 05:17+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_status/base_state.py b/addons/base_status/base_state.py index b856bbd74ad..3fe59ecbd21 100644 --- a/addons/base_status/base_state.py +++ b/addons/base_status/base_state.py @@ -104,7 +104,7 @@ class base_state(object): if parent_id.change_responsible and parent_id.user_id: data['user_id'] = parent_id.user_id.id else: - raise osv.except_osv(_('Error !'), _('You can not escalate, you are already at the top level regarding your sales-team category.')) + raise osv.except_osv(_('Error!'), _('You can not escalate, you are already at the top level regarding your sales-team category.')) self.write(cr, uid, [case.id], data, context=context) case.case_escalate_send_note(parent_id, context=context) return True diff --git a/addons/base_status/i18n/ar.po b/addons/base_status/i18n/ar.po index b0956e2e162..b7f1d927e30 100644 --- a/addons/base_status/i18n/ar.po +++ b/addons/base_status/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/base_status.pot b/addons/base_status/i18n/base_status.pot index 3805dd46ce9..49c71fe731f 100644 --- a/addons/base_status/i18n/base_status.pot +++ b/addons/base_status/i18n/base_status.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/base_status/i18n/cs.po b/addons/base_status/i18n/cs.po new file mode 100644 index 00000000000..1d037beca89 --- /dev/null +++ b/addons/base_status/i18n/cs.po @@ -0,0 +1,76 @@ +# 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-30 12:43+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-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "Error !" +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:166 +#, python-format +msgid "%s has been opened." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:199 +#, python-format +msgid "%s has been renewed." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "Error!" +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "" +"You can not escalate, you are already at the top level regarding your sales-" +"team category." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:193 +#, python-format +msgid "%s is now pending." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:187 +#, python-format +msgid "%s has been canceled." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "" +"You are already at the top level of your sales-team category.\n" +"Therefore you cannot escalate furthermore." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:181 +#, python-format +msgid "%s has been closed." +msgstr "" diff --git a/addons/base_status/i18n/de.po b/addons/base_status/i18n/de.po index 23d0db7607a..ee190c3980f 100644 --- a/addons/base_status/i18n/de.po +++ b/addons/base_status/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/en_GB.po b/addons/base_status/i18n/en_GB.po index a4bd0b12960..11b31fa6e09 100644 --- a/addons/base_status/i18n/en_GB.po +++ b/addons/base_status/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-06 15:07+0000\n" "Last-Translator: mrx5682 \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/es.po b/addons/base_status/i18n/es.po index 8221fd39994..3f8fc169e3b 100644 --- a/addons/base_status/i18n/es.po +++ b/addons/base_status/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/fr.po b/addons/base_status/i18n/fr.po index c5a1a2871af..9f71553288b 100644 --- a/addons/base_status/i18n/fr.po +++ b/addons/base_status/i18n/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-03 14:49+0000\n" "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " "\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/hr.po b/addons/base_status/i18n/hr.po index d2f75ee7258..2781e786973 100644 --- a/addons/base_status/i18n/hr.po +++ b/addons/base_status/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/hu.po b/addons/base_status/i18n/hu.po new file mode 100644 index 00000000000..eab5928346c --- /dev/null +++ b/addons/base_status/i18n/hu.po @@ -0,0 +1,80 @@ +# 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-14 10:26+0000\n" +"Last-Translator: krnkris \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-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "Error !" +msgstr "Hiba!" + +#. module: base_status +#: code:addons/base_status/base_state.py:166 +#, python-format +msgid "%s has been opened." +msgstr "%s meg lett nyitva." + +#. module: base_status +#: code:addons/base_status/base_state.py:199 +#, python-format +msgid "%s has been renewed." +msgstr "%s meg lett újítva." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "Error!" +msgstr "Hiba!" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "" +"You can not escalate, you are already at the top level regarding your sales-" +"team category." +msgstr "" +"Nem tud feljebb lépni, már az értékesítési csoportját illetően a legmagasabb " +"fokon áll." + +#. module: base_status +#: code:addons/base_status/base_state.py:193 +#, python-format +msgid "%s is now pending." +msgstr "%s ez nem elintézetlen." + +#. module: base_status +#: code:addons/base_status/base_state.py:187 +#, python-format +msgid "%s has been canceled." +msgstr "%s ez visszavont." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "" +"You are already at the top level of your sales-team category.\n" +"Therefore you cannot escalate furthermore." +msgstr "" +"Már az értékesítési csoportjának a legmagasabb szintjén áll.\n" +"Ezért nem tud tovább feljebb lépni." + +#. module: base_status +#: code:addons/base_status/base_state.py:181 +#, python-format +msgid "%s has been closed." +msgstr "%s le lett Zárva." diff --git a/addons/base_status/i18n/id.po b/addons/base_status/i18n/id.po index bb0bf6c84c2..a7a42fda369 100644 --- a/addons/base_status/i18n/id.po +++ b/addons/base_status/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/it.po b/addons/base_status/i18n/it.po index 4e57ffe40f6..8d299714291 100644 --- a/addons/base_status/i18n/it.po +++ b/addons/base_status/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/lt.po b/addons/base_status/i18n/lt.po new file mode 100644 index 00000000000..6612d2851b3 --- /dev/null +++ b/addons/base_status/i18n/lt.po @@ -0,0 +1,76 @@ +# Lithuanian 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. +# Giedrius Slavinskas , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-30 16:27+0000\n" +"Last-Translator: Giedrius Slavinskas - inovera.lt \n" +"Language-Team: Lithuanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "Error !" +msgstr "Klaida!" + +#. module: base_status +#: code:addons/base_status/base_state.py:166 +#, python-format +msgid "%s has been opened." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:199 +#, python-format +msgid "%s has been renewed." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "Error!" +msgstr "Klaida!" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "" +"You can not escalate, you are already at the top level regarding your sales-" +"team category." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:193 +#, python-format +msgid "%s is now pending." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:187 +#, python-format +msgid "%s has been canceled." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "" +"You are already at the top level of your sales-team category.\n" +"Therefore you cannot escalate furthermore." +msgstr "" + +#. module: base_status +#: code:addons/base_status/base_state.py:181 +#, python-format +msgid "%s has been closed." +msgstr "" diff --git a/addons/base_status/i18n/mk.po b/addons/base_status/i18n/mk.po new file mode 100644 index 00000000000..277e245c9b7 --- /dev/null +++ b/addons/base_status/i18n/mk.po @@ -0,0 +1,80 @@ +# 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-13 08:04+0000\n" +"Last-Translator: Aleksandar Panov \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-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "Error !" +msgstr "Грешка !" + +#. module: base_status +#: code:addons/base_status/base_state.py:166 +#, python-format +msgid "%s has been opened." +msgstr "%s е отворен." + +#. module: base_status +#: code:addons/base_status/base_state.py:199 +#, python-format +msgid "%s has been renewed." +msgstr "%s е обновен." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "Error!" +msgstr "Грешка!" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "" +"You can not escalate, you are already at the top level regarding your sales-" +"team category." +msgstr "" +"Неможе да ескалирате, веќе сте на највисокото ниво со оглед на категоријата " +"на вашиот продажбен тим." + +#. module: base_status +#: code:addons/base_status/base_state.py:193 +#, python-format +msgid "%s is now pending." +msgstr "%s е во исчекување." + +#. module: base_status +#: code:addons/base_status/base_state.py:187 +#, python-format +msgid "%s has been canceled." +msgstr "%s е откажан." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "" +"You are already at the top level of your sales-team category.\n" +"Therefore you cannot escalate furthermore." +msgstr "" +"Веќе сте на највисокото ниво на вашиот продажбен тим.\n" +"Значи понатамошно ескалирање не е можно." + +#. module: base_status +#: code:addons/base_status/base_state.py:181 +#, python-format +msgid "%s has been closed." +msgstr "%s е затворен." diff --git a/addons/base_status/i18n/mn.po b/addons/base_status/i18n/mn.po index c6587421087..979ae4a3f0d 100644 --- a/addons/base_status/i18n/mn.po +++ b/addons/base_status/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-09 13:53+0000\n" "Last-Translator: gobi \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-02-10 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/nl.po b/addons/base_status/i18n/nl.po index cbaf69d2d2b..3a47798d76f 100644 --- a/addons/base_status/i18n/nl.po +++ b/addons/base_status/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/nl_BE.po b/addons/base_status/i18n/nl_BE.po new file mode 100644 index 00000000000..db75168a117 --- /dev/null +++ b/addons/base_status/i18n/nl_BE.po @@ -0,0 +1,80 @@ +# Dutch (Belgium) 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-15 16:40+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Dutch (Belgium) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "Error !" +msgstr "Fout" + +#. module: base_status +#: code:addons/base_status/base_state.py:166 +#, python-format +msgid "%s has been opened." +msgstr "%s is geopend." + +#. module: base_status +#: code:addons/base_status/base_state.py:199 +#, python-format +msgid "%s has been renewed." +msgstr "%s is vernieuwd." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "Error!" +msgstr "Fout" + +#. module: base_status +#: code:addons/base_status/base_state.py:107 +#, python-format +msgid "" +"You can not escalate, you are already at the top level regarding your sales-" +"team category." +msgstr "" +"U kunt niet escaleren; u heeft het hoogste niveau in de verkoopteams al " +"bereikt." + +#. module: base_status +#: code:addons/base_status/base_state.py:193 +#, python-format +msgid "%s is now pending." +msgstr "%s is wachtend." + +#. module: base_status +#: code:addons/base_status/base_state.py:187 +#, python-format +msgid "%s has been canceled." +msgstr "%s is geannuleerd." + +#. module: base_status +#: code:addons/base_status/base_stage.py:210 +#, python-format +msgid "" +"You are already at the top level of your sales-team category.\n" +"Therefore you cannot escalate furthermore." +msgstr "" +"U bent al op het hoogste niveau van uw verkoopteam.\n" +"U kunt dus niet verder escaleren." + +#. module: base_status +#: code:addons/base_status/base_state.py:181 +#, python-format +msgid "%s has been closed." +msgstr "%s is gesloten." diff --git a/addons/base_status/i18n/pl.po b/addons/base_status/i18n/pl.po index 8333da9ebb6..04605ecde4c 100644 --- a/addons/base_status/i18n/pl.po +++ b/addons/base_status/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pt.po b/addons/base_status/i18n/pt.po index 5632514aeb8..9b0ac0861c3 100644 --- a/addons/base_status/i18n/pt.po +++ b/addons/base_status/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-18 10:44+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pt_BR.po b/addons/base_status/i18n/pt_BR.po index 2b0babb133a..8d0812b7d0e 100644 --- a/addons/base_status/i18n/pt_BR.po +++ b/addons/base_status/i18n/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-20 02:22+0000\n" "Last-Translator: Fábio Martinelli - http://zupy.com.br " "\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-21 05:27+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/ro.po b/addons/base_status/i18n/ro.po index d1ef009a89b..2ce4784af01 100644 --- a/addons/base_status/i18n/ro.po +++ b/addons/base_status/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 18:24+0000\n" -"Last-Translator: Fekete Mihai \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-01-24 05:35+0000\n" -"X-Generator: Launchpad (build 16445)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/ru.po b/addons/base_status/i18n/ru.po index 2345c25d9a8..81e746dda69 100644 --- a/addons/base_status/i18n/ru.po +++ b/addons/base_status/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-28 10:04+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 @@ -27,13 +27,13 @@ msgstr "Ошибка !" #: code:addons/base_status/base_state.py:166 #, python-format msgid "%s has been opened." -msgstr "" +msgstr "%s было открыто." #. module: base_status #: code:addons/base_status/base_state.py:199 #, python-format msgid "%s has been renewed." -msgstr "" +msgstr "%s было обновлено." #. module: base_status #: code:addons/base_status/base_stage.py:210 @@ -55,13 +55,13 @@ msgstr "" #: code:addons/base_status/base_state.py:193 #, python-format msgid "%s is now pending." -msgstr "" +msgstr "%s сейчас в ожидании." #. module: base_status #: code:addons/base_status/base_state.py:187 #, python-format msgid "%s has been canceled." -msgstr "" +msgstr "%s было отменено." #. module: base_status #: code:addons/base_status/base_stage.py:210 @@ -70,9 +70,11 @@ msgid "" "You are already at the top level of your sales-team category.\n" "Therefore you cannot escalate furthermore." msgstr "" +"Вы уже на высшем уровне категории вашей команды продаж.\n" +"Поэтому вы не можете обострить." #. module: base_status #: code:addons/base_status/base_state.py:181 #, python-format msgid "%s has been closed." -msgstr "" +msgstr "%s было закрыто." diff --git a/addons/base_status/i18n/sl.po b/addons/base_status/i18n/sl.po index e793e68aa6c..6f832978fec 100644 --- a/addons/base_status/i18n/sl.po +++ b/addons/base_status/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-29 12:15+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/tr.po b/addons/base_status/i18n/tr.po index 4cada919ee9..3a216c1e610 100644 --- a/addons/base_status/i18n/tr.po +++ b/addons/base_status/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-03 12:04+0000\n" "Last-Translator: FULL NAME \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-02-04 05:42+0000\n" -"X-Generator: Launchpad (build 16462)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/zh_CN.po b/addons/base_status/i18n/zh_CN.po index c061e63cab8..5bc664a5076 100644 --- a/addons/base_status/i18n/zh_CN.po +++ b/addons/base_status/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/zh_TW.po b/addons/base_status/i18n/zh_TW.po index bf9606c3ab5..ddb1ac12386 100644 --- a/addons/base_status/i18n/zh_TW.po +++ b/addons/base_status/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-30 14:21+0000\n" "Last-Translator: Charles Hsu \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-01-31 05:17+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_vat/base_vat.py b/addons/base_vat/base_vat.py index 616333e3b47..ab3e6b71e40 100644 --- a/addons/base_vat/base_vat.py +++ b/addons/base_vat/base_vat.py @@ -83,6 +83,8 @@ class res_partner(osv.osv): Check the VAT number depending of the country. http://sima-pc.com/nif.php ''' + if not ustr(country_code).encode('utf-8').isalpha(): + return False check_func_name = 'check_vat_' + country_code check_func = getattr(self, check_func_name, None) or \ getattr(vatnumber, check_func_name, None) @@ -134,6 +136,9 @@ class res_partner(osv.osv): 'vat_subjected': fields.boolean('VAT Legal Statement', help="Check this box if the partner is subjected to the VAT. It will be used for the VAT legal statement.") } + def _commercial_fields(self, cr, uid, context=None): + return super(res_partner, self)._commercial_fields(cr, uid, context=context) + ['vat_subjected'] + def _construct_constraint_msg(self, cr, uid, ids, context=None): def default_vat_check(cn, vn): # by default, a VAT number is valid if: diff --git a/addons/base_vat/i18n/ar.po b/addons/base_vat/i18n/ar.po index 40bb4a99745..8d1b01600bc 100644 --- a/addons/base_vat/i18n/ar.po +++ b/addons/base_vat/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "تأكد من صحته" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "الشركات" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "خطأ!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/base_vat.pot b/addons/base_vat/i18n/base_vat.pot index d4fdf471d05..8957a7731d1 100644 --- a/addons/base_vat/i18n/base_vat.pot +++ b/addons/base_vat/i18n/base_vat.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "This VAT number does not seem to be valid.\n" "Note: the expected format is %s" @@ -38,11 +38,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "Check this box if the partner is subjected to the VAT. It will be used for the VAT legal statement." diff --git a/addons/base_vat/i18n/bg.po b/addons/base_vat/i18n/bg.po index df25c0b1fc4..8055d9cc366 100644 --- a/addons/base_vat/i18n/bg.po +++ b/addons/base_vat/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "Фирми" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/bs.po b/addons/base_vat/i18n/bs.po index 0a4bb9d7406..b63766e32f7 100644 --- a/addons/base_vat/i18n/bs.po +++ b/addons/base_vat/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/ca.po b/addons/base_vat/i18n/ca.po index 7d4d9eaddfa..2f3c3644570 100644 --- a/addons/base_vat/i18n/ca.po +++ b/addons/base_vat/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/cs.po b/addons/base_vat/i18n/cs.po index 51a37956870..05152888d74 100644 --- a/addons/base_vat/i18n/cs.po +++ b/addons/base_vat/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-30 10:17+0000\n" "Last-Translator: Jan Grmela \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Ověřit platnost" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Společnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Chyba!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/da.po b/addons/base_vat/i18n/da.po index 02e37c55a44..0971b8381cb 100644 --- a/addons/base_vat/i18n/da.po +++ b/addons/base_vat/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/de.po b/addons/base_vat/i18n/de.po index 99d4aa69702..fb3e947ea14 100644 --- a/addons/base_vat/i18n/de.po +++ b/addons/base_vat/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Gültigkeit überprüfen" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Unternehmen" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Fehler !" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/el.po b/addons/base_vat/i18n/el.po index 3274018ae04..e4c333ee997 100644 --- a/addons/base_vat/i18n/el.po +++ b/addons/base_vat/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/en_AU.po b/addons/base_vat/i18n/en_AU.po index 9d73d59c6dc..d0c62aa14cc 100644 --- a/addons/base_vat/i18n/en_AU.po +++ b/addons/base_vat/i18n/en_AU.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Australia) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/en_GB.po b/addons/base_vat/i18n/en_GB.po index 40281a182e8..db1ce30b7fb 100644 --- a/addons/base_vat/i18n/en_GB.po +++ b/addons/base_vat/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-06 14:32+0000\n" "Last-Translator: mrx5682 \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Check Validity" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Companies" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Error!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/es.po b/addons/base_vat/i18n/es.po index 452b06c317f..4c6cffebc3a 100644 --- a/addons/base_vat/i18n/es.po +++ b/addons/base_vat/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Verificar validez" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "Compañías" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "¡Error!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po index 932b01798a0..7e494f1f852 100644 --- a/addons/base_vat/i18n/es_AR.po +++ b/addons/base_vat/i18n/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Argentina) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/es_CL.po b/addons/base_vat/i18n/es_CL.po index 82c84986420..9e83d5c35fa 100644 --- a/addons/base_vat/i18n/es_CL.po +++ b/addons/base_vat/i18n/es_CL.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Chile) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Compañías" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/es_CR.po b/addons/base_vat/i18n/es_CR.po index 6e939214fbc..f16ef74c78b 100644 --- a/addons/base_vat/i18n/es_CR.po +++ b/addons/base_vat/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Compañias" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/es_EC.po b/addons/base_vat/i18n/es_EC.po index 58b967c2072..69989e120dd 100644 --- a/addons/base_vat/i18n/es_EC.po +++ b/addons/base_vat/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "Compañías" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/es_MX.po b/addons/base_vat/i18n/es_MX.po index c9c56608872..b582631fc07 100644 --- a/addons/base_vat/i18n/es_MX.po +++ b/addons/base_vat/i18n/es_MX.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/es_PY.po b/addons/base_vat/i18n/es_PY.po index 5be35bb4431..6e29a4713c4 100644 --- a/addons/base_vat/i18n/es_PY.po +++ b/addons/base_vat/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/et.po b/addons/base_vat/i18n/et.po index 5e43df901d4..1494d64c0f2 100644 --- a/addons/base_vat/i18n/et.po +++ b/addons/base_vat/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/eu.po b/addons/base_vat/i18n/eu.po index 7ed1ff40292..c7748ec83a0 100644 --- a/addons/base_vat/i18n/eu.po +++ b/addons/base_vat/i18n/eu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/fa.po b/addons/base_vat/i18n/fa.po index 4f2521f845a..45e27ddb3a4 100644 --- a/addons/base_vat/i18n/fa.po +++ b/addons/base_vat/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/fi.po b/addons/base_vat/i18n/fi.po index 661c48dcc34..322c80121c3 100644 --- a/addons/base_vat/i18n/fi.po +++ b/addons/base_vat/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Yritykset" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/fr.po b/addons/base_vat/i18n/fr.po index 4b45531edbe..af8af08304f 100644 --- a/addons/base_vat/i18n/fr.po +++ b/addons/base_vat/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-14 16:40+0000\n" +"Last-Translator: Quentin THEURET \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Vérifier la validité" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Sociétés" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Erreur!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "e.g. BE0477472701" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/gl.po b/addons/base_vat/i18n/gl.po index 9648c0e5f1e..3477eacd355 100644 --- a/addons/base_vat/i18n/gl.po +++ b/addons/base_vat/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/gu.po b/addons/base_vat/i18n/gu.po index 5eb6e23eb61..7cc15ffa92a 100644 --- a/addons/base_vat/i18n/gu.po +++ b/addons/base_vat/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "કંપનીઓ" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/hr.po b/addons/base_vat/i18n/hr.po index f4c9facb386..2607482354c 100644 --- a/addons/base_vat/i18n/hr.po +++ b/addons/base_vat/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-05 23:42+0000\n" -"Last-Translator: Davor Bojkić \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-14 09:46+0000\n" +"Last-Translator: Damir Tušek \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-02-06 05:46+0000\n" -"X-Generator: Launchpad (build 16468)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Provjera točnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Organizacije" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Greška!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "modul: osnovno_porezi (base_vat)" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/hu.po b/addons/base_vat/i18n/hu.po index a992548aa1e..16efa9bdbec 100644 --- a/addons/base_vat/i18n/hu.po +++ b/addons/base_vat/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-17 12:28+0000\n" -"Last-Translator: Balint (eSolve) \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-14 10:21+0000\n" +"Last-Translator: krnkris \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-02-18 05:25+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Érvényesség ellenőrzés" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Vállalatok" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Hiba!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "pl.: BE0477472701" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/id.po b/addons/base_vat/i18n/id.po index 61043070249..698e31a8780 100644 --- a/addons/base_vat/i18n/id.po +++ b/addons/base_vat/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Perusahaan" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po index 2c76ec53d7e..ca4dd39cb80 100644 --- a/addons/base_vat/i18n/it.po +++ b/addons/base_vat/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Verifica Validità" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Aziende" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Errore!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/ja.po b/addons/base_vat/i18n/ja.po index 38d5c0bb4c4..da5a0e09575 100644 --- a/addons/base_vat/i18n/ja.po +++ b/addons/base_vat/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "会社" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/ko.po b/addons/base_vat/i18n/ko.po index 0c90afc31f1..3821c929577 100644 --- a/addons/base_vat/i18n/ko.po +++ b/addons/base_vat/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/lt.po b/addons/base_vat/i18n/lt.po index ea2c13f8fa9..9b55b3dacd3 100644 --- a/addons/base_vat/i18n/lt.po +++ b/addons/base_vat/i18n/lt.po @@ -1,62 +1,69 @@ # Lithuanian 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. +# Giedrius Slavinskas , 2012. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-05-01 21:50+0000\n" +"Last-Translator: Paulius Sladkevičius @ hbee \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Tikrinti kodą" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" "Note: the expected format is %s" msgstr "" +"Šis PVM kodas nėra teisingas.\n" +"Pastaba: tikėtinas kodo formatas yra %s" #. module: base_vat #: field:res.company,vat_check_vies:0 msgid "VIES VAT Check" -msgstr "" +msgstr "VIES PVM tikrinimas" #. module: base_vat #: model:ir.model,name:base_vat.model_res_company msgid "Companies" -msgstr "" +msgstr "Įmonės" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" + +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "pvz. BE0477472701" #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" "Check this box if the partner is subjected to the VAT. It will be used for " "the VAT legal statement." -msgstr "" +msgstr "Pažymėkite šį lauką jeigu partneris yra PVM mokėtojas." #. module: base_vat #: model:ir.model,name:base_vat.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: base_vat #: help:res.company,vat_check_vies:0 @@ -64,6 +71,8 @@ msgid "" "If checked, Partners VAT numbers will be fully validated against EU's VIES " "service rather than via a simple format validation (checksum)." msgstr "" +"Jeigu pažymėta, partnerių PVM kodai bus patikrinti ES VIES sistemoje, vietoj " +"paprasto kodo formato patikrinimo (kontrolinės sumos)." #. module: base_vat #: field:res.partner,vat_subjected:0 diff --git a/addons/base_vat/i18n/lv.po b/addons/base_vat/i18n/lv.po index 4db809422a0..7b1ddc0929e 100644 --- a/addons/base_vat/i18n/lv.po +++ b/addons/base_vat/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/mk.po b/addons/base_vat/i18n/mk.po new file mode 100644 index 00000000000..19d25504c55 --- /dev/null +++ b/addons/base_vat/i18n/mk.po @@ -0,0 +1,81 @@ +# 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. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-28 22:18+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" + +#. module: base_vat +#: view:res.partner:0 +msgid "Check Validity" +msgstr "Провери валидност" + +#. module: base_vat +#: code:addons/base_vat/base_vat.py:152 +#, python-format +msgid "" +"This VAT number does not seem to be valid.\n" +"Note: the expected format is %s" +msgstr "" +"Овој ДДВ број не е валиден.\n" +"Забелешка: Форматот треба да биде %s" + +#. module: base_vat +#: field:res.company,vat_check_vies:0 +msgid "VIES VAT Check" +msgstr "VIES ДДВ проверка" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Компании" + +#. module: base_vat +#: code:addons/base_vat/base_vat.py:113 +#, python-format +msgid "Error!" +msgstr "Грешка!" + +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "на пр. BE0477472701" + +#. module: base_vat +#: help:res.partner,vat_subjected:0 +msgid "" +"Check this box if the partner is subjected to the VAT. It will be used for " +"the VAT legal statement." +msgstr "" +"Штиклирајте доколку партнерот е ДДВ обврзник. Тоа ќе биде искористено за ДДВ " +"пријавата." + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Partner" +msgstr "Партнер" + +#. module: base_vat +#: help:res.company,vat_check_vies:0 +msgid "" +"If checked, Partners VAT numbers will be fully validated against EU's VIES " +"service rather than via a simple format validation (checksum)." +msgstr "" + +#. module: base_vat +#: field:res.partner,vat_subjected:0 +msgid "VAT Legal Statement" +msgstr "ДДВ пријава" diff --git a/addons/base_vat/i18n/mn.po b/addons/base_vat/i18n/mn.po index 0b3fb6bf863..7fcb35f0a7b 100644 --- a/addons/base_vat/i18n/mn.po +++ b/addons/base_vat/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-09 13:50+0000\n" "Last-Translator: gobi \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-02-10 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Зөв байдлыг Шалгах" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Компаниуд" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Алдаа!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/nb.po b/addons/base_vat/i18n/nb.po index c0379bce857..a43aa21137f 100644 --- a/addons/base_vat/i18n/nb.po +++ b/addons/base_vat/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Firmaer" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/nl.po b/addons/base_vat/i18n/nl.po index 56b35060a01..6361a435c0d 100644 --- a/addons/base_vat/i18n/nl.po +++ b/addons/base_vat/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-19 15:21+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-10 08:23+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-20 05:28+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Controleer geldigheid" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Bedrijven" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Fout!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "Bijv. NL001234567B01" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po index 8fa76ca3553..e728452a1ee 100644 --- a/addons/base_vat/i18n/nl_BE.po +++ b/addons/base_vat/i18n/nl_BE.po @@ -7,23 +7,23 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Geldigheid controleren" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,9 +43,14 @@ msgid "Companies" msgstr "Bedrijven" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" +msgstr "Fout" + +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" msgstr "" #. module: base_vat diff --git a/addons/base_vat/i18n/oc.po b/addons/base_vat/i18n/oc.po index 1b3c843cd4d..e1f1f4c8626 100644 --- a/addons/base_vat/i18n/oc.po +++ b/addons/base_vat/i18n/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/pl.po b/addons/base_vat/i18n/pl.po index 7ddff752b4e..3fb741af83a 100644 --- a/addons/base_vat/i18n/pl.po +++ b/addons/base_vat/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Sprawdź poprawność" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Firmy" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Błąd!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/pt.po b/addons/base_vat/i18n/pt.po index d7ca077ed99..0c3a63c3889 100644 --- a/addons/base_vat/i18n/pt.po +++ b/addons/base_vat/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Verificar a validade" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Empresas" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Erro!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po index ae108be5d6e..4b00228a3a8 100644 --- a/addons/base_vat/i18n/pt_BR.po +++ b/addons/base_vat/i18n/pt_BR.po @@ -7,15 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-16 05:44+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +24,7 @@ msgid "Check Validity" msgstr "Verificar Validade" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +44,16 @@ msgid "Companies" msgstr "Empresas" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Erro!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "ex: BE0477472701" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po index ded711f8bc7..402fce5bdfb 100644 --- a/addons/base_vat/i18n/ro.po +++ b/addons/base_vat/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-20 09:15+0000\n" -"Last-Translator: Fekete Mihai \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-07 18:36+0000\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-01-21 05:27+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Verifica Valabilitatea" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Companii" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Eroare!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "de exemplu BE0477472701" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/ru.po b/addons/base_vat/i18n/ru.po index e6e92208212..bdea4bb0f88 100644 --- a/addons/base_vat/i18n/ru.po +++ b/addons/base_vat/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Проверить правильность" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Компании" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Ошибка!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/sk.po b/addons/base_vat/i18n/sk.po index 633024437fa..f3163a8258b 100644 --- a/addons/base_vat/i18n/sk.po +++ b/addons/base_vat/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "Spoločnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po index 81d0626400c..ca84a58c688 100644 --- a/addons/base_vat/i18n/sl.po +++ b/addons/base_vat/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-01 22:27+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-31 12:00+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Kontrola pravilnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Podjetja" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Napaka!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "e.g. BE0477472701" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/sq.po b/addons/base_vat/i18n/sq.po index f995488e02b..be1111972d2 100644 --- a/addons/base_vat/i18n/sq.po +++ b/addons/base_vat/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/sr.po b/addons/base_vat/i18n/sr.po index f710c698286..4de89804811 100644 --- a/addons/base_vat/i18n/sr.po +++ b/addons/base_vat/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/sr@latin.po b/addons/base_vat/i18n/sr@latin.po index 94ca172fcd6..4ed46c23a32 100644 --- a/addons/base_vat/i18n/sr@latin.po +++ b/addons/base_vat/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/sv.po b/addons/base_vat/i18n/sv.po index 3ce9992b118..d3307af6837 100644 --- a/addons/base_vat/i18n/sv.po +++ b/addons/base_vat/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Bolag" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/th.po b/addons/base_vat/i18n/th.po index 54b849eeeb1..5790c13b4f4 100644 --- a/addons/base_vat/i18n/th.po +++ b/addons/base_vat/i18n/th.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/tlh.po b/addons/base_vat/i18n/tlh.po index 8e9d0593bf2..bd380648858 100644 --- a/addons/base_vat/i18n/tlh.po +++ b/addons/base_vat/i18n/tlh.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Klingon \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po index b32007c3100..bbec425f50e 100644 --- a/addons/base_vat/i18n/tr.po +++ b/addons/base_vat/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-08 07:21+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-08 21:15+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-09 05:29+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Geçerliliğini Kontrol et" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,11 +43,16 @@ msgid "Companies" msgstr "Firmalar" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Hata!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "örn. BE0477472701" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/uk.po b/addons/base_vat/i18n/uk.po index 5d61719966e..ef1bf8b12c7 100644 --- a/addons/base_vat/i18n/uk.po +++ b/addons/base_vat/i18n/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/vi.po b/addons/base_vat/i18n/vi.po index ce31184e4e4..e4eb0ebf421 100644 --- a/addons/base_vat/i18n/vi.po +++ b/addons/base_vat/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index 25262651f56..d3505a8bada 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-08 14:12+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "检查有效性" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "公司" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "错误!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "举例: BE0477472701" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po index baeb465e00f..226758cc942 100644 --- a/addons/base_vat/i18n/zh_TW.po +++ b/addons/base_vat/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-01 18:32+0000\n" "Last-Translator: Charles Hsu \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-02-02 05:59+0000\n" -"X-Generator: Launchpad (build 16462)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,11 +41,16 @@ msgid "Companies" msgstr "公司" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "錯誤!" +#. module: base_vat +#: view:res.partner:0 +msgid "e.g. BE0477472701" +msgstr "" + #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" diff --git a/addons/board/i18n/ar.po b/addons/board/i18n/ar.po index 1602e59379a..01389493d3a 100644 --- a/addons/board/i18n/ar.po +++ b/addons/board/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-27 22:02+0000\n" "Last-Translator: gehad shaat \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bg.po b/addons/board/i18n/bg.po index 7428495a179..0e250c1d971 100644 --- a/addons/board/i18n/bg.po +++ b/addons/board/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/board.pot b/addons/board/i18n/board.pot index 3293c8193fc..c910b8bbb1c 100644 --- a/addons/board/i18n/board.pot +++ b/addons/board/i18n/board.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/board/i18n/br.po b/addons/board/i18n/br.po index 91069c745c1..290b1a4a9f9 100644 --- a/addons/board/i18n/br.po +++ b/addons/board/i18n/br.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Breton \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bs.po b/addons/board/i18n/bs.po index a367ca418fc..3dffb08832c 100644 --- a/addons/board/i18n/bs.po +++ b/addons/board/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ca.po b/addons/board/i18n/ca.po index 0b41b7e10ff..6b81aea6525 100644 --- a/addons/board/i18n/ca.po +++ b/addons/board/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/cs.po b/addons/board/i18n/cs.po index 1df58b7b94d..e36a9f94ab3 100644 --- a/addons/board/i18n/cs.po +++ b/addons/board/i18n/cs.po @@ -7,59 +7,59 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-27 05:01+0000\n" +"Last-Translator: Radomil Urbánek \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "Vytvořit nástěnku" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "vytvořit" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "Uspořádání se obnoví do výchozího stavu..." #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "" +msgstr "Vytvořit novou nástěnku" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "" +msgstr "Vyberte uspořádání nástěnky" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "Přidat" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:139 #, python-format msgid "Are you sure you want to remove this item ?" -msgstr "" +msgstr "Opravdu chcete tuto položku odstranit?" #. module: board #: model:ir.model,name:board.model_board_board @@ -71,31 +71,31 @@ msgstr "Tabule" #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "Osobní nástěnka" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "Název" #. module: board #: model:ir.model,name:board.model_board_create msgid "Board Creation" -msgstr "" +msgstr "Vytvoření nástěnky" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "Přidat na nástěnku" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:28 #, python-format msgid " " -msgstr "" +msgstr " " #. module: board #: model:ir.actions.act_window,help:board.open_board_my_dash_action @@ -115,39 +115,56 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Vaše osobní nástěnka je prázdná.\n" +"

\n" +" Chcete-li přidat první sestavu na vaši nástěnku, " +"klepněte na terékoliv\n" +" horní menu, přepněte se do zobrazení 'seznam' nebo " +"'graf', \n" +" a v pokročilém vyhledávání klepněte na 'Přidat na " +"nástěnku'.\n" +"

\n" +" Data můžete před přidáním na nástěnku filtrovat a " +"seskupovat\n" +" použitím vyhledávacích voleb.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "Obnovit uspořádání" #. module: board #: field:board.create,menu_parent_id:0 msgid "Parent Menu" -msgstr "Nadřazená nabídka" +msgstr "Nadřazené menu" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "" +msgstr "Můžete změnit uspořádání sestav na nástěnce..." #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "" +msgstr "Upravit uspořádání" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "" +msgstr "Změnit uspořádání" #. module: board #: view:board.create:0 @@ -157,11 +174,11 @@ msgstr "Zrušit" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Název nové položky nástěnky" diff --git a/addons/board/i18n/da.po b/addons/board/i18n/da.po index 48395a79327..c109ceecb3d 100644 --- a/addons/board/i18n/da.po +++ b/addons/board/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/de.po b/addons/board/i18n/de.po index a45fe3bb9af..ce49151ae88 100644 --- a/addons/board/i18n/de.po +++ b/addons/board/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-29 08:58+0000\n" "Last-Translator: Felix Schubert \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-30 05:19+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/el.po b/addons/board/i18n/el.po index ff90cddee0b..62404839629 100644 --- a/addons/board/i18n/el.po +++ b/addons/board/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/en_GB.po b/addons/board/i18n/en_GB.po index 4e39e286f4f..2f3f00dfde7 100644 --- a/addons/board/i18n/en_GB.po +++ b/addons/board/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-07 20:04+0000\n" "Last-Translator: mrx5682 \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-08 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es.po b/addons/board/i18n/es.po index 5fceb83cb89..2a589bedc8e 100644 --- a/addons/board/i18n/es.po +++ b/addons/board/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_AR.po b/addons/board/i18n/es_AR.po index fe07c323164..faca70c97d5 100644 --- a/addons/board/i18n/es_AR.po +++ b/addons/board/i18n/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Argentina) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CL.po b/addons/board/i18n/es_CL.po index 5a24512ddb1..7f48b405dce 100644 --- a/addons/board/i18n/es_CL.po +++ b/addons/board/i18n/es_CL.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Chile) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CR.po b/addons/board/i18n/es_CR.po index ba8eab3b2f9..2325b7d524b 100644 --- a/addons/board/i18n/es_CR.po +++ b/addons/board/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_EC.po b/addons/board/i18n/es_EC.po index c16da0cb6c8..764ae0d9ff3 100644 --- a/addons/board/i18n/es_EC.po +++ b/addons/board/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_PY.po b/addons/board/i18n/es_PY.po index d8fd0769a75..60f88a4b084 100644 --- a/addons/board/i18n/es_PY.po +++ b/addons/board/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/et.po b/addons/board/i18n/et.po index dac02fb20e7..3ae5ba54dcf 100644 --- a/addons/board/i18n/et.po +++ b/addons/board/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fa.po b/addons/board/i18n/fa.po index bc5cf00329f..8ac8f3a26c6 100644 --- a/addons/board/i18n/fa.po +++ b/addons/board/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fi.po b/addons/board/i18n/fi.po index db721d15bb6..053203c8c3c 100644 --- a/addons/board/i18n/fi.po +++ b/addons/board/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fr.po b/addons/board/i18n/fr.po index 708b128711b..fc87208af21 100644 --- a/addons/board/i18n/fr.po +++ b/addons/board/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gl.po b/addons/board/i18n/gl.po index 8b1530d0aba..ebd033df8db 100644 --- a/addons/board/i18n/gl.po +++ b/addons/board/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gu.po b/addons/board/i18n/gu.po index 7e0ea90af6c..82dc29c9be5 100644 --- a/addons/board/i18n/gu.po +++ b/addons/board/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hr.po b/addons/board/i18n/hr.po index 474d0b0773b..0bf4544496c 100644 --- a/addons/board/i18n/hr.po +++ b/addons/board/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-06 08:41+0000\n" "Last-Translator: Davor Bojkić \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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hu.po b/addons/board/i18n/hu.po index 62ffb5d9bae..7b2d49e1dd3 100644 --- a/addons/board/i18n/hu.po +++ b/addons/board/i18n/hu.po @@ -7,59 +7,59 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-14 10:21+0000\n" +"Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "Vezérlőpult létrehozás" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "Létrehozás" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "Nézet visszaállítása.." #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "" +msgstr "Új Dashboard/Műszerfal létrehozása" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "" +msgstr "Dashboard/Műszerfal nézet kiválasztása" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "Hozzáadás" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:139 #, python-format msgid "Are you sure you want to remove this item ?" -msgstr "" +msgstr "Biztosan el szeretné távolítani ezt az elemet?" #. module: board #: model:ir.model,name:board.model_board_board @@ -71,31 +71,31 @@ msgstr "Vezérlőpult" #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "Dashboard/Műszerfalam" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "Vezérlőpult neve" #. module: board #: model:ir.model,name:board.model_board_create msgid "Board Creation" -msgstr "" +msgstr "Vezérlőpult létrehozás" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "Hozzáadás Dashboard/Műszerfalhoz" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:28 #, python-format msgid " " -msgstr "" +msgstr " " #. module: board #: model:ir.actions.act_window,help:board.open_board_my_dash_action @@ -115,13 +115,30 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" A személyes Dashboard/Műszerfala üres.\n" +"

\n" +" Az első jelentés Dashboard/Műszerfalhoz való " +"hozzáadásához, \n" +" lépjen bármely menübe, váltson lista vagy grafikus " +"nézetre, és kattintson\n" +" a kiterjesztett keresési lehetőségeknél ide " +"'Dashboard/Műszerfalhoz hozzáadás'.\n" +"

\n" +" Szűrheti a csoport adatokat, a keresési lehetőségekkel, " +"mielőtt \n" +" beillesztené azokat a Dashboard/Műszerfal-ba.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "Visszaállítás" #. module: board #: field:board.create,menu_parent_id:0 @@ -133,35 +150,35 @@ msgstr "Főmenü" #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "" +msgstr "Nézet megváltoztatása.." #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "" +msgstr "Nézet szerkesztése" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "" +msgstr "Nézet megváltoztatása" #. module: board #: view:board.create:0 msgid "Cancel" -msgstr "Mégsem" +msgstr "Visszavonás" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Az új Dashboard/Műszerfal elem neve" diff --git a/addons/board/i18n/id.po b/addons/board/i18n/id.po index b41748aa85a..8eeaa20b166 100644 --- a/addons/board/i18n/id.po +++ b/addons/board/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/it.po b/addons/board/i18n/it.po index d01ced267a5..0ff28924018 100644 --- a/addons/board/i18n/it.po +++ b/addons/board/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ja.po b/addons/board/i18n/ja.po index b592f0a9fe6..5bb02531863 100644 --- a/addons/board/i18n/ja.po +++ b/addons/board/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ko.po b/addons/board/i18n/ko.po index c66b092bbdf..e4a6192d363 100644 --- a/addons/board/i18n/ko.po +++ b/addons/board/i18n/ko.po @@ -7,33 +7,33 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-05-12 11:04+0000\n" +"Last-Translator: AhnJD \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "게시판 생성" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "생성" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "레이아웃 재설정" #. module: board #: view:board.create:0 diff --git a/addons/board/i18n/ln.po b/addons/board/i18n/ln.po index 6323f22bc75..4ace2f83585 100644 --- a/addons/board/i18n/ln.po +++ b/addons/board/i18n/ln.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lingala \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/lt.po b/addons/board/i18n/lt.po index d0b8bf5bd10..498745075ea 100644 --- a/addons/board/i18n/lt.po +++ b/addons/board/i18n/lt.po @@ -1,65 +1,65 @@ # Lithuanian 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. +# Giedrius Slavinskas , 2012. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-30 16:27+0000\n" +"Last-Translator: Giedrius Slavinskas - inovera.lt \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "Sukurti skydelį" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "Sukurti" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "Atstatyti išdėstymą.." #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "" +msgstr "Sukurti naują skydelį" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "" +msgstr "Pasirinkite skydelių išdėstymą" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "Pridėti" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:139 #, python-format msgid "Are you sure you want to remove this item ?" -msgstr "" +msgstr "Ar tikrai norite ištrinti šį elementą?" #. module: board #: model:ir.model,name:board.model_board_board @@ -71,12 +71,12 @@ msgstr "Lenta" #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "Mano skydeliai" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "Skydelio pavadinimas" #. module: board #: model:ir.model,name:board.model_board_create @@ -88,7 +88,7 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "Įdėti į skydelį" #. module: board #. openerp-web @@ -115,39 +115,56 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Jūsų neturite savo skydelių.\n" +"

\n" +" Kad pridėtumėte pirmąjį elementą į šį skydelį, eikite į " +"bet\n" +" kurį meniu, perjungite rodinį į sąrašas ar diagrama ir " +"paspauskite\n" +" „Įdėti į skydelį“ išsamios paieškos " +"pasirinktyse.\n" +"

\n" +" Jūs galite atsirinkti ir sugrupuoti duomenis prieš " +"įdedant\n" +" juos į skydelį naudojantis filtro pasirinktimis.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "Atstatyti" #. module: board #: field:board.create,menu_parent_id:0 msgid "Parent Menu" -msgstr "Bazinis meniu" +msgstr "Tėvinis meniu" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "" +msgstr "Keisti išdėstymą.." #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "" +msgstr "Keisti išdėstymą" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "" +msgstr "Keisti išdėstymą" #. module: board #: view:board.create:0 @@ -157,11 +174,11 @@ msgstr "Atšaukti" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "arba" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Naujo skydelio elemento pavadinimas" diff --git a/addons/board/i18n/lv.po b/addons/board/i18n/lv.po index 415ebb9d68d..c94a594ea20 100644 --- a/addons/board/i18n/lv.po +++ b/addons/board/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/mk.po b/addons/board/i18n/mk.po new file mode 100644 index 00000000000..19cfa6b62c5 --- /dev/null +++ b/addons/board/i18n/mk.po @@ -0,0 +1,187 @@ +# Macedonian 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. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: OpenERP Macedonian \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-02-28 20:32+0000\n" +"Last-Translator: Aleksandar Panov \n" +"Language-Team: OpenERP Macedonia \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" + +#. module: board +#: model:ir.actions.act_window,name:board.action_board_create +#: model:ir.ui.menu,name:board.menu_board_create +msgid "Create Board" +msgstr "Креирај табла" + +#. module: board +#: view:board.create:0 +msgid "Create" +msgstr "Креирај" + +#. module: board +#. openerp-web +#: code:addons/board/static/src/xml/board.xml:4 +#, python-format +msgid "Reset Layout.." +msgstr "Ресетирај го изгледот.." + +#. module: board +#: view:board.create:0 +msgid "Create New Dashboard" +msgstr "Креирај нова контролна табла" + +#. module: board +#. openerp-web +#: code:addons/board/static/src/xml/board.xml:40 +#, python-format +msgid "Choose dashboard layout" +msgstr "Избери изглед на контролна табла" + +#. module: board +#. openerp-web +#: code:addons/board/static/src/xml/board.xml:70 +#, python-format +msgid "Add" +msgstr "Додади" + +#. module: board +#. openerp-web +#: code:addons/board/static/src/js/dashboard.js:139 +#, python-format +msgid "Are you sure you want to remove this item ?" +msgstr "Сигурно ли сакате да го отстраните овој предмет ?" + +#. module: board +#: model:ir.model,name:board.model_board_board +msgid "Board" +msgstr "Табла" + +#. module: board +#: view:board.board:0 +#: model:ir.actions.act_window,name:board.open_board_my_dash_action +#: model:ir.ui.menu,name:board.menu_board_my_dash +msgid "My Dashboard" +msgstr "Моја контролна табла" + +#. module: board +#: field:board.create,name:0 +msgid "Board Name" +msgstr "Име на табла" + +#. module: board +#: model:ir.model,name:board.model_board_create +msgid "Board Creation" +msgstr "Креирање на табла" + +#. module: board +#. openerp-web +#: code:addons/board/static/src/xml/board.xml:67 +#, python-format +msgid "Add to Dashboard" +msgstr "Додади во контролна табла" + +#. module: board +#. openerp-web +#: code:addons/board/static/src/xml/board.xml:28 +#, python-format +msgid " " +msgstr " " + +#. module: board +#: model:ir.actions.act_window,help:board.open_board_my_dash_action +msgid "" +"
\n" +"

\n" +" Your personal 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 "" +"
\n" +"

\n" +" Вашата лична контролна табла е празна.\n" +"

\n" +" За да го додадете вашиот прв извештај во контролната " +"табла, одете на билокое\n" +" мени, променете го изгледот во листа или график и " +"кликнете 'Додади во\n" +" контролна табла' во опциите за пребарување.\n" +"

\n" +" Можете да филтрирате и групирате податоци пред да ги " +"внесете во\n" +" контролната табла користејќи ги опциите на " +"пребарувачот.\n" +"

\n" +"
\n" +" " + +#. module: board +#. openerp-web +#: code:addons/board/static/src/xml/board.xml:6 +#, python-format +msgid "Reset" +msgstr "Ресетирај" + +#. module: board +#: field:board.create,menu_parent_id:0 +msgid "Parent Menu" +msgstr "Мени родител" + +#. module: board +#. openerp-web +#: code:addons/board/static/src/xml/board.xml:8 +#, python-format +msgid "Change Layout.." +msgstr "Промени изглед.." + +#. module: board +#. openerp-web +#: code:addons/board/static/src/js/dashboard.js:93 +#, python-format +msgid "Edit Layout" +msgstr "Уреди изглед" + +#. module: board +#. openerp-web +#: code:addons/board/static/src/xml/board.xml:10 +#, python-format +msgid "Change Layout" +msgstr "Промени изглед" + +#. module: board +#: view:board.create:0 +msgid "Cancel" +msgstr "Откажи" + +#. module: board +#: view:board.create:0 +msgid "or" +msgstr "или" + +#. module: board +#. openerp-web +#: code:addons/board/static/src/xml/board.xml:69 +#, python-format +msgid "Title of new dashboard item" +msgstr "Наслов на новиот елемент во контролната табла" diff --git a/addons/board/i18n/mn.po b/addons/board/i18n/mn.po index 0673901ba2b..6acf72e0401 100644 --- a/addons/board/i18n/mn.po +++ b/addons/board/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-08 07:13+0000\n" "Last-Translator: Tenuun Khangaitan \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-02-09 05:29+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nb.po b/addons/board/i18n/nb.po index 5e71f2246fc..5d1037c6788 100644 --- a/addons/board/i18n/nb.po +++ b/addons/board/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl.po b/addons/board/i18n/nl.po index 7a589934891..fb1d01b5a71 100644 --- a/addons/board/i18n/nl.po +++ b/addons/board/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl_BE.po b/addons/board/i18n/nl_BE.po index 10e4afccac0..65ee6f9c24f 100644 --- a/addons/board/i18n/nl_BE.po +++ b/addons/board/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pl.po b/addons/board/i18n/pl.po index 168895b3f0f..b59a214ccf4 100644 --- a/addons/board/i18n/pl.po +++ b/addons/board/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt.po b/addons/board/i18n/pt.po index 73c2492bce2..d29b0b75dba 100644 --- a/addons/board/i18n/pt.po +++ b/addons/board/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-22 09:55+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-01-23 06:03+0000\n" -"X-Generator: Launchpad (build 16441)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt_BR.po b/addons/board/i18n/pt_BR.po index 9d759921087..e66a690e4c0 100644 --- a/addons/board/i18n/pt_BR.po +++ b/addons/board/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ro.po b/addons/board/i18n/ro.po index d4907520f21..62c518eeb27 100644 --- a/addons/board/i18n/ro.po +++ b/addons/board/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 19:52+0000\n" -"Last-Translator: Fekete Mihai \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-01-24 05:35+0000\n" -"X-Generator: Launchpad (build 16445)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ru.po b/addons/board/i18n/ru.po index df8621cddb5..29b9075ca24 100644 --- a/addons/board/i18n/ru.po +++ b/addons/board/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-26 09:14+0000\n" "Last-Translator: Denis Karataev \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sk.po b/addons/board/i18n/sk.po index 05f38f189c1..12a4080fc04 100644 --- a/addons/board/i18n/sk.po +++ b/addons/board/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-05 18:51+0000\n" "Last-Translator: Radoslav Sloboda \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sl.po b/addons/board/i18n/sl.po index 78c88849ed5..dfd85912c56 100644 --- a/addons/board/i18n/sl.po +++ b/addons/board/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-12 12:14+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sq.po b/addons/board/i18n/sq.po index f4546d2d39d..44221c864e2 100644 --- a/addons/board/i18n/sq.po +++ b/addons/board/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr.po b/addons/board/i18n/sr.po index f67dafaa182..02df191e8a2 100644 --- a/addons/board/i18n/sr.po +++ b/addons/board/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr@latin.po b/addons/board/i18n/sr@latin.po index 5c4dc1a50a2..32210be4f47 100644 --- a/addons/board/i18n/sr@latin.po +++ b/addons/board/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sv.po b/addons/board/i18n/sv.po index d826390db3a..cedee3c99c1 100644 --- a/addons/board/i18n/sv.po +++ b/addons/board/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/th.po b/addons/board/i18n/th.po index 5dd6993fdef..34f9d76b1d9 100644 --- a/addons/board/i18n/th.po +++ b/addons/board/i18n/th.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tlh.po b/addons/board/i18n/tlh.po index 4620ab37fc1..2c991ed984b 100644 --- a/addons/board/i18n/tlh.po +++ b/addons/board/i18n/tlh.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Klingon \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tr.po b/addons/board/i18n/tr.po index 119e608b573..29bce6a015a 100644 --- a/addons/board/i18n/tr.po +++ b/addons/board/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-08 14:15+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-10 18:34+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-09 05:29+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create @@ -33,7 +33,7 @@ msgstr "Oluştur" #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "Düzeni Sıfırla..." +msgstr "Yerleşim Planını Sıfırla..." #. module: board #: view:board.create:0 @@ -59,7 +59,7 @@ msgstr "Ekle" #: code:addons/board/static/src/js/dashboard.js:139 #, python-format msgid "Are you sure you want to remove this item ?" -msgstr "Bu kayıdı silmek istediğinize emin misiniz?" +msgstr "Bu öğeyi silmek istediğinizden emin misiniz?" #. module: board #: model:ir.model,name:board.model_board_board @@ -81,21 +81,21 @@ msgstr "Pano Adı" #. module: board #: model:ir.model,name:board.model_board_create msgid "Board Creation" -msgstr "" +msgstr "Pano Oluşturma" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "Kontrol Paneline Ekle" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:28 #, python-format msgid " " -msgstr "" +msgstr " " #. module: board #: model:ir.actions.act_window,help:board.open_board_my_dash_action @@ -115,6 +115,23 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Kişisel kontrol paneliniz boştur.\n" +"

\n" +" Bu kontrol paneline ilk raporunuzu eklemek için, " +"herhangi\n" +" bir menüye gidin, liste ya da grafik görünümüne geçin, " +"ve gelişmiş\n" +" arama seçeneklerinden 'Kontrol Paneline Ekle' " +"tıklayın.\n" +"

\n" +" Arama seçeneklerini kullanarak kontrol paneline " +"eklemeden önce\n" +" verileri süzebilir ve gruplandırabilirsiniz.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web @@ -133,21 +150,21 @@ msgstr "Ana Menü" #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "Düzeni Değiştir..." +msgstr "Yerleşim Planını Değiştir..." #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "Düzeni Sıfırla" +msgstr "Yerleşim Planını Düzenle" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "Düzeni Değiştir" +msgstr "Yerleşim Planını Değiştir" #. module: board #: view:board.create:0 @@ -164,4 +181,4 @@ msgstr "ya da" #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Yeni kontrol paneli öğesi adı" diff --git a/addons/board/i18n/uk.po b/addons/board/i18n/uk.po index b09fada430e..7c5799469f7 100644 --- a/addons/board/i18n/uk.po +++ b/addons/board/i18n/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/vi.po b/addons/board/i18n/vi.po index 4d649adb90b..b98b9d9fa98 100644 --- a/addons/board/i18n/vi.po +++ b/addons/board/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po index b6a28411667..652e7770d46 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_TW.po b/addons/board/i18n/zh_TW.po index 62af9901534..ab375b149d7 100644 --- a/addons/board/i18n/zh_TW.po +++ b/addons/board/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-31 03:19+0000\n" "Last-Translator: Charles Hsu \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-02-01 05:49+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/static/src/js/dashboard.js b/addons/board/static/src/js/dashboard.js index 0a38c744738..4f50d2281fe 100644 --- a/addons/board/static/src/js/dashboard.js +++ b/addons/board/static/src/js/dashboard.js @@ -177,8 +177,10 @@ instance.web.form.DashBoard = instance.web.form.FormWidget.extend({ view_mode = action_attrs.view_mode; // evaluate action_attrs context and domain + action_attrs.context_string = action_attrs.context; action_attrs.context = instance.web.pyeval.eval( 'context', action_attrs.context || {}); + action_attrs.domain_string = action_attrs.domain; action_attrs.domain = instance.web.pyeval.eval( 'domain', action_attrs.domain || [], action_attrs.context); if (action_attrs.context['dashboard_merge_domains_contexts'] === false) { @@ -301,9 +303,9 @@ instance.web.form.DashBoard = instance.web.form.FormWidget.extend({ instance.web.form.DashBoardLegacy = instance.web.form.DashBoard.extend({ renderElement: function() { if (this.node.tag == 'hpaned') { - this.node.attrs.style = '2-1'; + this.node.attrs.layout = '2-1'; } else if (this.node.tag == 'vpaned') { - this.node.attrs.style = '1'; + this.node.attrs.layout = '1'; } this.node.tag = 'board'; _.each(this.node.children, function(child) { @@ -342,7 +344,7 @@ instance.board.AddToDashboard = instance.web.search.Input.extend({ }, load_data:function(){ var board = new instance.web.Model('board.board'); - return board.call('list'); + return board.call('list', [board.context()]); }, _x:function() { if (!instance.webclient) { return $.Deferred().reject(); } @@ -417,8 +419,10 @@ instance.board.AddToDashboard = instance.web.search.Input.extend({ instance.web.SearchView.include({ add_common_inputs: function() { this._super(); - (new instance.board.AddToDashboard(this)); - + var vm = this.getParent().getParent(); + if (vm.inner_action && vm.inner_action.views) { + (new instance.board.AddToDashboard(this)); + } } }); diff --git a/addons/board/static/src/xml/board.xml b/addons/board/static/src/xml/board.xml index 03ede793036..9e1f15562a3 100644 --- a/addons/board/static/src/xml/board.xml +++ b/addons/board/static/src/xml/board.xml @@ -10,7 +10,7 @@ Change Layout - +
diff --git a/addons/l10n_fr_rib/i18n/ar.po b/addons/l10n_fr_rib/i18n/ar.po index f022d49065b..52de3e8bfbf 100644 --- a/addons/l10n_fr_rib/i18n/ar.po +++ b/addons/l10n_fr_rib/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/es.po b/addons/l10n_fr_rib/i18n/es.po index 23d90dfadad..2c7e99cab22 100644 --- a/addons/l10n_fr_rib/i18n/es.po +++ b/addons/l10n_fr_rib/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/es_CR.po b/addons/l10n_fr_rib/i18n/es_CR.po index 76aaa1707ef..93a2fb85c79 100644 --- a/addons/l10n_fr_rib/i18n/es_CR.po +++ b/addons/l10n_fr_rib/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/fr.po b/addons/l10n_fr_rib/i18n/fr.po index 6288ae5651b..8c5734ac1c1 100644 --- a/addons/l10n_fr_rib/i18n/fr.po +++ b/addons/l10n_fr_rib/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/pt.po b/addons/l10n_fr_rib/i18n/pt.po index 9a37c1535d1..3c9020e249d 100644 --- a/addons/l10n_fr_rib/i18n/pt.po +++ b/addons/l10n_fr_rib/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/pt_BR.po b/addons/l10n_fr_rib/i18n/pt_BR.po index 01b70ec2c7f..c4d7f74f2bd 100644 --- a/addons/l10n_fr_rib/i18n/pt_BR.po +++ b/addons/l10n_fr_rib/i18n/pt_BR.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-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/sl.po b/addons/l10n_fr_rib/i18n/sl.po index fd6b9b764d2..d7e0cc4586a 100644 --- a/addons/l10n_fr_rib/i18n/sl.po +++ b/addons/l10n_fr_rib/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/tr.po b/addons/l10n_fr_rib/i18n/tr.po index 2277d3247f7..8d572c4f298 100644 --- a/addons/l10n_fr_rib/i18n/tr.po +++ b/addons/l10n_fr_rib/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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_gr/i18n/ar.po b/addons/l10n_gr/i18n/ar.po index 146027e7291..16ac93edb1f 100644 --- a/addons/l10n_gr/i18n/ar.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/ca.po b/addons/l10n_gr/i18n/ca.po index ffa46dda7e6..508e803d052 100644 --- a/addons/l10n_gr/i18n/ca.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/da.po b/addons/l10n_gr/i18n/da.po index 71a079dda2a..e8858e93b25 100644 --- a/addons/l10n_gr/i18n/da.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/de.po b/addons/l10n_gr/i18n/de.po index 54506c71cb6..4c6cb257d6b 100644 --- a/addons/l10n_gr/i18n/de.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/el.po b/addons/l10n_gr/i18n/el.po index 7c7cc9e3599..fb2cdfdfef5 100644 --- a/addons/l10n_gr/i18n/el.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es.po b/addons/l10n_gr/i18n/es.po index e5969098602..5a1c0f26257 100644 --- a/addons/l10n_gr/i18n/es.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es_CR.po b/addons/l10n_gr/i18n/es_CR.po index 8f712d8601a..8f105016335 100644 --- a/addons/l10n_gr/i18n/es_CR.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es_PY.po b/addons/l10n_gr/i18n/es_PY.po index 1a2b7472b24..333ccff7fb6 100644 --- a/addons/l10n_gr/i18n/es_PY.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/fr.po b/addons/l10n_gr/i18n/fr.po index 5750fe513d4..0425a7e8382 100644 --- a/addons/l10n_gr/i18n/fr.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/gl.po b/addons/l10n_gr/i18n/gl.po index 11bd7a8ef09..59f8976e9aa 100644 --- a/addons/l10n_gr/i18n/gl.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/hu.po b/addons/l10n_gr/i18n/hu.po index 3335d412d8a..23a15285137 100644 --- a/addons/l10n_gr/i18n/hu.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/it.po b/addons/l10n_gr/i18n/it.po index 7e24c10fb92..df4992ba948 100644 --- a/addons/l10n_gr/i18n/it.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/nl.po b/addons/l10n_gr/i18n/nl.po index 8ca235a875b..23b8416c352 100644 --- a/addons/l10n_gr/i18n/nl.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/pt.po b/addons/l10n_gr/i18n/pt.po index 9df12732d63..2a4b4a6f738 100644 --- a/addons/l10n_gr/i18n/pt.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/pt_BR.po b/addons/l10n_gr/i18n/pt_BR.po index 903878e91fd..c16b96f5e8f 100644 --- a/addons/l10n_gr/i18n/pt_BR.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/sl.po b/addons/l10n_gr/i18n/sl.po index 2b556a56ed1..6f2149824d6 100644 --- a/addons/l10n_gr/i18n/sl.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/sr@latin.po b/addons/l10n_gr/i18n/sr@latin.po index 6e4ca9b758c..0d514a1246a 100644 --- a/addons/l10n_gr/i18n/sr@latin.po +++ b/addons/l10n_gr/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/tr.po b/addons/l10n_gr/i18n/tr.po index ac46757e17a..1d0476b648f 100644 --- a/addons/l10n_gr/i18n/tr.po +++ b/addons/l10n_gr/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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gt/i18n/ar.po b/addons/l10n_gt/i18n/ar.po index 4d7b4fee02e..0203834fbf4 100644 --- a/addons/l10n_gt/i18n/ar.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/ca.po b/addons/l10n_gt/i18n/ca.po index a3b963a73ad..1d0eae3f125 100644 --- a/addons/l10n_gt/i18n/ca.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/da.po b/addons/l10n_gt/i18n/da.po index 2c02e683316..034565dee38 100644 --- a/addons/l10n_gt/i18n/da.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es.po b/addons/l10n_gt/i18n/es.po index 58202e13990..9d77231d694 100644 --- a/addons/l10n_gt/i18n/es.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es_CR.po b/addons/l10n_gt/i18n/es_CR.po index ddc88ee2489..5c63f32989e 100644 --- a/addons/l10n_gt/i18n/es_CR.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es_PY.po b/addons/l10n_gt/i18n/es_PY.po index 587b6145dec..2a77073e091 100644 --- a/addons/l10n_gt/i18n/es_PY.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/fr.po b/addons/l10n_gt/i18n/fr.po index ec26dbf06cf..22bff467523 100644 --- a/addons/l10n_gt/i18n/fr.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/gl.po b/addons/l10n_gt/i18n/gl.po index e972b8e62ce..6c4656071e7 100644 --- a/addons/l10n_gt/i18n/gl.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/hu.po b/addons/l10n_gt/i18n/hu.po index 420f2e5daef..fc6dfa77c63 100644 --- a/addons/l10n_gt/i18n/hu.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/it.po b/addons/l10n_gt/i18n/it.po index cd7ff2d7fdd..fb249f0809c 100644 --- a/addons/l10n_gt/i18n/it.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/oc.po b/addons/l10n_gt/i18n/oc.po index 4a3e1991b20..97c8ad1abce 100644 --- a/addons/l10n_gt/i18n/oc.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/pt.po b/addons/l10n_gt/i18n/pt.po index 1fc0f8e9bf2..169ce980b9a 100644 --- a/addons/l10n_gt/i18n/pt.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/pt_BR.po b/addons/l10n_gt/i18n/pt_BR.po index aecc961f5e9..f7cb5671d3e 100644 --- a/addons/l10n_gt/i18n/pt_BR.po +++ b/addons/l10n_gt/i18n/pt_BR.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-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/sl.po b/addons/l10n_gt/i18n/sl.po index e345f331816..721bcf3bb69 100644 --- a/addons/l10n_gt/i18n/sl.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/sr@latin.po b/addons/l10n_gt/i18n/sr@latin.po index 903880e0627..6f6412997aa 100644 --- a/addons/l10n_gt/i18n/sr@latin.po +++ b/addons/l10n_gt/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/tr.po b/addons/l10n_gt/i18n/tr.po index 3aaaef2c901..43c1e2ee963 100644 --- a/addons/l10n_gt/i18n/tr.po +++ b/addons/l10n_gt/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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_hn/i18n/ca.po b/addons/l10n_hn/i18n/ca.po index 186443e9282..492a38c90b6 100644 --- a/addons/l10n_hn/i18n/ca.po +++ b/addons/l10n_hn/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/es.po b/addons/l10n_hn/i18n/es.po index aa829f9b9c5..1840eb9e492 100644 --- a/addons/l10n_hn/i18n/es.po +++ b/addons/l10n_hn/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/es_CR.po b/addons/l10n_hn/i18n/es_CR.po index 4b9cd6987c6..dc7466664b0 100644 --- a/addons/l10n_hn/i18n/es_CR.po +++ b/addons/l10n_hn/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/fr.po b/addons/l10n_hn/i18n/fr.po index 2682fa119a1..988c493b7ed 100644 --- a/addons/l10n_hn/i18n/fr.po +++ b/addons/l10n_hn/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/gl.po b/addons/l10n_hn/i18n/gl.po index cbf10a2f31f..e5996aacbb0 100644 --- a/addons/l10n_hn/i18n/gl.po +++ b/addons/l10n_hn/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/hu.po b/addons/l10n_hn/i18n/hu.po index 4c1c5ca9fba..063ec3b2da7 100644 --- a/addons/l10n_hn/i18n/hu.po +++ b/addons/l10n_hn/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/it.po b/addons/l10n_hn/i18n/it.po index 46cdab925aa..046025cb2b9 100644 --- a/addons/l10n_hn/i18n/it.po +++ b/addons/l10n_hn/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/pt.po b/addons/l10n_hn/i18n/pt.po index a693c92bda4..7063d1d5bcb 100644 --- a/addons/l10n_hn/i18n/pt.po +++ b/addons/l10n_hn/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/pt_BR.po b/addons/l10n_hn/i18n/pt_BR.po index ebf89d7e4e4..5cbdb681c00 100644 --- a/addons/l10n_hn/i18n/pt_BR.po +++ b/addons/l10n_hn/i18n/pt_BR.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-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/sl.po b/addons/l10n_hn/i18n/sl.po index 8527f398f7a..54ba2ec4d35 100644 --- a/addons/l10n_hn/i18n/sl.po +++ b/addons/l10n_hn/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/sr@latin.po b/addons/l10n_hn/i18n/sr@latin.po index 6ced81bf396..2ef458f5b10 100644 --- a/addons/l10n_hn/i18n/sr@latin.po +++ b/addons/l10n_hn/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/tr.po b/addons/l10n_hn/i18n/tr.po index a948357c1cc..3f0b4e69dee 100644 --- a/addons/l10n_hn/i18n/tr.po +++ b/addons/l10n_hn/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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hr/l10n_hr_chart_template.xml b/addons/l10n_hr/l10n_hr_chart_template.xml old mode 100755 new mode 100644 diff --git a/addons/l10n_in/i18n/ar.po b/addons/l10n_in/i18n/ar.po index 96341be24f4..2bc2bcf9053 100644 --- a/addons/l10n_in/i18n/ar.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/br.po b/addons/l10n_in/i18n/br.po index f54d05d3593..2f9287f8cb9 100644 --- a/addons/l10n_in/i18n/br.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/ca.po b/addons/l10n_in/i18n/ca.po index 9eac9b4093f..d35f196b6d8 100644 --- a/addons/l10n_in/i18n/ca.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/da.po b/addons/l10n_in/i18n/da.po index 292d3d502a2..04ad6bdcff9 100644 --- a/addons/l10n_in/i18n/da.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/de.po b/addons/l10n_in/i18n/de.po index 62a24f4187e..c1c62fdab85 100644 --- a/addons/l10n_in/i18n/de.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es.po b/addons/l10n_in/i18n/es.po index 55358fc99fa..91b253b28ec 100644 --- a/addons/l10n_in/i18n/es.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es_CR.po b/addons/l10n_in/i18n/es_CR.po index 2f294a8841d..c2e2133361c 100644 --- a/addons/l10n_in/i18n/es_CR.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es_PY.po b/addons/l10n_in/i18n/es_PY.po index 4e7a1f9c70b..c325e7f1fdb 100644 --- a/addons/l10n_in/i18n/es_PY.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/et.po b/addons/l10n_in/i18n/et.po index 943fbc4aa2e..40e20a19d45 100644 --- a/addons/l10n_in/i18n/et.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/fr.po b/addons/l10n_in/i18n/fr.po index 75530b7095b..3964a7bff75 100644 --- a/addons/l10n_in/i18n/fr.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/gl.po b/addons/l10n_in/i18n/gl.po index 324a6da3746..8ca5c5a6778 100644 --- a/addons/l10n_in/i18n/gl.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/hu.po b/addons/l10n_in/i18n/hu.po index 85c5cd6e17b..2f944b79c2d 100644 --- a/addons/l10n_in/i18n/hu.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/it.po b/addons/l10n_in/i18n/it.po index 84b0fb2e03a..067fdb31432 100644 --- a/addons/l10n_in/i18n/it.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/oc.po b/addons/l10n_in/i18n/oc.po index ab83a50b5fa..b42dab60977 100644 --- a/addons/l10n_in/i18n/oc.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/pt.po b/addons/l10n_in/i18n/pt.po index fd9c834a591..98d86708a66 100644 --- a/addons/l10n_in/i18n/pt.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/pt_BR.po b/addons/l10n_in/i18n/pt_BR.po index 685567d06c2..c5b3c6f9c6b 100644 --- a/addons/l10n_in/i18n/pt_BR.po +++ b/addons/l10n_in/i18n/pt_BR.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-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/ru.po b/addons/l10n_in/i18n/ru.po index 52bdec34364..42975a2344d 100644 --- a/addons/l10n_in/i18n/ru.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sl.po b/addons/l10n_in/i18n/sl.po index 16ddb665e11..8fb33030710 100644 --- a/addons/l10n_in/i18n/sl.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sr@latin.po b/addons/l10n_in/i18n/sr@latin.po index 445a6e1bc79..e0dbbb05919 100644 --- a/addons/l10n_in/i18n/sr@latin.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sv.po b/addons/l10n_in/i18n/sv.po index 07c18edceeb..364018bc07f 100644 --- a/addons/l10n_in/i18n/sv.po +++ b/addons/l10n_in/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/tr.po b/addons/l10n_in/i18n/tr.po index c5d5109981b..768e0590e98 100644 --- a/addons/l10n_in/i18n/tr.po +++ b/addons/l10n_in/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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in_hr_payroll/i18n/bn.po b/addons/l10n_in_hr_payroll/i18n/bn.po index 7dd5a6c1e82..c374d22e2ca 100644 --- a/addons/l10n_in_hr_payroll/i18n/bn.po +++ b/addons/l10n_in_hr_payroll/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/es.po b/addons/l10n_in_hr_payroll/i18n/es.po index b047f5e7f42..769ae89a813 100644 --- a/addons/l10n_in_hr_payroll/i18n/es.po +++ b/addons/l10n_in_hr_payroll/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/gu.po b/addons/l10n_in_hr_payroll/i18n/gu.po index 47522e625c0..0795aca8c1b 100644 --- a/addons/l10n_in_hr_payroll/i18n/gu.po +++ b/addons/l10n_in_hr_payroll/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/hi.po b/addons/l10n_in_hr_payroll/i18n/hi.po index 32f10fc1a97..0459cba6894 100644 --- a/addons/l10n_in_hr_payroll/i18n/hi.po +++ b/addons/l10n_in_hr_payroll/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pl.po b/addons/l10n_in_hr_payroll/i18n/pl.po index 2e140d0050b..0c75cbb6052 100644 --- a/addons/l10n_in_hr_payroll/i18n/pl.po +++ b/addons/l10n_in_hr_payroll/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pt.po b/addons/l10n_in_hr_payroll/i18n/pt.po index 922b1021132..b5266305d03 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt.po +++ b/addons/l10n_in_hr_payroll/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-02-05 05:23+0000\n" -"X-Generator: Launchpad (build 16468)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pt_BR.po b/addons/l10n_in_hr_payroll/i18n/pt_BR.po index c1a4b949eeb..4b25d270b51 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_in_hr_payroll/i18n/pt_BR.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-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/sl.po b/addons/l10n_in_hr_payroll/i18n/sl.po index 1e9014ba99d..664c07be23c 100644 --- a/addons/l10n_in_hr_payroll/i18n/sl.po +++ b/addons/l10n_in_hr_payroll/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/ta.po b/addons/l10n_in_hr_payroll/i18n/ta.po index 7c491d1ca67..7145741ecfc 100644 --- a/addons/l10n_in_hr_payroll/i18n/ta.po +++ b/addons/l10n_in_hr_payroll/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/te.po b/addons/l10n_in_hr_payroll/i18n/te.po index adfa3be60d5..3113187c37f 100644 --- a/addons/l10n_in_hr_payroll/i18n/te.po +++ b/addons/l10n_in_hr_payroll/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-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/tr.po b/addons/l10n_in_hr_payroll/i18n/tr.po index 8ba0e3a97d3..f2f17a0e45e 100644 --- a/addons/l10n_in_hr_payroll/i18n/tr.po +++ b/addons/l10n_in_hr_payroll/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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py b/addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py index 76fc1247de6..8e50067291f 100644 --- a/addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py +++ b/addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py @@ -105,7 +105,7 @@ class payroll_advice(osv.osv): slip_ids = payslip_pool.search(cr, uid, [('date_from', '<=', advice.date), ('date_to', '>=', advice.date), ('state', '=', 'done')], context=context) for slip in payslip_pool.browse(cr, uid, slip_ids, context=context): if not slip.employee_id.bank_account_id and not slip.employee_id.bank_account_id.acc_number: - raise osv.except_osv(_('Error !'), _('Please define bank account for the %s employee') % (slip.employee_id.name)) + raise osv.except_osv(_('Error!'), _('Please define bank account for the %s employee') % (slip.employee_id.name)) line_ids = payslip_line_pool.search(cr, uid, [ ('slip_id', '=', slip.id), ('code', '=', 'NET')], context=context) if line_ids: line = payslip_line_pool.browse(cr, uid, line_ids, context=context)[0] @@ -131,7 +131,7 @@ class payroll_advice(osv.osv): seq_obj = self.pool.get('ir.sequence') for advice in self.browse(cr, uid, ids, context=context): if not advice.line_ids: - raise osv.except_osv(_('Error !'), _('You can not confirm Payment advice without advice lines.')) + raise osv.except_osv(_('Error!'), _('You can not confirm Payment advice without advice lines.')) advice_date = datetime.strptime(advice.date, DATETIME_FORMAT) advice_year = advice_date.strftime('%m') + '-' + advice_date.strftime('%Y') number = seq_obj.get(cr, uid, 'payment.advice') @@ -187,7 +187,7 @@ class hr_payslip_run(osv.osv): users = self.pool.get('res.users').browse(cr, uid, [uid], context=context) for run in self.browse(cr, uid, ids, context=context): if run.available_advice: - raise osv.except_osv(_('Error !'), _("Payment advice already exists for %s, 'Set to Draft' to create a new advice.") %(run.name)) + raise osv.except_osv(_('Error!'), _("Payment advice already exists for %s, 'Set to Draft' to create a new advice.") %(run.name)) advice_data = { 'batch_id': run.id, 'company_id': users[0].company_id.id, @@ -204,7 +204,7 @@ class hr_payslip_run(osv.osv): for slip in payslip_pool.browse(cr, uid, slip_ids, context=context): if not slip.employee_id.bank_account_id or not slip.employee_id.bank_account_id.acc_number: - raise osv.except_osv(_('Error !'), _('Please define bank account for the %s employee') % (slip.employee_id.name)) + raise osv.except_osv(_('Error!'), _('Please define bank account for the %s employee') % (slip.employee_id.name)) line_ids = payslip_line_pool.search(cr, uid, [('slip_id', '=', slip.id), ('code', '=', 'NET')], context=context) if line_ids: line = payslip_line_pool.browse(cr, uid, line_ids, context=context)[0] diff --git a/addons/l10n_in_hr_payroll/l10n_in_hr_payroll_view.xml b/addons/l10n_in_hr_payroll/l10n_in_hr_payroll_view.xml index 37d2f865770..51c63c730ff 100644 --- a/addons/l10n_in_hr_payroll/l10n_in_hr_payroll_view.xml +++ b/addons/l10n_in_hr_payroll/l10n_in_hr_payroll_view.xml @@ -80,7 +80,7 @@
-
- - Write to the followers of this document... - Share with my followers... -
+ +
+ + Share with my followers... +
+
+ +
+ + Send a message + or + Log a note +
+
@@ -57,10 +68,10 @@ - File + Attach a File - /web/binary/upload_attachment + /web/binary/upload_attachment @@ -106,7 +117,7 @@ template to the recipients list --> -
+
To: @@ -129,14 +140,19 @@ <<<
-
- -
@@ -190,7 +190,7 @@ @@ -196,20 +177,20 @@ - Production Order N° : [[ o.name ]] + Production Order N° : [[ o.name ]] @@ -232,16 +213,16 @@ @@ -266,26 +247,26 @@ - Work Orders [[ o.workcenter_lines ==[] and removeParentNode('para')]] + Work Orders [[ o.workcenter_lines ==[] and removeParentNode('para')]] @@ -317,28 +298,28 @@ - Bill Of Material + Bill Of Material
- Products to Consume [[ o.move_lines ==[] and removeParentNode('section')]] + Products to Consume [[ o.move_lines ==[] and removeParentNode('section')]]
[[ repeatIn(o.move_lines,'line') ]] @@ -363,7 +344,7 @@ - Consumed Products [[ o.move_lines2 ==[] and removeParentNode('section')]] + Consumed Products [[ o.move_lines2 ==[] and removeParentNode('section')]]
[[ repeatIn(o.move_lines2,'line2') ]] diff --git a/addons/mrp/stock.py b/addons/mrp/stock.py index ae7edf54750..60a50c90d1e 100644 --- a/addons/mrp/stock.py +++ b/addons/mrp/stock.py @@ -47,7 +47,7 @@ class StockMove(osv.osv): product_obj = self.pool.get('product.product') wf_service = netsvc.LocalService("workflow") processed_ids = [move.id] - if move.product_id.supply_method == 'produce' and move.product_id.procure_method == 'make_to_order': + if move.product_id.supply_method == 'produce': bis = bom_obj.search(cr, uid, [ ('product_id','=',move.product_id.id), ('bom_id','=',False), diff --git a/addons/mrp_byproduct/i18n/ab.po b/addons/mrp_byproduct/i18n/ab.po index ac25080557c..404324a3209 100644 --- a/addons/mrp_byproduct/i18n/ab.po +++ b/addons/mrp_byproduct/i18n/ab.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Abkhazian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ar.po b/addons/mrp_byproduct/i18n/ar.po index e1f7bc68e7c..d5e92a84af6 100644 --- a/addons/mrp_byproduct/i18n/ar.po +++ b/addons/mrp_byproduct/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/bg.po b/addons/mrp_byproduct/i18n/bg.po index dc67cbfae8d..2236a07b04e 100644 --- a/addons/mrp_byproduct/i18n/bg.po +++ b/addons/mrp_byproduct/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/bs.po b/addons/mrp_byproduct/i18n/bs.po index c1ea83928d9..4cbb8e94fe4 100644 --- a/addons/mrp_byproduct/i18n/bs.po +++ b/addons/mrp_byproduct/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ca.po b/addons/mrp_byproduct/i18n/ca.po index b53882e0a70..e10a560bdd2 100644 --- a/addons/mrp_byproduct/i18n/ca.po +++ b/addons/mrp_byproduct/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/cs.po b/addons/mrp_byproduct/i18n/cs.po index 5fad7116274..e71496988a5 100644 --- a/addons/mrp_byproduct/i18n/cs.po +++ b/addons/mrp_byproduct/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-30 10:50+0000\n" "Last-Translator: Jan Grmela \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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/da.po b/addons/mrp_byproduct/i18n/da.po index 79ca4fc483b..d4f86ea3cb8 100644 --- a/addons/mrp_byproduct/i18n/da.po +++ b/addons/mrp_byproduct/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/de.po b/addons/mrp_byproduct/i18n/de.po index ed433f693aa..7acfbdfba24 100644 --- a/addons/mrp_byproduct/i18n/de.po +++ b/addons/mrp_byproduct/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es.po b/addons/mrp_byproduct/i18n/es.po index 3dfbc970fff..cd1d166c6ec 100644 --- a/addons/mrp_byproduct/i18n/es.po +++ b/addons/mrp_byproduct/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_AR.po b/addons/mrp_byproduct/i18n/es_AR.po index 461e919e8b3..15d752f093a 100644 --- a/addons/mrp_byproduct/i18n/es_AR.po +++ b/addons/mrp_byproduct/i18n/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Argentina) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_CR.po b/addons/mrp_byproduct/i18n/es_CR.po index 37c77480ffc..c477808a39c 100644 --- a/addons/mrp_byproduct/i18n/es_CR.po +++ b/addons/mrp_byproduct/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_EC.po b/addons/mrp_byproduct/i18n/es_EC.po index 076d96dfcd5..c0e9b167fc1 100644 --- a/addons/mrp_byproduct/i18n/es_EC.po +++ b/addons/mrp_byproduct/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/et.po b/addons/mrp_byproduct/i18n/et.po index 7c076f44f80..88cebb14111 100644 --- a/addons/mrp_byproduct/i18n/et.po +++ b/addons/mrp_byproduct/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/fi.po b/addons/mrp_byproduct/i18n/fi.po index d38a0db1b8a..db782bffadf 100644 --- a/addons/mrp_byproduct/i18n/fi.po +++ b/addons/mrp_byproduct/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/fr.po b/addons/mrp_byproduct/i18n/fr.po index 98e33065143..20e10114f5d 100644 --- a/addons/mrp_byproduct/i18n/fr.po +++ b/addons/mrp_byproduct/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-01-07 10:16+0000\n" -"Last-Translator: WANTELLET Sylvain \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-03-21 02:03+0000\n" +"Last-Translator: Florian Hatat \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 @@ -28,6 +28,14 @@ msgid "" "BoM / quantity of manufactured product set on the BoM * quantity of " "manufactured product in the production order.)'" msgstr "" +"Définit comment la quantité de sous-produits est déterminée dans les ordres " +"de production utilisant cette nomenclature. \"Fixe\" correspond à une " +"situation où la quantité de sous-produit est toujours égale à la quantité " +"définie dans la nomenclature, quelle que soit la quantité de l'ordre de " +"fabrication. Par opposition, \"variable\" signifie que la quantité sera " +"calculée comme \"(quantité du sous-produit dans la nomenclature / quantité " +"du produit fabriqué dans la nomenclature x quantité du produit fabriqué dans " +"l'ordre de fabrication.)\"" #. module: mrp_byproduct #: field:mrp.subproduct,product_id:0 diff --git a/addons/mrp_byproduct/i18n/gl.po b/addons/mrp_byproduct/i18n/gl.po index 6929f6a1e06..f3b73a8fdf6 100644 --- a/addons/mrp_byproduct/i18n/gl.po +++ b/addons/mrp_byproduct/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/hr.po b/addons/mrp_byproduct/i18n/hr.po index e25fa4a418f..069340d75fb 100644 --- a/addons/mrp_byproduct/i18n/hr.po +++ b/addons/mrp_byproduct/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/hu.po b/addons/mrp_byproduct/i18n/hu.po index f2283ecd615..1fac392f581 100644 --- a/addons/mrp_byproduct/i18n/hu.po +++ b/addons/mrp_byproduct/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-04 09:59+0000\n" "Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/id.po b/addons/mrp_byproduct/i18n/id.po index faad6e923eb..8756a781200 100644 --- a/addons/mrp_byproduct/i18n/id.po +++ b/addons/mrp_byproduct/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/it.po b/addons/mrp_byproduct/i18n/it.po index 1d9e3918b2c..bd81f3e6557 100644 --- a/addons/mrp_byproduct/i18n/it.po +++ b/addons/mrp_byproduct/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 @@ -53,7 +53,7 @@ msgstr "Cambia Quantità dei Prodotti" #: view:mrp.bom:0 #: field:mrp.bom,sub_products:0 msgid "Byproducts" -msgstr "" +msgstr "Per prodotti" #. module: mrp_byproduct #: field:mrp.subproduct,subproduct_type:0 @@ -104,4 +104,4 @@ msgstr "" #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_subproduct msgid "Byproduct" -msgstr "" +msgstr "Per prodotto" diff --git a/addons/mrp_byproduct/i18n/ja.po b/addons/mrp_byproduct/i18n/ja.po index b3b0af1fec6..678e5643f32 100644 --- a/addons/mrp_byproduct/i18n/ja.po +++ b/addons/mrp_byproduct/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ko.po b/addons/mrp_byproduct/i18n/ko.po index 2bdb6c97fa2..77b7aac071f 100644 --- a/addons/mrp_byproduct/i18n/ko.po +++ b/addons/mrp_byproduct/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/lt.po b/addons/mrp_byproduct/i18n/lt.po index ab7559fb94c..e255d1b4b70 100644 --- a/addons/mrp_byproduct/i18n/lt.po +++ b/addons/mrp_byproduct/i18n/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/lv.po b/addons/mrp_byproduct/i18n/lv.po new file mode 100644 index 00000000000..e5c3fb61179 --- /dev/null +++ b/addons/mrp_byproduct/i18n/lv.po @@ -0,0 +1,106 @@ +# Latvian 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: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-03-14 15:52+0000\n" +"Last-Translator: Jānis \n" +"Language-Team: Latvian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: mrp_byproduct +#: help:mrp.subproduct,subproduct_type:0 +msgid "" +"Define how the quantity of byproducts will be set on the production orders " +"using this BoM. 'Fixed' depicts a situation where the quantity of created " +"byproduct is always equal to the quantity set on the BoM, regardless of how " +"many are created in the production order. By opposition, 'Variable' means " +"that the quantity will be computed as '(quantity of byproduct set on the " +"BoM / quantity of manufactured product set on the BoM * quantity of " +"manufactured product in the production order.)'" +msgstr "" + +#. module: mrp_byproduct +#: field:mrp.subproduct,product_id:0 +msgid "Product" +msgstr "Produkts" + +#. module: mrp_byproduct +#: field:mrp.subproduct,product_uom:0 +msgid "Product Unit of Measure" +msgstr "Produkta mērvienība" + +#. module: mrp_byproduct +#: model:ir.model,name:mrp_byproduct.model_mrp_production +msgid "Manufacturing Order" +msgstr "Ražošanas orderis" + +#. module: mrp_byproduct +#: model:ir.model,name:mrp_byproduct.model_change_production_qty +msgid "Change Quantity of Products" +msgstr "Mainīt produktu daudzumu" + +#. module: mrp_byproduct +#: view:mrp.bom:0 +#: field:mrp.bom,sub_products:0 +msgid "Byproducts" +msgstr "Blakusprodukti" + +#. module: mrp_byproduct +#: field:mrp.subproduct,subproduct_type:0 +msgid "Quantity Type" +msgstr "Daudzuma tips" + +#. module: mrp_byproduct +#: model:ir.model,name:mrp_byproduct.model_mrp_bom +msgid "Bill of Material" +msgstr "Recepte" + +#. module: mrp_byproduct +#: field:mrp.subproduct,product_qty:0 +msgid "Product Qty" +msgstr "Produkta daudzums" + +#. module: mrp_byproduct +#: code:addons/mrp_byproduct/mrp_byproduct.py:63 +#, python-format +msgid "Warning" +msgstr "Uzmanību" + +#. module: mrp_byproduct +#: field:mrp.subproduct,bom_id:0 +msgid "BoM" +msgstr "Recepte" + +#. module: mrp_byproduct +#: selection:mrp.subproduct,subproduct_type:0 +msgid "Variable" +msgstr "Mainīgais" + +#. module: mrp_byproduct +#: selection:mrp.subproduct,subproduct_type:0 +msgid "Fixed" +msgstr "Fiksēts" + +#. module: mrp_byproduct +#: code:addons/mrp_byproduct/mrp_byproduct.py:63 +#, python-format +msgid "" +"The Product Unit of Measure you chose has a different category than in the " +"product form." +msgstr "" +"Izvēlētās produkta mērvienības kategorija ir citādāka, nekā produkta formā." + +#. module: mrp_byproduct +#: model:ir.model,name:mrp_byproduct.model_mrp_subproduct +msgid "Byproduct" +msgstr "Blakusprodukts" diff --git a/addons/mrp_byproduct/i18n/mk.po b/addons/mrp_byproduct/i18n/mk.po new file mode 100644 index 00000000000..06e136852a2 --- /dev/null +++ b/addons/mrp_byproduct/i18n/mk.po @@ -0,0 +1,107 @@ +# 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: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-03-01 17:27+0000\n" +"Last-Translator: Sofce Dimitrijeva \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-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: mrp_byproduct +#: help:mrp.subproduct,subproduct_type:0 +msgid "" +"Define how the quantity of byproducts will be set on the production orders " +"using this BoM. 'Fixed' depicts a situation where the quantity of created " +"byproduct is always equal to the quantity set on the BoM, regardless of how " +"many are created in the production order. By opposition, 'Variable' means " +"that the quantity will be computed as '(quantity of byproduct set on the " +"BoM / quantity of manufactured product set on the BoM * quantity of " +"manufactured product in the production order.)'" +msgstr "" + +#. module: mrp_byproduct +#: field:mrp.subproduct,product_id:0 +msgid "Product" +msgstr "Производ" + +#. module: mrp_byproduct +#: field:mrp.subproduct,product_uom:0 +msgid "Product Unit of Measure" +msgstr "Единица мерка на производот" + +#. module: mrp_byproduct +#: model:ir.model,name:mrp_byproduct.model_mrp_production +msgid "Manufacturing Order" +msgstr "Налог за обработка" + +#. module: mrp_byproduct +#: model:ir.model,name:mrp_byproduct.model_change_production_qty +msgid "Change Quantity of Products" +msgstr "Промени ја количината на производите" + +#. module: mrp_byproduct +#: view:mrp.bom:0 +#: field:mrp.bom,sub_products:0 +msgid "Byproducts" +msgstr "По производи" + +#. module: mrp_byproduct +#: field:mrp.subproduct,subproduct_type:0 +msgid "Quantity Type" +msgstr "Тип на количина" + +#. module: mrp_byproduct +#: model:ir.model,name:mrp_byproduct.model_mrp_bom +msgid "Bill of Material" +msgstr "Норматив" + +#. module: mrp_byproduct +#: field:mrp.subproduct,product_qty:0 +msgid "Product Qty" +msgstr "Количина на производот" + +#. module: mrp_byproduct +#: code:addons/mrp_byproduct/mrp_byproduct.py:63 +#, python-format +msgid "Warning" +msgstr "Внимание" + +#. module: mrp_byproduct +#: field:mrp.subproduct,bom_id:0 +msgid "BoM" +msgstr "Норматив" + +#. module: mrp_byproduct +#: selection:mrp.subproduct,subproduct_type:0 +msgid "Variable" +msgstr "Варијабла" + +#. module: mrp_byproduct +#: selection:mrp.subproduct,subproduct_type:0 +msgid "Fixed" +msgstr "Фиксно" + +#. module: mrp_byproduct +#: code:addons/mrp_byproduct/mrp_byproduct.py:63 +#, python-format +msgid "" +"The Product Unit of Measure you chose has a different category than in the " +"product form." +msgstr "" +"Единицата мерка на производот која ја одбравте има различна категорија од " +"онаа во формуларот за производот." + +#. module: mrp_byproduct +#: model:ir.model,name:mrp_byproduct.model_mrp_subproduct +msgid "Byproduct" +msgstr "По производ" diff --git a/addons/mrp_byproduct/i18n/mn.po b/addons/mrp_byproduct/i18n/mn.po index c34d3e60d98..11e7ad6905c 100644 --- a/addons/mrp_byproduct/i18n/mn.po +++ b/addons/mrp_byproduct/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-04-06 05:33+0000\n" +"Last-Translator: gobi \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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 @@ -63,7 +63,7 @@ msgstr "Тоолох төрөл" #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_bom msgid "Bill of Material" -msgstr "Жор" +msgstr "Орц" #. module: mrp_byproduct #: field:mrp.subproduct,product_qty:0 @@ -79,7 +79,7 @@ msgstr "" #. module: mrp_byproduct #: field:mrp.subproduct,bom_id:0 msgid "BoM" -msgstr "Материалын тооцоо" +msgstr "Орц" #. module: mrp_byproduct #: selection:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/mrp_byproduct.pot b/addons/mrp_byproduct/i18n/mrp_byproduct.pot index 1f624fb081f..1470331a282 100644 --- a/addons/mrp_byproduct/i18n/mrp_byproduct.pot +++ b/addons/mrp_byproduct/i18n/mrp_byproduct.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-06-07 19:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/mrp_byproduct/i18n/nb.po b/addons/mrp_byproduct/i18n/nb.po index 12aa4cfe73d..cb4963ed731 100644 --- a/addons/mrp_byproduct/i18n/nb.po +++ b/addons/mrp_byproduct/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nl.po b/addons/mrp_byproduct/i18n/nl.po index e5b9456df9b..3652c1143d3 100644 --- a/addons/mrp_byproduct/i18n/nl.po +++ b/addons/mrp_byproduct/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-27 17:48+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nl_BE.po b/addons/mrp_byproduct/i18n/nl_BE.po index 7e525f3203f..bbcb68e6524 100644 --- a/addons/mrp_byproduct/i18n/nl_BE.po +++ b/addons/mrp_byproduct/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/oc.po b/addons/mrp_byproduct/i18n/oc.po index 1a7c2c86547..6871be1498b 100644 --- a/addons/mrp_byproduct/i18n/oc.po +++ b/addons/mrp_byproduct/i18n/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pl.po b/addons/mrp_byproduct/i18n/pl.po index 85c46b8f4cb..c6dfbf34db4 100644 --- a/addons/mrp_byproduct/i18n/pl.po +++ b/addons/mrp_byproduct/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pt.po b/addons/mrp_byproduct/i18n/pt.po index 861414e5494..e4e02e8ae00 100644 --- a/addons/mrp_byproduct/i18n/pt.po +++ b/addons/mrp_byproduct/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-18 11:10+0000\n" "Last-Translator: Rui Franco (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pt_BR.po b/addons/mrp_byproduct/i18n/pt_BR.po index cf6063fcf2e..8b19a1d5416 100644 --- a/addons/mrp_byproduct/i18n/pt_BR.po +++ b/addons/mrp_byproduct/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ro.po b/addons/mrp_byproduct/i18n/ro.po index 1e0f835801a..daa6293a4f3 100644 --- a/addons/mrp_byproduct/i18n/ro.po +++ b/addons/mrp_byproduct/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-08 18:38+0000\n" -"Last-Translator: Fekete Mihai \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-02-09 05:29+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ru.po b/addons/mrp_byproduct/i18n/ru.po index d0c92e421fc..a556ba41328 100644 --- a/addons/mrp_byproduct/i18n/ru.po +++ b/addons/mrp_byproduct/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sk.po b/addons/mrp_byproduct/i18n/sk.po index 38f2bea8b09..def18ab153a 100644 --- a/addons/mrp_byproduct/i18n/sk.po +++ b/addons/mrp_byproduct/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sl.po b/addons/mrp_byproduct/i18n/sl.po index e919f57e3ba..35a1ef279f0 100644 --- a/addons/mrp_byproduct/i18n/sl.po +++ b/addons/mrp_byproduct/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-16 01:01+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sq.po b/addons/mrp_byproduct/i18n/sq.po index f84256e707b..d2b997e59cc 100644 --- a/addons/mrp_byproduct/i18n/sq.po +++ b/addons/mrp_byproduct/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sr.po b/addons/mrp_byproduct/i18n/sr.po index e6fb5047643..b154b0e8d88 100644 --- a/addons/mrp_byproduct/i18n/sr.po +++ b/addons/mrp_byproduct/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sr@latin.po b/addons/mrp_byproduct/i18n/sr@latin.po index a892b600960..f15aaae2a7b 100644 --- a/addons/mrp_byproduct/i18n/sr@latin.po +++ b/addons/mrp_byproduct/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sv.po b/addons/mrp_byproduct/i18n/sv.po index 3436c265872..340bd8292dc 100644 --- a/addons/mrp_byproduct/i18n/sv.po +++ b/addons/mrp_byproduct/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/tlh.po b/addons/mrp_byproduct/i18n/tlh.po index 8b3f675f990..c4d743788c1 100644 --- a/addons/mrp_byproduct/i18n/tlh.po +++ b/addons/mrp_byproduct/i18n/tlh.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Klingon \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/tr.po b/addons/mrp_byproduct/i18n/tr.po index 3ed4ef9689e..1207de22b1f 100644 --- a/addons/mrp_byproduct/i18n/tr.po +++ b/addons/mrp_byproduct/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-07 13:17+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-03-03 01:56+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-08 05:24+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 @@ -28,6 +28,12 @@ msgid "" "BoM / quantity of manufactured product set on the BoM * quantity of " "manufactured product in the production order.)'" msgstr "" +"Bu Ürün Ağacı kullanılarak yan ürünlerin miktarının üretim emirlerinde nasıl " +"ayarlanacağını tanımlayın. 'Sabit' oluşturulan yan ürünün miktarının her " +"zaman Ürün Ağacında ayarlanan miktara eşit olduğunu belirtir, üretim " +"emirlerinde ne kadar oluşturulduğuna bakılmaksızın. Buna karşın 'Değişken' " +"miktarın '( Ürün Ağacında ayarlanan yan ürün miktarı / Ürün Ağacında " +"ayarlanan ürün miktarı * üretim emrinde üretilen ürün miktarı)' demektir." #. module: mrp_byproduct #: field:mrp.subproduct,product_id:0 @@ -53,7 +59,7 @@ msgstr "Ürün Miktarını Değiştir" #: view:mrp.bom:0 #: field:mrp.bom,sub_products:0 msgid "Byproducts" -msgstr "Ürüne göre" +msgstr "Yan ürünler" #. module: mrp_byproduct #: field:mrp.subproduct,subproduct_type:0 @@ -63,12 +69,12 @@ msgstr "Miktar Tipi" #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_bom msgid "Bill of Material" -msgstr "Malzeme Faturası" +msgstr "Ürün Ağacı" #. module: mrp_byproduct #: field:mrp.subproduct,product_qty:0 msgid "Product Qty" -msgstr "Ürün Mik." +msgstr "Ürün Mik" #. module: mrp_byproduct #: code:addons/mrp_byproduct/mrp_byproduct.py:63 @@ -79,7 +85,7 @@ msgstr "Uyarı" #. module: mrp_byproduct #: field:mrp.subproduct,bom_id:0 msgid "BoM" -msgstr "BoM (Malzeme Faturası)" +msgstr "Ürün Ağacı" #. module: mrp_byproduct #: selection:mrp.subproduct,subproduct_type:0 @@ -89,7 +95,7 @@ msgstr "Değişken" #. module: mrp_byproduct #: selection:mrp.subproduct,subproduct_type:0 msgid "Fixed" -msgstr "Sabitlendi" +msgstr "Sabit" #. module: mrp_byproduct #: code:addons/mrp_byproduct/mrp_byproduct.py:63 @@ -104,4 +110,4 @@ msgstr "" #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_subproduct msgid "Byproduct" -msgstr "Ürüne göre" +msgstr "Yan ürün" diff --git a/addons/mrp_byproduct/i18n/uk.po b/addons/mrp_byproduct/i18n/uk.po index 2cf4667c248..6fbcd91961a 100644 --- a/addons/mrp_byproduct/i18n/uk.po +++ b/addons/mrp_byproduct/i18n/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/vi.po b/addons/mrp_byproduct/i18n/vi.po index 7091d101db3..45abf7ade1a 100644 --- a/addons/mrp_byproduct/i18n/vi.po +++ b/addons/mrp_byproduct/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/zh_CN.po b/addons/mrp_byproduct/i18n/zh_CN.po index 4a65fc8a3fc..5659cf8a9df 100644 --- a/addons/mrp_byproduct/i18n/zh_CN.po +++ b/addons/mrp_byproduct/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/zh_TW.po b/addons/mrp_byproduct/i18n/zh_TW.po index e86246d51fe..f50fb02d542 100644 --- a/addons/mrp_byproduct/i18n/zh_TW.po +++ b/addons/mrp_byproduct/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_jit/i18n/ar.po b/addons/mrp_jit/i18n/ar.po index 0c1ae57f064..ea62d83f002 100644 --- a/addons/mrp_jit/i18n/ar.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/bg.po b/addons/mrp_jit/i18n/bg.po index 70aff9b7751..86578bd5a35 100644 --- a/addons/mrp_jit/i18n/bg.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/bs.po b/addons/mrp_jit/i18n/bs.po index 70e9ceaad57..572abd9dfed 100644 --- a/addons/mrp_jit/i18n/bs.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ca.po b/addons/mrp_jit/i18n/ca.po index 90cbbc9a16d..c85189c6e05 100644 --- a/addons/mrp_jit/i18n/ca.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/cs.po b/addons/mrp_jit/i18n/cs.po index 9ce2d6f8128..5147d4b59f6 100644 --- a/addons/mrp_jit/i18n/cs.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/da.po b/addons/mrp_jit/i18n/da.po index 77d37ee63ec..7b0d15c18db 100644 --- a/addons/mrp_jit/i18n/da.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/de.po b/addons/mrp_jit/i18n/de.po index 0cc885c965f..c898f5a37f0 100644 --- a/addons/mrp_jit/i18n/de.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/el.po b/addons/mrp_jit/i18n/el.po index 9520f1a5bca..dc6cfb48277 100644 --- a/addons/mrp_jit/i18n/el.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es.po b/addons/mrp_jit/i18n/es.po index 38f7bc7564f..06d90173bb4 100644 --- a/addons/mrp_jit/i18n/es.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_AR.po b/addons/mrp_jit/i18n/es_AR.po index bfa41394f79..b5c5eeb6c55 100644 --- a/addons/mrp_jit/i18n/es_AR.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_CR.po b/addons/mrp_jit/i18n/es_CR.po index a73889e5b17..2bcab833014 100644 --- a/addons/mrp_jit/i18n/es_CR.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_EC.po b/addons/mrp_jit/i18n/es_EC.po index 2d76825513f..1b84dff6336 100644 --- a/addons/mrp_jit/i18n/es_EC.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/et.po b/addons/mrp_jit/i18n/et.po index 05275033691..1c60266c431 100644 --- a/addons/mrp_jit/i18n/et.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/fi.po b/addons/mrp_jit/i18n/fi.po index 80e62fc5546..4c4eff67770 100644 --- a/addons/mrp_jit/i18n/fi.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/fr.po b/addons/mrp_jit/i18n/fr.po index a5580038b00..972f035b544 100644 --- a/addons/mrp_jit/i18n/fr.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/gl.po b/addons/mrp_jit/i18n/gl.po index 804bad3ff94..424f504f788 100644 --- a/addons/mrp_jit/i18n/gl.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/hr.po b/addons/mrp_jit/i18n/hr.po index b4cf0336908..dae51bcd33e 100644 --- a/addons/mrp_jit/i18n/hr.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/hu.po b/addons/mrp_jit/i18n/hu.po index 9e45010391d..d10e69f30dc 100644 --- a/addons/mrp_jit/i18n/hu.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/id.po b/addons/mrp_jit/i18n/id.po index 185932649a9..23f9bd3d28f 100644 --- a/addons/mrp_jit/i18n/id.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/it.po b/addons/mrp_jit/i18n/it.po index 2e60d27540f..866e1991f7a 100644 --- a/addons/mrp_jit/i18n/it.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ja.po b/addons/mrp_jit/i18n/ja.po index 6ca50042d2a..add5b2443f5 100644 --- a/addons/mrp_jit/i18n/ja.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/kab.po b/addons/mrp_jit/i18n/kab.po index cba2114ea42..97d7ac1ef93 100644 --- a/addons/mrp_jit/i18n/kab.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ko.po b/addons/mrp_jit/i18n/ko.po index 1b2b71f4d01..9a53263afb7 100644 --- a/addons/mrp_jit/i18n/ko.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/lt.po b/addons/mrp_jit/i18n/lt.po index 36363d70d46..383a3625200 100644 --- a/addons/mrp_jit/i18n/lt.po +++ b/addons/mrp_jit/i18n/lt.po @@ -8,19 +8,19 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-11 11:15+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-05-01 21:55+0000\n" +"Last-Translator: Donatas Stonys Blue Whale SEO \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-05-02 06:08+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information msgid "MRP JIT" -msgstr "" +msgstr "MRP JIT" #. module: mrp_jit #: model:ir.module.module,description:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/mk.po b/addons/mrp_jit/i18n/mk.po new file mode 100644 index 00000000000..ee755f78277 --- /dev/null +++ b/addons/mrp_jit/i18n/mk.po @@ -0,0 +1,49 @@ +# 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: 2011-01-11 11:15+0000\n" +"PO-Revision-Date: 2013-03-08 14:47+0000\n" +"Last-Translator: Софче Димитријева \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-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: mrp_jit +#: model:ir.module.module,shortdesc:mrp_jit.module_meta_information +msgid "MRP JIT" +msgstr "MRP JIT" + +#. module: mrp_jit +#: model:ir.module.module,description:mrp_jit.module_meta_information +msgid "" +"\n" +" This module allows Just In Time computation of procurement orders.\n" +"\n" +" If you install this module, you will not have to run the regular " +"procurement \n" +" scheduler anymore (but you still need to run the minimum order point " +"rule \n" +" scheduler, or for example let it run daily.)\n" +" All procurement orders will be processed immediately, which could in " +"some\n" +" cases entail a small performance impact.\n" +"\n" +" It may also increase your stock size because products are reserved as " +"soon\n" +" as possible and the scheduler time range is not taken into account " +"anymore. \n" +" In that case, you can not use priorities any more on the different " +"picking.\n" +" \n" +" \n" +" " +msgstr "" diff --git a/addons/mrp_jit/i18n/ml.po b/addons/mrp_jit/i18n/ml.po index 812303b4a34..8524d6eb8ad 100644 --- a/addons/mrp_jit/i18n/ml.po +++ b/addons/mrp_jit/i18n/ml.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/mn.po b/addons/mrp_jit/i18n/mn.po index c6ca1c0851d..86e877729aa 100644 --- a/addons/mrp_jit/i18n/mn.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nb.po b/addons/mrp_jit/i18n/nb.po index ee86209f3fb..fd7762e279d 100644 --- a/addons/mrp_jit/i18n/nb.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nl.po b/addons/mrp_jit/i18n/nl.po index e981b4bed72..0537cef3f13 100644 --- a/addons/mrp_jit/i18n/nl.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nl_BE.po b/addons/mrp_jit/i18n/nl_BE.po index d8436e0ea82..d4655501a11 100644 --- a/addons/mrp_jit/i18n/nl_BE.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/oc.po b/addons/mrp_jit/i18n/oc.po index 23917a22e6c..28d3c6f2f7e 100644 --- a/addons/mrp_jit/i18n/oc.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pl.po b/addons/mrp_jit/i18n/pl.po index f734720630f..9be94010f5b 100644 --- a/addons/mrp_jit/i18n/pl.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pt.po b/addons/mrp_jit/i18n/pt.po index b7f9081134c..de5b8577806 100644 --- a/addons/mrp_jit/i18n/pt.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pt_BR.po b/addons/mrp_jit/i18n/pt_BR.po index 7dc8523020f..adb48320ae8 100644 --- a/addons/mrp_jit/i18n/pt_BR.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ro.po b/addons/mrp_jit/i18n/ro.po index 60caa9e58de..b6c6d240b5a 100644 --- a/addons/mrp_jit/i18n/ro.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ru.po b/addons/mrp_jit/i18n/ru.po index 0c946cdaaba..8b07066eac7 100644 --- a/addons/mrp_jit/i18n/ru.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sk.po b/addons/mrp_jit/i18n/sk.po index 70e5fbc98fe..8dbab3854c8 100644 --- a/addons/mrp_jit/i18n/sk.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sl.po b/addons/mrp_jit/i18n/sl.po index 7d4f168363e..16c72eb028a 100644 --- a/addons/mrp_jit/i18n/sl.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sq.po b/addons/mrp_jit/i18n/sq.po index 083102d0e78..6afb37d8bb6 100644 --- a/addons/mrp_jit/i18n/sq.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sr.po b/addons/mrp_jit/i18n/sr.po index 527ff85ca6d..4ace4ca19e6 100644 --- a/addons/mrp_jit/i18n/sr.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sr@latin.po b/addons/mrp_jit/i18n/sr@latin.po index 6a38c4bdeb2..1ff715b175c 100644 --- a/addons/mrp_jit/i18n/sr@latin.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sv.po b/addons/mrp_jit/i18n/sv.po index f96f303235c..a2597595988 100644 --- a/addons/mrp_jit/i18n/sv.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ta.po b/addons/mrp_jit/i18n/ta.po index efc4fa75e59..4c6fb34ce21 100644 --- a/addons/mrp_jit/i18n/ta.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/tr.po b/addons/mrp_jit/i18n/tr.po index 3adee9ddeb6..c02c5b7509a 100644 --- a/addons/mrp_jit/i18n/tr.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/uk.po b/addons/mrp_jit/i18n/uk.po index 3c18b2227a2..a6d6d87ec14 100644 --- a/addons/mrp_jit/i18n/uk.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/vi.po b/addons/mrp_jit/i18n/vi.po index c1f53294955..793cb0fa8d9 100644 --- a/addons/mrp_jit/i18n/vi.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/zh_CN.po b/addons/mrp_jit/i18n/zh_CN.po index 52abcd24b90..ac624c9370b 100644 --- a/addons/mrp_jit/i18n/zh_CN.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/zh_TW.po b/addons/mrp_jit/i18n/zh_TW.po index 6a9aec3e118..437d2e88c12 100644 --- a/addons/mrp_jit/i18n/zh_TW.po +++ b/addons/mrp_jit/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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_operations/i18n/ar.po b/addons/mrp_operations/i18n/ar.po index 50157003291..f1935e42932 100644 --- a/addons/mrp_operations/i18n/ar.po +++ b/addons/mrp_operations/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "باركود البدء/التوقف" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "إلغاء" diff --git a/addons/mrp_operations/i18n/bg.po b/addons/mrp_operations/i18n/bg.po index 933e2fc9981..55f3f6c67ac 100644 --- a/addons/mrp_operations/i18n/bg.po +++ b/addons/mrp_operations/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -597,7 +597,6 @@ msgid "Start/Stop Barcode" msgstr "Старт/Стоп баркод" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Отмяна" diff --git a/addons/mrp_operations/i18n/bs.po b/addons/mrp_operations/i18n/bs.po index 397909caf7d..dcc4d02b6c1 100644 --- a/addons/mrp_operations/i18n/bs.po +++ b/addons/mrp_operations/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/i18n/ca.po b/addons/mrp_operations/i18n/ca.po index 3fa73659f1b..f7f8f5649c1 100644 --- a/addons/mrp_operations/i18n/ca.po +++ b/addons/mrp_operations/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -596,7 +596,6 @@ msgid "Start/Stop Barcode" msgstr "Codi de barres Inicia/Para" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Cancel·la" diff --git a/addons/mrp_operations/i18n/cs.po b/addons/mrp_operations/i18n/cs.po index 16c745695fd..b3eff504cb1 100644 --- a/addons/mrp_operations/i18n/cs.po +++ b/addons/mrp_operations/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-30 12:32+0000\n" "Last-Translator: Jan Grmela \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-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -609,7 +609,6 @@ msgid "Start/Stop Barcode" msgstr "Čárový kód spuštění/ukončení" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Zrušit" diff --git a/addons/mrp_operations/i18n/da.po b/addons/mrp_operations/i18n/da.po index 4859b390d2a..999280b87e1 100644 --- a/addons/mrp_operations/i18n/da.po +++ b/addons/mrp_operations/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/i18n/de.po b/addons/mrp_operations/i18n/de.po index a28de66cf1a..e1b73c031dd 100644 --- a/addons/mrp_operations/i18n/de.po +++ b/addons/mrp_operations/i18n/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-06 21:44+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -619,7 +619,6 @@ msgid "Start/Stop Barcode" msgstr "Start / Stop Barcode" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Abbruch" diff --git a/addons/mrp_operations/i18n/es.po b/addons/mrp_operations/i18n/es.po index e81902df080..1415823dc8b 100644 --- a/addons/mrp_operations/i18n/es.po +++ b/addons/mrp_operations/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -611,7 +611,6 @@ msgid "Start/Stop Barcode" msgstr "Código de barras Iniciar/Parar" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Cancelar" diff --git a/addons/mrp_operations/i18n/es_AR.po b/addons/mrp_operations/i18n/es_AR.po index 25018c028f0..e9650648c07 100644 --- a/addons/mrp_operations/i18n/es_AR.po +++ b/addons/mrp_operations/i18n/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Argentina) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "Código de barras Iniciar/Parar" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Cancelar" diff --git a/addons/mrp_operations/i18n/es_CR.po b/addons/mrp_operations/i18n/es_CR.po index 242be002908..67a0fe67c29 100644 --- a/addons/mrp_operations/i18n/es_CR.po +++ b/addons/mrp_operations/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -603,7 +603,6 @@ msgid "Start/Stop Barcode" msgstr "Código de barras Iniciar/Parar" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Cancelar" diff --git a/addons/mrp_operations/i18n/es_EC.po b/addons/mrp_operations/i18n/es_EC.po index e1b94eac1b8..0d1262a6704 100644 --- a/addons/mrp_operations/i18n/es_EC.po +++ b/addons/mrp_operations/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -596,7 +596,6 @@ msgid "Start/Stop Barcode" msgstr "Código de barras Iniciar/Parar" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Cancelar" diff --git a/addons/mrp_operations/i18n/et.po b/addons/mrp_operations/i18n/et.po index a34f214a1ae..166e4b50211 100644 --- a/addons/mrp_operations/i18n/et.po +++ b/addons/mrp_operations/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "Alustamise/Peatamise ribakood" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Tühista" diff --git a/addons/mrp_operations/i18n/fi.po b/addons/mrp_operations/i18n/fi.po index 0831eef41c8..f42f2c97fdb 100644 --- a/addons/mrp_operations/i18n/fi.po +++ b/addons/mrp_operations/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -598,7 +598,6 @@ msgid "Start/Stop Barcode" msgstr "Aloita/Pysäytä palkki" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Peruuta" diff --git a/addons/mrp_operations/i18n/fr.po b/addons/mrp_operations/i18n/fr.po index 8a0f436994d..905c96dc3b4 100644 --- a/addons/mrp_operations/i18n/fr.po +++ b/addons/mrp_operations/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-07 10:15+0000\n" "Last-Translator: Numérigraphe \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -621,7 +621,6 @@ msgid "Start/Stop Barcode" msgstr "Code à barre de début/fin" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Annuler" diff --git a/addons/mrp_operations/i18n/hi.po b/addons/mrp_operations/i18n/hi.po index 03d2b42d7f7..45c8db9e845 100644 --- a/addons/mrp_operations/i18n/hi.po +++ b/addons/mrp_operations/i18n/hi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "शुरू /बंद बारकोड" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "रद्द करना" diff --git a/addons/mrp_operations/i18n/hr.po b/addons/mrp_operations/i18n/hr.po index 46f9f2ea18e..56bec3ea3a0 100644 --- a/addons/mrp_operations/i18n/hr.po +++ b/addons/mrp_operations/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -594,7 +594,6 @@ msgid "Start/Stop Barcode" msgstr "Start/Stop Barcode" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Odustani" diff --git a/addons/mrp_operations/i18n/hu.po b/addons/mrp_operations/i18n/hu.po index 6a3d0aecce2..408d79f57a8 100644 --- a/addons/mrp_operations/i18n/hu.po +++ b/addons/mrp_operations/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -23,13 +23,13 @@ msgstr "" #: view:mrp.production.workcenter.line:0 #: view:mrp.workorder:0 msgid "Work Orders" -msgstr "" +msgstr "Munka megrendelések" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:484 #, python-format msgid "Operation is already finished!" -msgstr "" +msgstr "A művelet már elvégezve!" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_canceloperation0 @@ -50,12 +50,12 @@ msgstr "Csoportosítás..." #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_workorder0 msgid "Information from the routing definition." -msgstr "" +msgstr "Információ az útvonal meghatározásról." #. module: mrp_operations #: field:mrp.production.workcenter.line,uom:0 msgid "Unit of Measure" -msgstr "" +msgstr "Mértékegység" #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -65,7 +65,7 @@ msgstr "Március" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_resource_planning msgid "Work Centers" -msgstr "" +msgstr "Munkaállomások" #. module: mrp_operations #: view:mrp.production:0 @@ -77,22 +77,22 @@ msgstr "Folytatás" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Product to Produce" -msgstr "" +msgstr "Gyártandó termék" #. module: mrp_operations #: view:mrp_operations.operation:0 msgid "Production Operation" -msgstr "Gyártási művelet" +msgstr "Termelési művelet" #. module: mrp_operations #: view:mrp.production:0 msgid "Set to Draft" -msgstr "" +msgstr "Beállítás tervezetnek" #. module: mrp_operations #: field:mrp.production,allow_reorder:0 msgid "Free Serialisation" -msgstr "" +msgstr "Szabad sorozatosítás" #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_mrp_production @@ -102,7 +102,7 @@ msgstr "Gyártási rendelés" #. module: mrp_operations #: model:process.process,name:mrp_operations.process_process_mrpoperationprocess0 msgid "Mrp Operations" -msgstr "" +msgstr "Mrp műveletek" #. module: mrp_operations #: view:mrp.workorder:0 @@ -113,12 +113,12 @@ msgstr "Nap" #. module: mrp_operations #: view:mrp.production:0 msgid "Cancel Order" -msgstr "" +msgstr "Rendelés visszavonása" #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_productionorder0 msgid "Production Order" -msgstr "Gyártási rendelés" +msgstr "Termelési megrendelés" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 @@ -128,12 +128,12 @@ msgstr "Kiszedési kivétel" #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_productionstart0 msgid "Creation of the work order" -msgstr "" +msgstr "Munka megrendelés létrehozása" #. module: mrp_operations #: model:process.transition,note:mrp_operations.process_transition_productionstart0 msgid "The work orders are created on the basis of the production order." -msgstr "" +msgstr "A munka megrendelés létrehozva a termelési megbízás alapján." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:134 @@ -156,7 +156,7 @@ msgstr "Törölt" #: code:addons/mrp_operations/mrp_operations.py:477 #, python-format msgid "Operation is Already Cancelled!" -msgstr "" +msgstr "A műveletet már visszavonták!" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_operation_action @@ -173,7 +173,7 @@ msgstr "Készletmozgás" #: code:addons/mrp_operations/mrp_operations.py:481 #, python-format msgid "No operation to cancel." -msgstr "" +msgstr "Nincs visszavonandó művelet." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:474 @@ -181,6 +181,7 @@ msgstr "" msgid "" "In order to Finish the operation, it must be in the Start or Resume state!" msgstr "" +"A művelet elvégzéséhez, annak Induló vagy Folytatás állapotúnak kell lennie!" #. module: mrp_operations #: field:mrp.workorder,nbr:0 @@ -198,12 +199,12 @@ msgstr "Tervezet" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Actual Production Date" -msgstr "" +msgstr "Aktuális termelési dátum" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Production Workcenter" -msgstr "" +msgstr "Termelési munkaállomás" #. module: mrp_operations #: field:mrp.production.workcenter.line,date_finished:0 @@ -215,13 +216,13 @@ msgstr "Befejezés dátuma" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 msgid "In Production" -msgstr "Gyártás alatt" +msgstr "Termelésben" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.action_report_mrp_workorder #: model:ir.model,name:mrp_operations.model_mrp_production_workcenter_line msgid "Work Order" -msgstr "" +msgstr "Munka megrendelés" #. module: mrp_operations #: model:process.transition,note:mrp_operations.process_transition_workstartoperation0 @@ -229,16 +230,18 @@ msgid "" "There is 1 work order per work center. The information about the number of " "cycles or the cycle time." msgstr "" +"Itt egy munka megrendelés van egy munkaállomáshoz. Az információ a ciklus " +"szám vagy ciklus idő." #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_report_mrp_workorders_tree msgid "Work Order Analysis" -msgstr "" +msgstr "Munka megrendelés elemzés" #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_action_planning msgid "Work Orders By Resource" -msgstr "" +msgstr "Munka megrendelés a készletek alapján" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -255,7 +258,7 @@ msgstr "Termékmenny." #: code:addons/mrp_operations/mrp_operations.py:134 #, python-format msgid "Manufacturing order cannot start in state \"%s\"!" -msgstr "" +msgstr "Gyártási megrendelést nem lehewt elindítani a \"%s\" állapotban!" #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -279,7 +282,7 @@ msgstr "Státusz" #. module: mrp_operations #: view:mrp.workorder:0 msgid "Planned Year" -msgstr "" +msgstr "Tervezett év" #. module: mrp_operations #: field:mrp_operations.operation,order_date:0 @@ -289,12 +292,12 @@ msgstr "Rendelés időpontja" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_draft_action msgid "Future Work Orders" -msgstr "" +msgstr "Jövőbeni munka megrendelések" #. module: mrp_operations #: view:mrp.production:0 msgid "Finish Order" -msgstr "" +msgstr "Megrendelés elvégzése" #. module: mrp_operations #: model:ir.actions.act_window,help:mrp_operations.mrp_production_wc_action_form @@ -312,11 +315,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új munka megrendelés elindításához. \n" +"

\n" +" Munka megrendelések olyan műveletek listája, melyeket egyes " +"gyártási\n" +" megrendeléshez el kell végezni. Ha egyszer elindult a gyártási " +"megrendelés\n" +" első munka megrendelése, a gyártási megrendelés automatikusan " +"elindultnak\n" +" jelölt. Ha elvégezte az utolsó műveletet is a gyártási " +"megrendelésen,\n" +" akkor a gyártási megrendelés automatikusan elvégzett állapotú " +"lesz és \n" +" az ide vonatkozó termék legyártott.\n" +"

\n" +" " #. module: mrp_operations #: help:mrp.production.workcenter.line,delay:0 msgid "The elapsed time between operation start and stop in this Work Center" -msgstr "" +msgstr "A munka állomás elindítása és leállása közt eltelt idő" #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_canceloperation0 @@ -326,7 +345,7 @@ msgstr "Törölt műveletek" #. module: mrp_operations #: view:mrp.production:0 msgid "Pause Work Order" -msgstr "" +msgstr "Munka megrendelés megállítása" #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -357,7 +376,7 @@ msgstr "mrp_operations.operation" #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_mrp_workorder msgid "Work Order Report" -msgstr "" +msgstr "Munka megrendelés jelentés" #. module: mrp_operations #: field:mrp.production.workcenter.line,date_start:0 @@ -373,7 +392,7 @@ msgstr "Várakozás az árura" #. module: mrp_operations #: field:mrp.production.workcenter.line,production_state:0 msgid "Production Status" -msgstr "" +msgstr "Termelés állapota" #. module: mrp_operations #: selection:mrp.workorder,state:0 @@ -394,12 +413,16 @@ msgstr "Folyamatban" msgid "" "In order to Pause the operation, it must be in the Start or Resume state!" msgstr "" +"Ahhoz, hogy a művelet megállítsa, annak Elindított vagy folytatás " +"állapotúnak kell lennie!" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:469 #, python-format msgid "In order to Resume the operation, it must be in the Pause state!" msgstr "" +"Ahhoz, hogy a művelet Folytathassa, annak Megállított állapotúnak kell " +"lennie!" #. module: mrp_operations #: view:mrp.production:0 @@ -419,6 +442,7 @@ msgid "" "When the operation needs to be cancelled, you can do it in the work order " "form." msgstr "" +"Ha egy műveletet vissza akar vonni, azt megteheti a munka megrendelés lapon." #. module: mrp_operations #: view:mrp.production:0 @@ -436,7 +460,7 @@ msgstr "Függőben lévő" #. module: mrp_operations #: view:mrp_operations.operation.code:0 msgid "Production Operation Code" -msgstr "" +msgstr "Termelés műveleti kód" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:461 @@ -445,6 +469,8 @@ msgid "" "Operation has already started! You can either Pause/Finish/Cancel the " "operation." msgstr "" +"a művelet már elindult! Ezt a műveletet meg tudja " +"állítani/elvégezni/visszavonni." #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -459,12 +485,12 @@ msgstr "Indított" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Production started late" -msgstr "" +msgstr "A termelés késve indított" #. module: mrp_operations #: view:mrp.workorder:0 msgid "Planned Day" -msgstr "" +msgstr "Tervezett nap" #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -480,7 +506,7 @@ msgstr "Összes ciklus" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 msgid "Ready to Produce" -msgstr "" +msgstr "Gyártásra kész" #. module: mrp_operations #: field:stock.move,move_dest_id_lines:0 @@ -490,7 +516,7 @@ msgstr "Almozgások" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_planning msgid "Work Orders Planning" -msgstr "" +msgstr "Munka megrendelés tervezés" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -521,7 +547,7 @@ msgstr "Január" #. module: mrp_operations #: view:mrp.production:0 msgid "Resume Work Order" -msgstr "" +msgstr "Munka megrendelés folytatás" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_doneoperation0 @@ -537,7 +563,7 @@ msgstr "A művelet még nem kezdődött el !" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_productionorder0 msgid "Information from the production order." -msgstr "" +msgstr "Információ a termelési megbízásból" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:454 @@ -546,7 +572,7 @@ msgstr "" #: code:addons/mrp_operations/mrp_operations.py:477 #, python-format msgid "Sorry!" -msgstr "" +msgstr "Bocsánat!" #. module: mrp_operations #: view:mrp.workorder:0 @@ -562,7 +588,7 @@ msgstr "Kód" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_confirm_action msgid "Confirmed Work Orders" -msgstr "" +msgstr "Munka megrendelés visszaigazolás" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_code_action @@ -589,13 +615,12 @@ msgstr "Kész" #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode msgid "Start/Stop Barcode" -msgstr "" +msgstr "Start/Stop Barcode" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" -msgstr "" +msgstr "Visszavonás" #. module: mrp_operations #: help:mrp.production.workcenter.line,state:0 @@ -609,6 +634,17 @@ msgid "" "* When order is completely processed that time it is set in 'Finished' " "status." msgstr "" +"* Ha egy munka megrendelés létre lett hozva akkor az 'Tervezet' állapotú " +"lesz.\n" +"* Ha egy felhasználó elindítás állapotba teszi azt, akkor onnantól kezdve " +"'Folyamatban' állapotú lesz.\n" +"* Ha a munka megrendelés futtatás módban van, és egy felhasználó meg akarja " +"állítani vagy változtatni kívánja a megrendelést akkor be lehet állítani " +"'Függő' állapotba.\n" +"* Ha a felhasználó visszavonja a munka megrendelést, akkor az 'Visszavonva' " +"állapotú lesz.\n" +"* Ha a megrendelés a megadott időn belül el lett végezve akkor az " +"'Befejezve' állapotú lesz." #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_startoperation0 @@ -636,11 +672,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új munka megrendelés elindításához.\n" +"

\n" +" Termék gyártása vagy összeszerelése és nyersanyag valamint " +"elkészült\n" +" termék használatához gyártási műveleteket is kell végezni.\n" +" Gyártási műveleteket sokszor úgy hívunk, hogy munka " +"megrendelések.\n" +" A különböző műveletek különféleképpen befolyásolják a gyártás " +"költségeit\n" +" és tervezését az elérhető kapacitástól függően.\n" +"

\n" +" " #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_wc_barcode msgid "Work Centers Barcode" -msgstr "" +msgstr "Munka állomás Barcode" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -658,12 +707,12 @@ msgstr "Késleltetés" #: field:mrp.workorder,production_id:0 #: field:mrp_operations.operation,production_id:0 msgid "Production" -msgstr "Gyártás" +msgstr "Termelés" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Search Work Orders" -msgstr "" +msgstr "Munka állomások keresése" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -672,7 +721,7 @@ msgstr "" #: field:mrp_operations.operation,workcenter_id:0 #: model:process.node,name:mrp_operations.process_node_workorder0 msgid "Work Center" -msgstr "" +msgstr "Munkaállomás" #. module: mrp_operations #: field:mrp.production.workcenter.line,date_planned:0 @@ -698,6 +747,8 @@ msgid "" "Check this to be able to move independently all production orders, without " "moving dependent ones." msgstr "" +"Jelölje be ezt, hogy a termelési megrendeléseken a függetleneket " +"mozgathassa, a kapcsolódók nélkül." #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -715,7 +766,7 @@ msgstr "Befejezett" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Hours by Work Center" -msgstr "" +msgstr "Munka állomáson eltöltött idők" #. module: mrp_operations #: field:mrp.production.workcenter.line,delay:0 @@ -725,7 +776,7 @@ msgstr "Munkaórák" #. module: mrp_operations #: view:mrp.workorder:0 msgid "Planned Month" -msgstr "" +msgstr "Havi tervezet" #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -760,7 +811,7 @@ msgstr "Rendelési sorok száma" #. module: mrp_operations #: view:mrp.production:0 msgid "Start Working" -msgstr "" +msgstr "Munka kezdése" #. module: mrp_operations #: model:process.transition,note:mrp_operations.process_transition_startdoneoperation0 @@ -768,11 +819,13 @@ msgid "" "When the operation is finished, the operator updates the system by finishing " "the work order." msgstr "" +"Ha a művelet elvégzett, akkor a kezelő frissíti a rendszert a munka " +"megrendelés elvégzésével." #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_workstartoperation0 msgid "Details of the work order" -msgstr "" +msgstr "A munka megrendelés részletei" #. module: mrp_operations #: view:mrp.workorder:0 diff --git a/addons/mrp_operations/i18n/id.po b/addons/mrp_operations/i18n/id.po index 83fd1e48bf6..71f8c9300e8 100644 --- a/addons/mrp_operations/i18n/id.po +++ b/addons/mrp_operations/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/i18n/it.po b/addons/mrp_operations/i18n/it.po index a60c919da00..8199afc9d38 100644 --- a/addons/mrp_operations/i18n/it.po +++ b/addons/mrp_operations/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -156,7 +156,7 @@ msgstr "Annullato" #: code:addons/mrp_operations/mrp_operations.py:477 #, python-format msgid "Operation is Already Cancelled!" -msgstr "" +msgstr "L'operazone è già annullata" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_operation_action @@ -173,7 +173,7 @@ msgstr "Movimento di magazzino" #: code:addons/mrp_operations/mrp_operations.py:481 #, python-format msgid "No operation to cancel." -msgstr "" +msgstr "Nessuna operazione da annullare" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:474 @@ -198,7 +198,7 @@ msgstr "Bozza" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Actual Production Date" -msgstr "" +msgstr "Data attuale produzione" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "Codi a Barre Avvio / Arresto" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Annulla" diff --git a/addons/mrp_operations/i18n/ja.po b/addons/mrp_operations/i18n/ja.po index c956d16b9f4..5bfcdd994e9 100644 --- a/addons/mrp_operations/i18n/ja.po +++ b/addons/mrp_operations/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "開始 / 停止バーコード" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "キャンセル" diff --git a/addons/mrp_operations/i18n/ko.po b/addons/mrp_operations/i18n/ko.po index 4847909e0a0..4b7d80d1e26 100644 --- a/addons/mrp_operations/i18n/ko.po +++ b/addons/mrp_operations/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "시작/중단 바코드" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "취소" diff --git a/addons/mrp_operations/i18n/lt.po b/addons/mrp_operations/i18n/lt.po index 036fc146a74..bb492634f2d 100644 --- a/addons/mrp_operations/i18n/lt.po +++ b/addons/mrp_operations/i18n/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/i18n/lv.po b/addons/mrp_operations/i18n/lv.po new file mode 100644 index 00000000000..ff5581494bd --- /dev/null +++ b/addons/mrp_operations/i18n/lv.po @@ -0,0 +1,786 @@ +# Latvian 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: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-03-18 13:16+0000\n" +"Last-Translator: Jānis \n" +"Language-Team: Latvian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form +#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_order +#: view:mrp.production.workcenter.line:0 +#: view:mrp.workorder:0 +msgid "Work Orders" +msgstr "Izpildes orderi" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:484 +#, python-format +msgid "Operation is already finished!" +msgstr "Process jau ir pabeigts!" + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_canceloperation0 +msgid "Cancel the operation." +msgstr "Atceļ procesu." + +#. module: mrp_operations +#: model:ir.model,name:mrp_operations.model_mrp_operations_operation_code +msgid "mrp_operations.operation.code" +msgstr "" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: view:mrp.workorder:0 +msgid "Group By..." +msgstr "Grupēt pēc..." + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_workorder0 +msgid "Information from the routing definition." +msgstr "Informācija no maršrutēšanas definēšanas." + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,uom:0 +msgid "Unit of Measure" +msgstr "Mērvienība" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "March" +msgstr "Marts" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_resource_planning +msgid "Work Centers" +msgstr "Resursi" + +#. module: mrp_operations +#: view:mrp.production:0 +#: view:mrp.production.workcenter.line:0 +#: selection:mrp_operations.operation.code,start_stop:0 +msgid "Resume" +msgstr "Kopsavilkums" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Product to Produce" +msgstr "Ražojums izpildei" + +#. module: mrp_operations +#: view:mrp_operations.operation:0 +msgid "Production Operation" +msgstr "Ražošanas operācija" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Set to Draft" +msgstr "Atzīmēt kā melnrakstu" + +#. module: mrp_operations +#: field:mrp.production,allow_reorder:0 +msgid "Free Serialisation" +msgstr "" + +#. module: mrp_operations +#: model:ir.model,name:mrp_operations.model_mrp_production +msgid "Manufacturing Order" +msgstr "Ražošanas orderis" + +#. module: mrp_operations +#: model:process.process,name:mrp_operations.process_process_mrpoperationprocess0 +msgid "Mrp Operations" +msgstr "Ražošanas operācijas" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,day:0 +msgid "Day" +msgstr "Diena" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Cancel Order" +msgstr "Atcelt orderi" + +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_productionorder0 +msgid "Production Order" +msgstr "Ražošanas orderis" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +msgid "Picking Exception" +msgstr "Izsniegšanas izņēmums" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_productionstart0 +msgid "Creation of the work order" +msgstr "Izpildes ordera veidošana" + +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_productionstart0 +msgid "The work orders are created on the basis of the production order." +msgstr "Izpildes orderi ir izveidoti pamatojoties uz ražošanas orderi." + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:134 +#: code:addons/mrp_operations/mrp_operations.py:465 +#: code:addons/mrp_operations/mrp_operations.py:469 +#: code:addons/mrp_operations/mrp_operations.py:481 +#: code:addons/mrp_operations/mrp_operations.py:484 +#, python-format +msgid "Error!" +msgstr "Kļūda!" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,state:0 +#: selection:mrp.workorder,state:0 +#: selection:mrp_operations.operation.code,start_stop:0 +msgid "Cancelled" +msgstr "Atcelts" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:477 +#, python-format +msgid "Operation is Already Cancelled!" +msgstr "Operācija jau ir atcelta!" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_operation_action +#: view:mrp.production.workcenter.line:0 +msgid "Operations" +msgstr "Operācijas" + +#. module: mrp_operations +#: model:ir.model,name:mrp_operations.model_stock_move +msgid "Stock Move" +msgstr "Krājumu kustība" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:481 +#, python-format +msgid "No operation to cancel." +msgstr "Nav operācija, ko atcelt." + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:474 +#, python-format +msgid "" +"In order to Finish the operation, it must be in the Start or Resume state!" +msgstr "Lai pabeigtu operāciju, tai jābūt statusā Sākums vai Atjaunot!" + +#. module: mrp_operations +#: field:mrp.workorder,nbr:0 +msgid "# of Lines" +msgstr "Rindu skaits" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: selection:mrp.production.workcenter.line,production_state:0 +#: selection:mrp.production.workcenter.line,state:0 +#: selection:mrp.workorder,state:0 +msgid "Draft" +msgstr "Melnraksts" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Actual Production Date" +msgstr "Aktuālais ražošanas datums" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Production Workcenter" +msgstr "Ražošanas resurss" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,date_finished:0 +#: field:mrp.production.workcenter.line,date_planned_end:0 +#: field:mrp_operations.operation,date_finished:0 +msgid "End Date" +msgstr "Beigu datums" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +msgid "In Production" +msgstr "Ražošanā" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.action_report_mrp_workorder +#: model:ir.model,name:mrp_operations.model_mrp_production_workcenter_line +msgid "Work Order" +msgstr "Izpildes orderis" + +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_workstartoperation0 +msgid "" +"There is 1 work order per work center. The information about the number of " +"cycles or the cycle time." +msgstr "" + +#. module: mrp_operations +#: model:ir.ui.menu,name:mrp_operations.menu_report_mrp_workorders_tree +msgid "Work Order Analysis" +msgstr "Izpildes ordera analīze" + +#. module: mrp_operations +#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_action_planning +msgid "Work Orders By Resource" +msgstr "Izpildes orderi pēc resursa" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Planned Date" +msgstr "Plānotais datums" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,product_qty:0 +msgid "Product Qty" +msgstr "Produkta daudzums" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:134 +#, python-format +msgid "Manufacturing order cannot start in state \"%s\"!" +msgstr "Ražošanas orderis nevar tikt uzsākts statusā \"%s\"!" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "July" +msgstr "Jūlijs" + +#. module: mrp_operations +#: field:mrp_operations.operation.code,name:0 +msgid "Operation Name" +msgstr "Operācijas nosaukums" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: field:mrp.production.workcenter.line,state:0 +#: view:mrp.workorder:0 +#: field:mrp.workorder,state:0 +#: field:mrp_operations.operation.code,start_stop:0 +msgid "Status" +msgstr "Statuss" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Planned Year" +msgstr "Plānotais gads" + +#. module: mrp_operations +#: field:mrp_operations.operation,order_date:0 +msgid "Order Date" +msgstr "Ordera datums" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_draft_action +msgid "Future Work Orders" +msgstr "Nākotnes izpildes orderi" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Finish Order" +msgstr "Beigu orderis" + +#. module: mrp_operations +#: model:ir.actions.act_window,help:mrp_operations.mrp_production_wc_action_form +msgid "" +"

\n" +" Click to start a new work order. \n" +"

\n" +" Work Orders is the list of operations to be performed for each\n" +" manufacturing order. Once you start the first work order of a\n" +" manufacturing order, the manufacturing order is automatically\n" +" marked as started. Once you finish the latest operation of a\n" +" manufacturing order, the MO is automatically done and the " +"related\n" +" products are produced.\n" +"

\n" +" " +msgstr "" + +#. module: mrp_operations +#: help:mrp.production.workcenter.line,delay:0 +msgid "The elapsed time between operation start and stop in this Work Center" +msgstr "" + +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_canceloperation0 +msgid "Operation Cancelled" +msgstr "Operācija ir atcelta" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Pause Work Order" +msgstr "Nopauzēt izpildes orderi" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "September" +msgstr "Septembris" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "December" +msgstr "Decembris" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,month:0 +msgid "Month" +msgstr "Mēnesis" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +msgid "Canceled" +msgstr "Atcelts" + +#. module: mrp_operations +#: model:ir.model,name:mrp_operations.model_mrp_operations_operation +msgid "mrp_operations.operation" +msgstr "" + +#. module: mrp_operations +#: model:ir.model,name:mrp_operations.model_mrp_workorder +msgid "Work Order Report" +msgstr "Izpildes ordera atskaite" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,date_start:0 +#: field:mrp_operations.operation,date_start:0 +msgid "Start Date" +msgstr "Sākuma datums" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +msgid "Waiting Goods" +msgstr "Gaida preces" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,production_state:0 +msgid "Production Status" +msgstr "Ražošanas statuss" + +#. module: mrp_operations +#: selection:mrp.workorder,state:0 +#: selection:mrp_operations.operation.code,start_stop:0 +msgid "Pause" +msgstr "Pauze" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: selection:mrp.production.workcenter.line,state:0 +#: selection:mrp.workorder,state:0 +msgid "In Progress" +msgstr "Tiek izpildīts" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:465 +#, python-format +msgid "" +"In order to Pause the operation, it must be in the Start or Resume state!" +msgstr "" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:469 +#, python-format +msgid "In order to Resume the operation, it must be in the Pause state!" +msgstr "" + +#. module: mrp_operations +#: view:mrp.production:0 +#: view:mrp.production.workcenter.line:0 +#: selection:mrp_operations.operation.code,start_stop:0 +msgid "Start" +msgstr "Sākt" + +#. module: mrp_operations +#: view:mrp_operations.operation:0 +msgid "Calendar View" +msgstr "Kalendāra skatījums" + +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_startcanceloperation0 +msgid "" +"When the operation needs to be cancelled, you can do it in the work order " +"form." +msgstr "" + +#. module: mrp_operations +#: view:mrp.production:0 +#: view:mrp.production.workcenter.line:0 +msgid "Set Draft" +msgstr "" + +#. module: mrp_operations +#: view:mrp.production:0 +#: view:mrp.production.workcenter.line:0 +#: selection:mrp.production.workcenter.line,state:0 +msgid "Pending" +msgstr "Gaida" + +#. module: mrp_operations +#: view:mrp_operations.operation.code:0 +msgid "Production Operation Code" +msgstr "Ražošanas operācijas kods" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:461 +#, python-format +msgid "" +"Operation has already started! You can either Pause/Finish/Cancel the " +"operation." +msgstr "" +"Operācija ir jau uzsākta! Jūs varat veikt Pauze/Beigas/Atcelt operācijas." + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "August" +msgstr "Augusts" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Started" +msgstr "Uzsākts" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Production started late" +msgstr "Ražošanu uzsāka novēloti" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Planned Day" +msgstr "Plānotā diena" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "June" +msgstr "Jūnijs" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,total_cycles:0 +msgid "Total Cycles" +msgstr "Cikli kopā" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +msgid "Ready to Produce" +msgstr "Gatavs ražošanai" + +#. module: mrp_operations +#: field:stock.move,move_dest_id_lines:0 +msgid "Children Moves" +msgstr "Pakārtotās kustības" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_planning +msgid "Work Orders Planning" +msgstr "Ražošanas orderu plānošana" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: field:mrp.workorder,date:0 +msgid "Date" +msgstr "Datums" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "November" +msgstr "Novembris" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Search" +msgstr "Meklēt" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "October" +msgstr "Oktobris" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "January" +msgstr "Janvāris" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Resume Work Order" +msgstr "Atsākt izpildes orderi" + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_doneoperation0 +msgid "Finish the operation." +msgstr "Pabeidz operāciju." + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:454 +#, python-format +msgid "Operation is not started yet !" +msgstr "Operācija vēl nav uzsākta!" + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_productionorder0 +msgid "Information from the production order." +msgstr "Informācija no ražošanas ordera." + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:454 +#: code:addons/mrp_operations/mrp_operations.py:461 +#: code:addons/mrp_operations/mrp_operations.py:474 +#: code:addons/mrp_operations/mrp_operations.py:477 +#, python-format +msgid "Sorry!" +msgstr "Atvainojiet!" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Current" +msgstr "Tekošais" + +#. module: mrp_operations +#: field:mrp_operations.operation,code_id:0 +#: field:mrp_operations.operation.code,code:0 +msgid "Code" +msgstr "Kods" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_confirm_action +msgid "Confirmed Work Orders" +msgstr "Apstiprinātie izpildes orderi" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_code_action +msgid "Operation Codes" +msgstr "Operāciju kodi" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,qty:0 +msgid "Qty" +msgstr "Daudzums" + +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_doneoperation0 +msgid "Operation Done" +msgstr "Operācija pabeigta" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +#: view:mrp.workorder:0 +#: selection:mrp_operations.operation.code,start_stop:0 +msgid "Done" +msgstr "Pabeigts" + +#. module: mrp_operations +#: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode +msgid "Start/Stop Barcode" +msgstr "" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Cancel" +msgstr "Atcelt" + +#. module: mrp_operations +#: help:mrp.production.workcenter.line,state:0 +msgid "" +"* When a work order is created it is set in 'Draft' status.\n" +"* When user sets work order in start mode that time it will be set in 'In " +"Progress' status.\n" +"* When work order is in running mode, during that time if user wants to stop " +"or to make changes in order then can set in 'Pending' status.\n" +"* When the user cancels the work order it will be set in 'Canceled' status.\n" +"* When order is completely processed that time it is set in 'Finished' " +"status." +msgstr "" + +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_startoperation0 +msgid "Start Operation" +msgstr "Uzsākt operāciju" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Information" +msgstr "Informācija" + +#. module: mrp_operations +#: model:ir.actions.act_window,help:mrp_operations.mrp_production_wc_action_planning +msgid "" +"

\n" +" Click to start a new work order.\n" +"

\n" +" To manufacture or assemble products, and use raw materials and\n" +" finished products you must also handle manufacturing " +"operations.\n" +" Manufacturing operations are often called Work Orders. The " +"various\n" +" operations will have different impacts on the costs of\n" +" manufacturing and planning depending on the available workload.\n" +"

\n" +" " +msgstr "" + +#. module: mrp_operations +#: model:ir.actions.report.xml,name:mrp_operations.report_wc_barcode +msgid "Work Centers Barcode" +msgstr "Resursu svītrkods" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Late" +msgstr "Nokavējies" + +#. module: mrp_operations +#: field:mrp.workorder,delay:0 +msgid "Delay" +msgstr "Aizkavējies" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: view:mrp.workorder:0 +#: field:mrp.workorder,production_id:0 +#: field:mrp_operations.operation,production_id:0 +msgid "Production" +msgstr "Ražošana" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Search Work Orders" +msgstr "Meklēt izpildes orderi" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: view:mrp.workorder:0 +#: field:mrp.workorder,workcenter_id:0 +#: field:mrp_operations.operation,workcenter_id:0 +#: model:process.node,name:mrp_operations.process_node_workorder0 +msgid "Work Center" +msgstr "Resurss" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,date_planned:0 +msgid "Scheduled Date" +msgstr "Ieplānotais datums" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,product:0 +#: view:mrp.workorder:0 +#: field:mrp.workorder,product_id:0 +msgid "Product" +msgstr "Produkts" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,total_hours:0 +msgid "Total Hours" +msgstr "Stundas kopā" + +#. module: mrp_operations +#: help:mrp.production,allow_reorder:0 +msgid "" +"Check this to be able to move independently all production orders, without " +"moving dependent ones." +msgstr "" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "May" +msgstr "Maijs" + +#. module: mrp_operations +#: view:mrp.production:0 +#: view:mrp.production.workcenter.line:0 +#: selection:mrp.production.workcenter.line,state:0 +#: selection:mrp.workorder,state:0 +msgid "Finished" +msgstr "Pabeigts" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Hours by Work Center" +msgstr "Resursa stundas" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,delay:0 +msgid "Working Hours" +msgstr "Darba stundas" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Planned Month" +msgstr "Plānotais mēnesis" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "February" +msgstr "Februāris" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_startcanceloperation0 +msgid "Operation cancelled" +msgstr "Operācija atcelta" + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_startoperation0 +msgid "Start the operation." +msgstr "Uzsākt operāciju." + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "April" +msgstr "Aprīlis" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_startdoneoperation0 +msgid "Operation done" +msgstr "Operācija pabeigta" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "#Line Orders" +msgstr "" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Start Working" +msgstr "Uzsākt darbu" + +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_startdoneoperation0 +msgid "" +"When the operation is finished, the operator updates the system by finishing " +"the work order." +msgstr "" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_workstartoperation0 +msgid "Details of the work order" +msgstr "" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,year:0 +msgid "Year" +msgstr "Gads" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Duration" +msgstr "Ilgums" diff --git a/addons/mrp_operations/i18n/mk.po b/addons/mrp_operations/i18n/mk.po new file mode 100644 index 00000000000..d6184c5922a --- /dev/null +++ b/addons/mrp_operations/i18n/mk.po @@ -0,0 +1,839 @@ +# 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. +# Ivica Dimitrijev , 2013. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form +#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_order +#: view:mrp.production.workcenter.line:0 +#: view:mrp.workorder:0 +msgid "Work Orders" +msgstr "Работни налози" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:484 +#, python-format +msgid "Operation is already finished!" +msgstr "Операцијата е веќе завршена!" + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_canceloperation0 +msgid "Cancel the operation." +msgstr "Откажи ја операцијата." + +#. module: mrp_operations +#: model:ir.model,name:mrp_operations.model_mrp_operations_operation_code +msgid "mrp_operations.operation.code" +msgstr "mrp_operations.operation.code" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: view:mrp.workorder:0 +msgid "Group By..." +msgstr "Групирај по..." + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_workorder0 +msgid "Information from the routing definition." +msgstr "Информација од дефиницијата за рутирање." + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,uom:0 +msgid "Unit of Measure" +msgstr "Единица мерка" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "March" +msgstr "Март" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_resource_planning +msgid "Work Centers" +msgstr "Работни центри" + +#. module: mrp_operations +#: view:mrp.production:0 +#: view:mrp.production.workcenter.line:0 +#: selection:mrp_operations.operation.code,start_stop:0 +msgid "Resume" +msgstr "Продолжи" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Product to Produce" +msgstr "Производ за произведување" + +#. module: mrp_operations +#: view:mrp_operations.operation:0 +msgid "Production Operation" +msgstr "Операција на производство" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Set to Draft" +msgstr "Подеси на нацрт" + +#. module: mrp_operations +#: field:mrp.production,allow_reorder:0 +msgid "Free Serialisation" +msgstr "Слободна серијализација" + +#. module: mrp_operations +#: model:ir.model,name:mrp_operations.model_mrp_production +msgid "Manufacturing Order" +msgstr "Налог за обработка" + +#. module: mrp_operations +#: model:process.process,name:mrp_operations.process_process_mrpoperationprocess0 +msgid "Mrp Operations" +msgstr "Mrp операции" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,day:0 +msgid "Day" +msgstr "Ден" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Cancel Order" +msgstr "Откажи налог" + +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_productionorder0 +msgid "Production Order" +msgstr "Налог за производство" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +msgid "Picking Exception" +msgstr "Исклучок во требувањето" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_productionstart0 +msgid "Creation of the work order" +msgstr "Креирање на работен налог" + +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_productionstart0 +msgid "The work orders are created on the basis of the production order." +msgstr "Работните налози се креирани врз основа на налогот за произвоство." + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:134 +#: code:addons/mrp_operations/mrp_operations.py:465 +#: code:addons/mrp_operations/mrp_operations.py:469 +#: code:addons/mrp_operations/mrp_operations.py:481 +#: code:addons/mrp_operations/mrp_operations.py:484 +#, python-format +msgid "Error!" +msgstr "Грешка!" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,state:0 +#: selection:mrp.workorder,state:0 +#: selection:mrp_operations.operation.code,start_stop:0 +msgid "Cancelled" +msgstr "Откажано" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:477 +#, python-format +msgid "Operation is Already Cancelled!" +msgstr "Операцијата е веќе откажана!" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_operation_action +#: view:mrp.production.workcenter.line:0 +msgid "Operations" +msgstr "Операции" + +#. module: mrp_operations +#: model:ir.model,name:mrp_operations.model_stock_move +msgid "Stock Move" +msgstr "Движење на залиха" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:481 +#, python-format +msgid "No operation to cancel." +msgstr "Нема операција за откажување." + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:474 +#, python-format +msgid "" +"In order to Finish the operation, it must be in the Start or Resume state!" +msgstr "" +"Со цел да се заврши операцијата, таа мора да биде во состојба Започни или " +"Продолжи!" + +#. module: mrp_operations +#: field:mrp.workorder,nbr:0 +msgid "# of Lines" +msgstr "# од ставки" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: selection:mrp.production.workcenter.line,production_state:0 +#: selection:mrp.production.workcenter.line,state:0 +#: selection:mrp.workorder,state:0 +msgid "Draft" +msgstr "Нацрт" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Actual Production Date" +msgstr "Датум на моменталното производство" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Production Workcenter" +msgstr "Работен центар за производство" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,date_finished:0 +#: field:mrp.production.workcenter.line,date_planned_end:0 +#: field:mrp_operations.operation,date_finished:0 +msgid "End Date" +msgstr "Краен датум" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +msgid "In Production" +msgstr "Во производство" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.action_report_mrp_workorder +#: model:ir.model,name:mrp_operations.model_mrp_production_workcenter_line +msgid "Work Order" +msgstr "Работен налог" + +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_workstartoperation0 +msgid "" +"There is 1 work order per work center. The information about the number of " +"cycles or the cycle time." +msgstr "" +"Има 1 работен налог по работен центар. Информација за бројот на циклуси или " +"време на циклусот." + +#. module: mrp_operations +#: model:ir.ui.menu,name:mrp_operations.menu_report_mrp_workorders_tree +msgid "Work Order Analysis" +msgstr "Анализа на работни налози" + +#. module: mrp_operations +#: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_action_planning +msgid "Work Orders By Resource" +msgstr "Работни налози по ресурс" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Planned Date" +msgstr "Планиран датум" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,product_qty:0 +msgid "Product Qty" +msgstr "Количина" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:134 +#, python-format +msgid "Manufacturing order cannot start in state \"%s\"!" +msgstr "Налогот за обработка не може да започне во состојба \"%s\"!" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "July" +msgstr "Јули" + +#. module: mrp_operations +#: field:mrp_operations.operation.code,name:0 +msgid "Operation Name" +msgstr "Име на операцијата" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: field:mrp.production.workcenter.line,state:0 +#: view:mrp.workorder:0 +#: field:mrp.workorder,state:0 +#: field:mrp_operations.operation.code,start_stop:0 +msgid "Status" +msgstr "Статус" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Planned Year" +msgstr "Планирана година" + +#. module: mrp_operations +#: field:mrp_operations.operation,order_date:0 +msgid "Order Date" +msgstr "Датум на налог" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_draft_action +msgid "Future Work Orders" +msgstr "Идни работни налози" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Finish Order" +msgstr "Заврши налог" + +#. module: mrp_operations +#: model:ir.actions.act_window,help:mrp_operations.mrp_production_wc_action_form +msgid "" +"

\n" +" Click to start a new work order. \n" +"

\n" +" Work Orders is the list of operations to be performed for each\n" +" manufacturing order. Once you start the first work order of a\n" +" manufacturing order, the manufacturing order is automatically\n" +" marked as started. Once you finish the latest operation of a\n" +" manufacturing order, the MO is automatically done and the " +"related\n" +" products are produced.\n" +"

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

\n" +" Кликни за да започнеш нов работен налог. \n" +"

\n" +" Работниот налог е список на операции кои треба да бидат изведени " +"за\n" +" секој налог за обработка. Откако ќе го започнете првиот работен " +"налог\n" +" од налогот за обработка, налогот за обработка автоматски се " +"означува\n" +" како започнат. Откако ќе ја завршите последната операција од " +"налогот\n" +" за обработка, налогот за обработка автоматски е завршен и " +"поврзаните\n" +" производи се произведени.\n" +"

\n" +" " + +#. module: mrp_operations +#: help:mrp.production.workcenter.line,delay:0 +msgid "The elapsed time between operation start and stop in this Work Center" +msgstr "" +"Поминато време помеѓу операциите започни и сопри во овој Работен центар" + +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_canceloperation0 +msgid "Operation Cancelled" +msgstr "Операцијата е откажана" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Pause Work Order" +msgstr "Паузирај го работниот налог" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "September" +msgstr "Септември" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "December" +msgstr "Декември" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,month:0 +msgid "Month" +msgstr "Месец" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +msgid "Canceled" +msgstr "Откажано" + +#. module: mrp_operations +#: model:ir.model,name:mrp_operations.model_mrp_operations_operation +msgid "mrp_operations.operation" +msgstr "mrp_operations.operation" + +#. module: mrp_operations +#: model:ir.model,name:mrp_operations.model_mrp_workorder +msgid "Work Order Report" +msgstr "Извештај за работниот налог" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,date_start:0 +#: field:mrp_operations.operation,date_start:0 +msgid "Start Date" +msgstr "Почетен датум" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +msgid "Waiting Goods" +msgstr "Чекам стоки" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,production_state:0 +msgid "Production Status" +msgstr "Статус на производството" + +#. module: mrp_operations +#: selection:mrp.workorder,state:0 +#: selection:mrp_operations.operation.code,start_stop:0 +msgid "Pause" +msgstr "Пауза" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: selection:mrp.production.workcenter.line,state:0 +#: selection:mrp.workorder,state:0 +msgid "In Progress" +msgstr "Во тек" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:465 +#, python-format +msgid "" +"In order to Pause the operation, it must be in the Start or Resume state!" +msgstr "" +"Со цел да се паузира операцијата, таа мора да биде во состојба Започни или " +"Продолжи!" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:469 +#, python-format +msgid "In order to Resume the operation, it must be in the Pause state!" +msgstr "" +"Со цел да се продолжи операцијата, таа мора да биде во состојба Пауза!" + +#. module: mrp_operations +#: view:mrp.production:0 +#: view:mrp.production.workcenter.line:0 +#: selection:mrp_operations.operation.code,start_stop:0 +msgid "Start" +msgstr "Започни" + +#. module: mrp_operations +#: view:mrp_operations.operation:0 +msgid "Calendar View" +msgstr "Календар" + +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_startcanceloperation0 +msgid "" +"When the operation needs to be cancelled, you can do it in the work order " +"form." +msgstr "" +"Кога операцијата треба да биде откажана, можете да го направите тоа во " +"формуларот на работниот налог." + +#. module: mrp_operations +#: view:mrp.production:0 +#: view:mrp.production.workcenter.line:0 +msgid "Set Draft" +msgstr "Подеси Нацрт" + +#. module: mrp_operations +#: view:mrp.production:0 +#: view:mrp.production.workcenter.line:0 +#: selection:mrp.production.workcenter.line,state:0 +msgid "Pending" +msgstr "Чекање" + +#. module: mrp_operations +#: view:mrp_operations.operation.code:0 +msgid "Production Operation Code" +msgstr "Код на Операција Производство" + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:461 +#, python-format +msgid "" +"Operation has already started! You can either Pause/Finish/Cancel the " +"operation." +msgstr "" +"Операцијата е веќе започната. Можете да ја Паузирате/Завршите/Откажете " +"операцијата." + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "August" +msgstr "Август" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Started" +msgstr "Започнато" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Production started late" +msgstr "Производството започна доцна" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Planned Day" +msgstr "Планиран ден" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "June" +msgstr "Јуни" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,total_cycles:0 +msgid "Total Cycles" +msgstr "Вкупно циклуси" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +msgid "Ready to Produce" +msgstr "Спремно за производство" + +#. module: mrp_operations +#: field:stock.move,move_dest_id_lines:0 +msgid "Children Moves" +msgstr "" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_planning +msgid "Work Orders Planning" +msgstr "Планирање на работни налози" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: field:mrp.workorder,date:0 +msgid "Date" +msgstr "Датум" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "November" +msgstr "Ноември" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Search" +msgstr "Пребарај" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "October" +msgstr "Октомври" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "January" +msgstr "Јануари" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Resume Work Order" +msgstr "Продолжи со работниот налог" + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_doneoperation0 +msgid "Finish the operation." +msgstr "Заврши ја операцијата." + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:454 +#, python-format +msgid "Operation is not started yet !" +msgstr "Операцијата сеуште не е започната !" + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_productionorder0 +msgid "Information from the production order." +msgstr "Информации од налогот за производство." + +#. module: mrp_operations +#: code:addons/mrp_operations/mrp_operations.py:454 +#: code:addons/mrp_operations/mrp_operations.py:461 +#: code:addons/mrp_operations/mrp_operations.py:474 +#: code:addons/mrp_operations/mrp_operations.py:477 +#, python-format +msgid "Sorry!" +msgstr "Извинете!" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Current" +msgstr "Тековно" + +#. module: mrp_operations +#: field:mrp_operations.operation,code_id:0 +#: field:mrp_operations.operation.code,code:0 +msgid "Code" +msgstr "Код" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_confirm_action +msgid "Confirmed Work Orders" +msgstr "Потврдени работни налози" + +#. module: mrp_operations +#: model:ir.actions.act_window,name:mrp_operations.mrp_production_code_action +msgid "Operation Codes" +msgstr "Кодови на операцијата" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,qty:0 +msgid "Qty" +msgstr "Кол." + +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_doneoperation0 +msgid "Operation Done" +msgstr "Операцијата е завршена" + +#. module: mrp_operations +#: selection:mrp.production.workcenter.line,production_state:0 +#: view:mrp.workorder:0 +#: selection:mrp_operations.operation.code,start_stop:0 +msgid "Done" +msgstr "Завршено" + +#. module: mrp_operations +#: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode +msgid "Start/Stop Barcode" +msgstr "Започни/Запри Баркод" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Cancel" +msgstr "Откажи" + +#. module: mrp_operations +#: help:mrp.production.workcenter.line,state:0 +msgid "" +"* When a work order is created it is set in 'Draft' status.\n" +"* When user sets work order in start mode that time it will be set in 'In " +"Progress' status.\n" +"* When work order is in running mode, during that time if user wants to stop " +"or to make changes in order then can set in 'Pending' status.\n" +"* When the user cancels the work order it will be set in 'Canceled' status.\n" +"* When order is completely processed that time it is set in 'Finished' " +"status." +msgstr "" +"* Кога работниот налог е креиран тој е подесен на статус 'Нацрт'.\n" +"* Кога корисникот го подесува работниот налог во режим старт тогаш времето " +"ќе биде подесено во статус 'Во тек'.\n" +"* Кога работниот налог е во режим работи, доколку корисникот сака да го " +"запре или да направи промени во налогот, може да го подеси во статус 'Чекам' " +".\n" +"* Кога корисникот го откажува работниот налог тој ќе биде подесен во статус " +"'Откажано'.\n" +"* Кога налогот е комплетно обработен времето еподесено во статус 'Завршено'." + +#. module: mrp_operations +#: model:process.node,name:mrp_operations.process_node_startoperation0 +msgid "Start Operation" +msgstr "Започни операција" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Information" +msgstr "Информација" + +#. module: mrp_operations +#: model:ir.actions.act_window,help:mrp_operations.mrp_production_wc_action_planning +msgid "" +"

\n" +" Click to start a new work order.\n" +"

\n" +" To manufacture or assemble products, and use raw materials and\n" +" finished products you must also handle manufacturing " +"operations.\n" +" Manufacturing operations are often called Work Orders. The " +"various\n" +" operations will have different impacts on the costs of\n" +" manufacturing and planning depending on the available workload.\n" +"

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

\n" +" Кликни за да започенш нов работен налог.\n" +"

\n" +" За да обработите или склопите производи, и да употребите " +"суровини и\n" +" готови производи мора да управувате со операциите на обработка.\n" +" Операциите на обработување често се нарекуваат Работни налози.\n" +" Различните операции ќе имаат различно влијание на трошоците на \n" +" обработка и планирање во зависност од обемот на работата.\n" +"

\n" +" " + +#. module: mrp_operations +#: model:ir.actions.report.xml,name:mrp_operations.report_wc_barcode +msgid "Work Centers Barcode" +msgstr "Баркод на работни центри" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Late" +msgstr "Доцна" + +#. module: mrp_operations +#: field:mrp.workorder,delay:0 +msgid "Delay" +msgstr "Одолжување" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: view:mrp.workorder:0 +#: field:mrp.workorder,production_id:0 +#: field:mrp_operations.operation,production_id:0 +msgid "Production" +msgstr "Производство" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Search Work Orders" +msgstr "Пребарај ги работните налози" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +#: view:mrp.workorder:0 +#: field:mrp.workorder,workcenter_id:0 +#: field:mrp_operations.operation,workcenter_id:0 +#: model:process.node,name:mrp_operations.process_node_workorder0 +msgid "Work Center" +msgstr "Работен центар" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,date_planned:0 +msgid "Scheduled Date" +msgstr "Закажан датум" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,product:0 +#: view:mrp.workorder:0 +#: field:mrp.workorder,product_id:0 +msgid "Product" +msgstr "Производ" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,total_hours:0 +msgid "Total Hours" +msgstr "Вкупно часови" + +#. module: mrp_operations +#: help:mrp.production,allow_reorder:0 +msgid "" +"Check this to be able to move independently all production orders, without " +"moving dependent ones." +msgstr "" +"Означи го ова за да можете да ги движите независно сите налози за " +"производство, без да ги отстраните зависните." + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "May" +msgstr "Мај" + +#. module: mrp_operations +#: view:mrp.production:0 +#: view:mrp.production.workcenter.line:0 +#: selection:mrp.production.workcenter.line,state:0 +#: selection:mrp.workorder,state:0 +msgid "Finished" +msgstr "Завршено" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Hours by Work Center" +msgstr "Часови по работен центар" + +#. module: mrp_operations +#: field:mrp.production.workcenter.line,delay:0 +msgid "Working Hours" +msgstr "Работни часови" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "Planned Month" +msgstr "Планиран месец" + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "February" +msgstr "Февруари" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_startcanceloperation0 +msgid "Operation cancelled" +msgstr "Операцијата е откажана" + +#. module: mrp_operations +#: model:process.node,note:mrp_operations.process_node_startoperation0 +msgid "Start the operation." +msgstr "Започни ја операцијата." + +#. module: mrp_operations +#: selection:mrp.workorder,month:0 +msgid "April" +msgstr "Април" + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_startdoneoperation0 +msgid "Operation done" +msgstr "Операцијата е завршена" + +#. module: mrp_operations +#: view:mrp.workorder:0 +msgid "#Line Orders" +msgstr "#Ставка на налог" + +#. module: mrp_operations +#: view:mrp.production:0 +msgid "Start Working" +msgstr "Започни со работа" + +#. module: mrp_operations +#: model:process.transition,note:mrp_operations.process_transition_startdoneoperation0 +msgid "" +"When the operation is finished, the operator updates the system by finishing " +"the work order." +msgstr "" +"Кога операцијата е завршена, операторот го ажурира системот преку завршување " +"на работниот налог." + +#. module: mrp_operations +#: model:process.transition,name:mrp_operations.process_transition_workstartoperation0 +msgid "Details of the work order" +msgstr "Детали за работниот налог" + +#. module: mrp_operations +#: view:mrp.workorder:0 +#: field:mrp.workorder,year:0 +msgid "Year" +msgstr "Година" + +#. module: mrp_operations +#: view:mrp.production.workcenter.line:0 +msgid "Duration" +msgstr "Времетраење" diff --git a/addons/mrp_operations/i18n/mn.po b/addons/mrp_operations/i18n/mn.po index eac617fe1c0..b034e096810 100644 --- a/addons/mrp_operations/i18n/mn.po +++ b/addons/mrp_operations/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-04-06 05:39+0000\n" +"Last-Translator: gobi \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-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -50,7 +50,7 @@ msgstr "Бүлэглэх..." #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_workorder0 msgid "Information from the routing definition." -msgstr "Маршрутын тодорхойлолтоосх мэдээлэл" +msgstr "Шугамын тодорхойлолтоосх мэдээлэл" #. module: mrp_operations #: field:mrp.production.workcenter.line,uom:0 @@ -600,7 +600,6 @@ msgid "Start/Stop Barcode" msgstr "Эхлэх/Зогсоох Зураасан код" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Цуцлах" diff --git a/addons/mrp_operations/i18n/mrp_operations.pot b/addons/mrp_operations/i18n/mrp_operations.pot index 5e97cb2b1f0..05044f99000 100644 --- a/addons/mrp_operations/i18n/mrp_operations.pot +++ b/addons/mrp_operations/i18n/mrp_operations.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-06-07 19:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -580,7 +580,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/i18n/nl.po b/addons/mrp_operations/i18n/nl.po index 18932223b52..26cfda1d095 100644 --- a/addons/mrp_operations/i18n/nl.po +++ b/addons/mrp_operations/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-02-23 08:59+0000\n" +"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -200,7 +200,7 @@ msgstr "Concept" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Actual Production Date" -msgstr "" +msgstr "Werkelijke productiedatum" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -242,7 +242,7 @@ msgstr "Werkopracht analyse" #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_action_planning msgid "Work Orders By Resource" -msgstr "" +msgstr "Werkopdracht per resource" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -316,6 +316,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik voor het starten van een nieuwe werkopdrachten. \n" +"

\n" +" Een werkopdracht is de lijst van verwerkingen welke moeten\n" +" worden uitgevoerd voor elke productieorder. Wanneer de eerste\n" +" werkopdracht wordt gestart, dan wordt de productieorder\n" +" automatisch gemarkeerd als gestart. Wanneer je de laatste\n" +" verwerking van een productieorder afrond, dan wordt de " +"productieorder\n" +" automatisch gereed en zijn de gerelateerde producten " +"geproduceerd.\n" +"

\n" +" " #. module: mrp_operations #: help:mrp.production.workcenter.line,delay:0 @@ -605,7 +618,6 @@ msgid "Start/Stop Barcode" msgstr "Start/Stop Barcode" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Annuleren" @@ -622,6 +634,14 @@ msgid "" "* When order is completely processed that time it is set in 'Finished' " "status." msgstr "" +"* Wanneer een werkopdracht is aangemaakt, is deze in de 'Concept' fase.\n" +"* Wanneer de gebruiker de werkopdracht in start-modus zet, dan krijgt deze " +"de status 'In bewerking'.\n" +"* Wanneer werkopdracht lopende is, en de gebruiker wil een wijziging " +"aanbrengen dan kan de status worden gezet in \"Wachtend\".\n" +"* Wanneer de gebruiker de werkopdracht annuleert, dan wordt de status " +"\"Geannuleerd\".\n" +"* Wanneer de werkopdracht volledig is verwerkt dan wordt de status 'Gereed'." #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_startoperation0 @@ -649,6 +669,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik hier voor het starten van en nieuwe werkopdracht.\n" +"

\n" +" Om producten te produceren of te assembleren maakt u gebruik\n" +" van grondstoffen en geer product. U moet echter ook gebruik " +"maken\n" +" van productie activiteiten. Productie activiteiten worden " +"veelal\n" +" werkopdrachten genoemd. De verschillende activiteiten hebben\n" +" verschillende uitwerking op de kosten van productie en " +"planning.\n" +" Ze zijn afhankelijk van de hoeveelheid werk.\n" +"

\n" +" " #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_wc_barcode diff --git a/addons/mrp_operations/i18n/nl_BE.po b/addons/mrp_operations/i18n/nl_BE.po index c8b52ff66cd..f6a960d6df4 100644 --- a/addons/mrp_operations/i18n/nl_BE.po +++ b/addons/mrp_operations/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/i18n/pl.po b/addons/mrp_operations/i18n/pl.po index 562af4ff0ec..4bce2db323b 100644 --- a/addons/mrp_operations/i18n/pl.po +++ b/addons/mrp_operations/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -606,7 +606,6 @@ msgid "Start/Stop Barcode" msgstr "Kod kreskowy Start/Stop" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Anuluj" diff --git a/addons/mrp_operations/i18n/pt.po b/addons/mrp_operations/i18n/pt.po index 095b71c3fd0..368f91f502a 100644 --- a/addons/mrp_operations/i18n/pt.po +++ b/addons/mrp_operations/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-04 16:32+0000\n" "Last-Translator: Andrei Talpa (multibase.pt) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-05 05:23+0000\n" -"X-Generator: Launchpad (build 16468)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -598,7 +598,6 @@ msgid "Start/Stop Barcode" msgstr "Iniciar/Parar código de barras" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Cancelar" diff --git a/addons/mrp_operations/i18n/pt_BR.po b/addons/mrp_operations/i18n/pt_BR.po index fb345e5ae62..5ec964dd215 100644 --- a/addons/mrp_operations/i18n/pt_BR.po +++ b/addons/mrp_operations/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -615,7 +615,6 @@ msgid "Start/Stop Barcode" msgstr "Código de Barras Início/Parada" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Cancelado" diff --git a/addons/mrp_operations/i18n/ro.po b/addons/mrp_operations/i18n/ro.po index 329ca9a410d..5f4379e713d 100644 --- a/addons/mrp_operations/i18n/ro.po +++ b/addons/mrp_operations/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-08 18:33+0000\n" -"Last-Translator: Fekete Mihai \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-02-09 05:29+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -617,7 +617,6 @@ msgid "Start/Stop Barcode" msgstr "Cod de bare Start/Stop" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Anuleaza" diff --git a/addons/mrp_operations/i18n/ru.po b/addons/mrp_operations/i18n/ru.po index 5f118a4823d..1d0107ed38d 100644 --- a/addons/mrp_operations/i18n/ru.po +++ b/addons/mrp_operations/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Отмена" diff --git a/addons/mrp_operations/i18n/sl.po b/addons/mrp_operations/i18n/sl.po index a3a73d95bc1..4cc44cc251f 100644 --- a/addons/mrp_operations/i18n/sl.po +++ b/addons/mrp_operations/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-27 21:53+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Prekliči" diff --git a/addons/mrp_operations/i18n/sq.po b/addons/mrp_operations/i18n/sq.po index cdd24a5c00a..10a9d7374e3 100644 --- a/addons/mrp_operations/i18n/sq.po +++ b/addons/mrp_operations/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:31+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/i18n/sr.po b/addons/mrp_operations/i18n/sr.po index 90988cf5a34..5064eaef53c 100644 --- a/addons/mrp_operations/i18n/sr.po +++ b/addons/mrp_operations/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "pokreni/Zaustavi Bar-Kod" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Otkaži" diff --git a/addons/mrp_operations/i18n/sr@latin.po b/addons/mrp_operations/i18n/sr@latin.po index 63cb9a6754c..cf5c6f7a124 100644 --- a/addons/mrp_operations/i18n/sr@latin.po +++ b/addons/mrp_operations/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "pokreni/Zaustavi Bar-Kod" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Otkaži" diff --git a/addons/mrp_operations/i18n/sv.po b/addons/mrp_operations/i18n/sv.po index 1302bbe7cc1..6b85af78f55 100644 --- a/addons/mrp_operations/i18n/sv.po +++ b/addons/mrp_operations/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -593,7 +593,6 @@ msgid "Start/Stop Barcode" msgstr "Start/Stopp-streckkod" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "Avbryt" diff --git a/addons/mrp_operations/i18n/tlh.po b/addons/mrp_operations/i18n/tlh.po index 184ad0be69a..e68fa3ddc3f 100644 --- a/addons/mrp_operations/i18n/tlh.po +++ b/addons/mrp_operations/i18n/tlh.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Klingon \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/i18n/tr.po b/addons/mrp_operations/i18n/tr.po index ec6f806dce5..73fe9ee5069 100644 --- a/addons/mrp_operations/i18n/tr.po +++ b/addons/mrp_operations/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-16 21:27+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-04-14 16:55+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-17 05:23+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -29,7 +29,7 @@ msgstr "İş Emirleri" #: code:addons/mrp_operations/mrp_operations.py:484 #, python-format msgid "Operation is already finished!" -msgstr "İşlem neredeye bitti!" +msgstr "İşlem zaten bitmiş!" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_canceloperation0 @@ -45,12 +45,12 @@ msgstr "mrp_operations.operation.code" #: view:mrp.production.workcenter.line:0 #: view:mrp.workorder:0 msgid "Group By..." -msgstr "Şuna göre grupla" +msgstr "Gruplandır..." #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_workorder0 msgid "Information from the routing definition." -msgstr "Yönlendirme tanımlamasından gelen bilgiler." +msgstr "Rota tanımlamasından gelen bilgiler." #. module: mrp_operations #: field:mrp.production.workcenter.line,uom:0 @@ -72,7 +72,7 @@ msgstr "İş Merkezleri" #: view:mrp.production.workcenter.line:0 #: selection:mrp_operations.operation.code,start_stop:0 msgid "Resume" -msgstr "Devam et" +msgstr "Sürdür" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -82,7 +82,7 @@ msgstr "Üretilecek Ürün" #. module: mrp_operations #: view:mrp_operations.operation:0 msgid "Production Operation" -msgstr "Üretim Operasyonu" +msgstr "Üretim İşlemi" #. module: mrp_operations #: view:mrp.production:0 @@ -102,7 +102,7 @@ msgstr "Üretim Emri" #. module: mrp_operations #: model:process.process,name:mrp_operations.process_process_mrpoperationprocess0 msgid "Mrp Operations" -msgstr "Mrp Operasyonları" +msgstr "Ürt İşlemleri" #. module: mrp_operations #: view:mrp.workorder:0 @@ -113,7 +113,7 @@ msgstr "Gün" #. module: mrp_operations #: view:mrp.production:0 msgid "Cancel Order" -msgstr "Siparişi İptal Et" +msgstr "Sipariş İptali" #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_productionorder0 @@ -133,7 +133,7 @@ msgstr "İş emrinin oluşturulması" #. module: mrp_operations #: model:process.transition,note:mrp_operations.process_transition_productionstart0 msgid "The work orders are created on the basis of the production order." -msgstr "İş emirleri ürün siparişi bazında oluşturulur." +msgstr "İş emirleri ürün siparişine göre oluşturulur." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:134 @@ -156,13 +156,13 @@ msgstr "İptal edildi" #: code:addons/mrp_operations/mrp_operations.py:477 #, python-format msgid "Operation is Already Cancelled!" -msgstr "İşlem Zaten İptal Edilmiş!" +msgstr "İşlem Zaten İptal edilmiş!" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_operation_action #: view:mrp.production.workcenter.line:0 msgid "Operations" -msgstr "Operasyonlar" +msgstr "İşlemler" #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_stock_move @@ -180,12 +180,12 @@ msgstr "İptal edilecek işlem yok." #, python-format msgid "" "In order to Finish the operation, it must be in the Start or Resume state!" -msgstr "İşlemi bitirmek için Başlama ya da Devam durumunda olmalı !" +msgstr "İşlemi Bitirmek için Başlama ya da Sürdürme durumunda olmalı!" #. module: mrp_operations #: field:mrp.workorder,nbr:0 msgid "# of Lines" -msgstr "# / Satır" +msgstr "Satır Sayısı" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -251,7 +251,7 @@ msgstr "Planlama Tarihi" #: view:mrp.workorder:0 #: field:mrp.workorder,product_qty:0 msgid "Product Qty" -msgstr "Ürün Mik." +msgstr "Ürün Mik" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:134 @@ -267,7 +267,7 @@ msgstr "Temmuz" #. module: mrp_operations #: field:mrp_operations.operation.code,name:0 msgid "Operation Name" -msgstr "Operasyon Adı" +msgstr "İşlem Adı" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -296,7 +296,7 @@ msgstr "Gelecekteki İş Emirleri" #. module: mrp_operations #: view:mrp.production:0 msgid "Finish Order" -msgstr "Siparişi Bitir" +msgstr "Emri Bitir" #. module: mrp_operations #: model:ir.actions.act_window,help:mrp_operations.mrp_production_wc_action_form @@ -314,6 +314,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir iş emri başlatmak için tıklayın. \n" +"

\n" +" İş Emirleri, her üretim emri için yapılması gereken işlemler\n" +" listesidir. Bir üretim emrine ait ilk iş emrini " +"başlattığınızda,\n" +" üretim emri kendiliğinden başladı olarak işaretlenir.\n" +" Bir üretim emrine ait enson işlemi bitirdiğinizde, üretim\n" +" emri kendiliğinden yapıldı olarak işaretlenir ve ilgili\n" +" ürünler üretilmiş olur.\n" +"

\n" +" " #. module: mrp_operations #: help:mrp.production.workcenter.line,delay:0 @@ -323,7 +335,7 @@ msgstr "Bu İş Merkezindeki işlemin başlangıç ve bitiş arasındaki geçen #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_canceloperation0 msgid "Operation Cancelled" -msgstr "Operasyon İptal Edildi" +msgstr "İşlem İptal Edildi" #. module: mrp_operations #: view:mrp.production:0 @@ -365,7 +377,7 @@ msgstr "İş Emri Raporu" #: field:mrp.production.workcenter.line,date_start:0 #: field:mrp_operations.operation,date_start:0 msgid "Start Date" -msgstr "Baş. Tarihi" +msgstr "Başlama Tarihi" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 @@ -440,7 +452,7 @@ msgstr "Beklemede" #. module: mrp_operations #: view:mrp_operations.operation.code:0 msgid "Production Operation Code" -msgstr "Üretim Operasyon Kodu" +msgstr "Üretim İşlem Kodu" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:461 @@ -532,13 +544,13 @@ msgstr "İş Emrini Sürdür" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_doneoperation0 msgid "Finish the operation." -msgstr "Operasyonu tamamlayın." +msgstr "İşlemi tamamlayın." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:454 #, python-format msgid "Operation is not started yet !" -msgstr "Operasyon henüz başlatılmadı!" +msgstr "İşlem henüz başlatılmadı!" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_productionorder0 @@ -573,7 +585,7 @@ msgstr "Onaylanan İş Emirleri" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_code_action msgid "Operation Codes" -msgstr "Operasyon Kodları" +msgstr "İşlem Kodları" #. module: mrp_operations #: field:mrp.production.workcenter.line,qty:0 @@ -583,14 +595,14 @@ msgstr "Mik." #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_doneoperation0 msgid "Operation Done" -msgstr "Operasyon Yapıldı" +msgstr "İşlem Yapıldı" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 #: view:mrp.workorder:0 #: selection:mrp_operations.operation.code,start_stop:0 msgid "Done" -msgstr "Bitti" +msgstr "Yapıldı" #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode @@ -598,7 +610,6 @@ msgid "Start/Stop Barcode" msgstr "Başlatma/Durdurma Barkodu" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "İptal" @@ -615,11 +626,18 @@ msgid "" "* When order is completely processed that time it is set in 'Finished' " "status." msgstr "" +"* Bir iş emri oluşturulduğunda 'Taslak' durumuna ayarlanır.\n" +"* Bir kullanıcı bir iş emrini başaldı durumuna ayarlarsa, o zaman iş emri " +"'İşlemde' durumuna ayarlanacaktır.\n" +"* İş emri çalışıyor durumunda ise, bu süre içinde kullanıcı durdurmak ve " +"değişiklikler yapmak isterse 'Bekliyor' durumuna ayarlanır.\n" +"* Kullanıcı iş emrini iptal ederse 'İptal edildi' durumuna ayarlanacaktır.\n" +"* İş emri tamamen işlenip bitirildiğinde, 'Bitirldi' durumuna ayarlanır." #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_startoperation0 msgid "Start Operation" -msgstr "Operasyonu Başlat" +msgstr "İşlemi Başlat" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -642,6 +660,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir iş emri başlatmak için tıklayın.\n" +"

\n" +" Ürünleri üretmek ya da montaj etmek ve ham malzeme ile bitmiş\n" +" ürünleri kullanmak için üretim işlemleri de yürütmeniz " +"gerekmektedir.\n" +" Üretim işlemleri genellikle İş Emirleri olarak adlandırılır. " +"Çeşitli işlemlerin,\n" +" mevcut iş yüküne bağlı olarak üretim maliyetleri ve planlama " +"maliyetleri\n" +" üzerinde değişik etkileri olacaktır.\n" +"

\n" +" " #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_wc_barcode @@ -718,7 +749,7 @@ msgstr "Mayıs" #: selection:mrp.production.workcenter.line,state:0 #: selection:mrp.workorder,state:0 msgid "Finished" -msgstr "Tamamlandı" +msgstr "Bitirildi" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -728,7 +759,7 @@ msgstr "İş Merkezi Saatleri" #. module: mrp_operations #: field:mrp.production.workcenter.line,delay:0 msgid "Working Hours" -msgstr "Çalışma Saati" +msgstr "Çalışma Saatleri" #. module: mrp_operations #: view:mrp.workorder:0 @@ -743,12 +774,12 @@ msgstr "Şubat" #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_startcanceloperation0 msgid "Operation cancelled" -msgstr "Operasyon iptal edildi" +msgstr "İşlem iptal edildi" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_startoperation0 msgid "Start the operation." -msgstr "Operasyonu başlatın." +msgstr "İşlemi başlatın." #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -758,7 +789,7 @@ msgstr "Nisan" #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_startdoneoperation0 msgid "Operation done" -msgstr "Operasyon yapıldı" +msgstr "İşlem yapıldı" #. module: mrp_operations #: view:mrp.workorder:0 @@ -776,7 +807,7 @@ msgid "" "When the operation is finished, the operator updates the system by finishing " "the work order." msgstr "" -"Operasyon tamamlandığında, operatör iş emrini tamamlayarak sistemi günceller." +"İşlem tamamlandığında, operatör iş emrini tamamlayarak sistemi günceller." #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_workstartoperation0 diff --git a/addons/mrp_operations/i18n/uk.po b/addons/mrp_operations/i18n/uk.po index 780cd938a5d..1809d8d4530 100644 --- a/addons/mrp_operations/i18n/uk.po +++ b/addons/mrp_operations/i18n/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/i18n/vi.po b/addons/mrp_operations/i18n/vi.po index 41aef1d1ef9..5065fccd5e8 100644 --- a/addons/mrp_operations/i18n/vi.po +++ b/addons/mrp_operations/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/i18n/zh_CN.po b/addons/mrp_operations/i18n/zh_CN.po index 48c0c5edef9..bef9b5ca4c4 100644 --- a/addons/mrp_operations/i18n/zh_CN.po +++ b/addons/mrp_operations/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:55+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -601,7 +601,6 @@ msgid "Start/Stop Barcode" msgstr "用条码输入开工/完工" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "取消(&C)" diff --git a/addons/mrp_operations/i18n/zh_TW.po b/addons/mrp_operations/i18n/zh_TW.po index 7efb3e226ba..b49eae40964 100644 --- a/addons/mrp_operations/i18n/zh_TW.po +++ b/addons/mrp_operations/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-29 22:33+0000\n" "Last-Translator: Charles Hsu \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-01-30 05:20+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:32+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -592,7 +592,6 @@ msgid "Start/Stop Barcode" msgstr "" #. module: mrp_operations -#: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Cancel" msgstr "" diff --git a/addons/mrp_operations/mrp_operations.py b/addons/mrp_operations/mrp_operations.py index 1ce60946f6c..d31adf9a94f 100644 --- a/addons/mrp_operations/mrp_operations.py +++ b/addons/mrp_operations/mrp_operations.py @@ -131,7 +131,7 @@ class mrp_production_workcenter_line(osv.osv): elif prod_obj.state =='in_production': return else: - raise osv.except_osv(_('Error!'),_('Manufacturing order cannot start in state "%s"!') % (prod_obj.state,)) + raise osv.except_osv(_('Error!'),_('Manufacturing order cannot be started in state "%s"!') % (prod_obj.state,)) else: oper_ids = self.search(cr,uid,[('production_id','=',prod_obj.id)]) obj = self.browse(cr,uid,oper_ids) @@ -451,7 +451,7 @@ class mrp_operations_operation(osv.osv): if not oper_objs: if code.start_stop!='start': - raise osv.except_osv(_('Sorry!'),_('Operation is not started yet !')) + raise osv.except_osv(_('Sorry!'),_('Operation is not started yet!')) return False else: for oper in oper_objs: diff --git a/addons/mrp_operations/mrp_operations_view.xml b/addons/mrp_operations/mrp_operations_view.xml index dbe5ed83d0d..207c5d975d7 100644 --- a/addons/mrp_operations/mrp_operations_view.xml +++ b/addons/mrp_operations/mrp_operations_view.xml @@ -10,7 +10,7 @@
@@ -153,7 +153,7 @@ - + @@ -182,7 +182,7 @@ - + @@ -476,7 +476,6 @@ - @@ -523,6 +522,7 @@ @@ -748,5 +748,36 @@ + + + Tags + project.category + + + + + + + + Tags + project.category + +
+ + + +
+ + Tags + project.category + form + +

+ Click to add a new tag. +

+
+
+ + diff --git a/addons/project/report/project_cumulative.xml b/addons/project/report/project_cumulative.xml index c30c91fe6c0..17e059c8de7 100644 --- a/addons/project/report/project_cumulative.xml +++ b/addons/project/report/project_cumulative.xml @@ -6,7 +6,7 @@ project.task.history.cumulative.tree project.task.history.cumulative - + diff --git a/addons/project/report/project_report_view.xml b/addons/project/report/project_report_view.xml index 10f3f4a8c7c..d9650e165ce 100644 --- a/addons/project/report/project_report_view.xml +++ b/addons/project/report/project_report_view.xml @@ -69,7 +69,7 @@ - + diff --git a/addons/project/security/project_security.xml b/addons/project/security/project_security.xml index f1d8c7e760f..4bbaa9b788e 100644 --- a/addons/project/security/project_security.xml +++ b/addons/project/security/project_security.xml @@ -38,39 +38,62 @@ - Project multi-company + Project: multi-company - ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] + ['|', + ('company_id', '=', False), + ('company_id', 'child_of', [user.company_id.id]), + ] + + + + Project: project manager: see all + + [(1, '=', 1)] + - Public Members + Project: employees: public, employees or followers - - ['|',('privacy_visibility','in',[False,'public']),('message_follower_ids','in',[user.partner_id.id])] + ['|', + ('privacy_visibility', 'in', ['public', 'employees']), + ('message_follower_ids', 'in', [user.partner_id.id]) + ] + - Task multi-company + Project/Task: multi-company - ['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])] + ['|', + ('company_id', '=', False), + ('company_id', 'child_of', [user.company_id.id]), + ] - Tasks According to User and Project + Project/Task: employees: public or employee or following or assigned - - ['|','|','|',('user_id','=',False),('user_id','=',user.id),('project_id.members','in', [user.id]),('project_id.user_id','=',user.id)] - + ['|', + ('user_id', '=', user.id), + '|', + ('project_id.privacy_visibility', 'in', ['public', 'employees']), + '&', + ('project_id.privacy_visibility', '=', 'followers'), + ('message_follower_ids', 'in', [user.partner_id.id]), + ] + - Project Managers: all tasks from all projects + Project/Task: project manager: see all - [(1,'=',1)] + [(1, '=', 1)] + diff --git a/addons/project_gtd/i18n/ar.po b/addons/project_gtd/i18n/ar.po index b29c163989f..00d0db5dd83 100644 --- a/addons/project_gtd/i18n/ar.po +++ b/addons/project_gtd/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -248,6 +248,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "ويعطي امر التسلسل عند عرض قائمة للمحتويات." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/bg.po b/addons/project_gtd/i18n/bg.po index 4858c75cc12..7fa34238e0d 100644 --- a/addons/project_gtd/i18n/bg.po +++ b/addons/project_gtd/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/bs.po b/addons/project_gtd/i18n/bs.po index 2a8d5b8b12c..82b14f03971 100644 --- a/addons/project_gtd/i18n/bs.po +++ b/addons/project_gtd/i18n/bs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bosnian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/ca.po b/addons/project_gtd/i18n/ca.po index d9c17ddd72f..9391b09aa5f 100644 --- a/addons/project_gtd/i18n/ca.po +++ b/addons/project_gtd/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -250,6 +250,11 @@ msgid "Gives the sequence order when displaying a list of contexts." msgstr "" "Indiqueu l'ordre de seqüència quan es mostra una llista de contextos." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/cs.po b/addons/project_gtd/i18n/cs.po index 616b5d4d5fb..a3685fb255d 100644 --- a/addons/project_gtd/i18n/cs.po +++ b/addons/project_gtd/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/da.po b/addons/project_gtd/i18n/da.po index 5586f7636d3..88562861a2f 100644 --- a/addons/project_gtd/i18n/da.po +++ b/addons/project_gtd/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/de.po b/addons/project_gtd/i18n/de.po index 342332adde9..8720ce277cd 100644 --- a/addons/project_gtd/i18n/de.po +++ b/addons/project_gtd/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -249,6 +249,11 @@ msgid "Gives the sequence order when displaying a list of contexts." msgstr "" "Anzeige der Reihenfolge bei Ausgabe der Liste mit den definierten Kontexten" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/el.po b/addons/project_gtd/i18n/el.po index 4e2b03a1e89..34296864c50 100644 --- a/addons/project_gtd/i18n/el.po +++ b/addons/project_gtd/i18n/el.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Greek \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/es.po b/addons/project_gtd/i18n/es.po index 7c19d2a3c38..843208f3016 100644 --- a/addons/project_gtd/i18n/es.po +++ b/addons/project_gtd/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -253,6 +253,11 @@ msgid "Gives the sequence order when displaying a list of contexts." msgstr "" "Indica el orden de secuencia cuando se muestra una lista de contextos." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/es_AR.po b/addons/project_gtd/i18n/es_AR.po index a85e38437f2..0925d1651df 100644 --- a/addons/project_gtd/i18n/es_AR.po +++ b/addons/project_gtd/i18n/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Argentina) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/es_CR.po b/addons/project_gtd/i18n/es_CR.po index 333b2842afa..f4b4ac58e23 100644 --- a/addons/project_gtd/i18n/es_CR.po +++ b/addons/project_gtd/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -253,6 +253,11 @@ msgid "Gives the sequence order when displaying a list of contexts." msgstr "" "Indica el orden de secuencia cuando se muestra una lista de contextos." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/es_EC.po b/addons/project_gtd/i18n/es_EC.po index bb8ff47db79..9b0e4f2b2e7 100644 --- a/addons/project_gtd/i18n/es_EC.po +++ b/addons/project_gtd/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/et.po b/addons/project_gtd/i18n/et.po index a925b0a3825..342c39c9fde 100644 --- a/addons/project_gtd/i18n/et.po +++ b/addons/project_gtd/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/fi.po b/addons/project_gtd/i18n/fi.po index 672a8992455..1ac4c7dabb2 100644 --- a/addons/project_gtd/i18n/fi.po +++ b/addons/project_gtd/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Antaa järjestyksen listattaessa kontekstejä." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/fr.po b/addons/project_gtd/i18n/fr.po index 9adb0749ed5..8bdd058d34f 100644 --- a/addons/project_gtd/i18n/fr.po +++ b/addons/project_gtd/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-04 07:49+0000\n" "Last-Translator: Numérigraphe \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -249,6 +249,11 @@ msgstr "Afficher le champ contexte" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Donne l'ordre d'affichage de la liste des contextes." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/gl.po b/addons/project_gtd/i18n/gl.po index cc546ce1a1d..e1c37f6ffa2 100644 --- a/addons/project_gtd/i18n/gl.po +++ b/addons/project_gtd/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -249,6 +249,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Indica a orde de secuencia cando se amosa unha lista de contextos." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/hr.po b/addons/project_gtd/i18n/hr.po index a30038091e2..bfeb5a97410 100644 --- a/addons/project_gtd/i18n/hr.po +++ b/addons/project_gtd/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/hu.po b/addons/project_gtd/i18n/hu.po index a2187715a3a..bc5ea6bfb87 100644 --- a/addons/project_gtd/i18n/hu.po +++ b/addons/project_gtd/i18n/hu.po @@ -7,26 +7,26 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-29 13:43+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-30 05:20+0000\n" -"X-Generator: Launchpad (build 16455)\n" - -#. module: project_gtd -#: view:project.task:0 -msgid "Show only tasks having a deadline" -msgstr "Csako olyan feladatot mutasson ami határidős" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 msgid "In Progress" msgstr "Folyamatban" +#. module: project_gtd +#: view:project.task:0 +msgid "Show only tasks having a deadline" +msgstr "Csako lyan feladatot mutasson ami határidős" + #. module: project_gtd #: view:project.task:0 msgid "Reactivate" @@ -249,6 +249,11 @@ msgstr "Összefüggés megjelenítése" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Összefüggések megjelenítésekor egy sorozatba rendezi." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/id.po b/addons/project_gtd/i18n/id.po index a6d92256758..39acec7f3c9 100644 --- a/addons/project_gtd/i18n/id.po +++ b/addons/project_gtd/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/it.po b/addons/project_gtd/i18n/it.po index 37215d2099f..265f22145a9 100644 --- a/addons/project_gtd/i18n/it.po +++ b/addons/project_gtd/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-06 20:40+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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -246,6 +246,11 @@ msgid "Gives the sequence order when displaying a list of contexts." msgstr "" "Fornisce l'ordinamento quando viene visualizzata una lista di contesti" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/ja.po b/addons/project_gtd/i18n/ja.po index c8926486d64..bd088162c93 100644 --- a/addons/project_gtd/i18n/ja.po +++ b/addons/project_gtd/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -246,6 +246,11 @@ msgstr "コンテキスト項目を表示" msgid "Gives the sequence order when displaying a list of contexts." msgstr "コンテキストのリストを表示するときに並び順を与えます。" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/ko.po b/addons/project_gtd/i18n/ko.po index 981965e31ef..de6aad35333 100644 --- a/addons/project_gtd/i18n/ko.po +++ b/addons/project_gtd/i18n/ko.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/lt.po b/addons/project_gtd/i18n/lt.po index 3bcf783136f..39788932b89 100644 --- a/addons/project_gtd/i18n/lt.po +++ b/addons/project_gtd/i18n/lt.po @@ -7,35 +7,35 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-05-08 06:40+0000\n" +"Last-Translator: Andrius Preimantas @ hbee \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 msgid "In Progress" -msgstr "" +msgstr "Vykdoma" #. module: project_gtd #: view:project.task:0 msgid "Show only tasks having a deadline" -msgstr "" +msgstr "Rodyti tik užduotis su nustatytu terminu" #. module: project_gtd #: view:project.task:0 msgid "Reactivate" -msgstr "" +msgstr "Atnaujinti" #. module: project_gtd #: help:project.task,timebox_id:0 msgid "Time-laps during which task has to be treated" -msgstr "" +msgstr "Laiko intarpai per kuriuos užduotis turi būti įgyvendinta" #. module: project_gtd #: help:project.gtd.timebox,sequence:0 @@ -45,7 +45,7 @@ msgstr "" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_travel msgid "Travel" -msgstr "" +msgstr "Kelionė" #. module: project_gtd #: view:project.timebox.empty:0 @@ -55,7 +55,7 @@ msgstr "" #. module: project_gtd #: view:project.task:0 msgid "Pending Tasks" -msgstr "" +msgstr "Laukiančios užduotys" #. module: project_gtd #: code:addons/project_gtd/wizard/project_gtd_empty.py:52 @@ -74,17 +74,17 @@ msgstr "" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_daily msgid "Today" -msgstr "" +msgstr "Dabar" #. module: project_gtd #: view:project.task:0 msgid "Timeframe" -msgstr "" +msgstr "Laikotarpis" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_lt msgid "Long Term" -msgstr "" +msgstr "Ilgu laikotarpiu" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_timebox_empty @@ -94,52 +94,52 @@ msgstr "" #. module: project_gtd #: view:project.task:0 msgid "Pending" -msgstr "" +msgstr "Laukianti" #. module: project_gtd #: view:project.gtd.timebox:0 #: field:project.gtd.timebox,name:0 #: field:project.task,timebox_id:0 msgid "Timebox" -msgstr "" +msgstr "Laiko gairė" #. module: project_gtd #: field:project.timebox.fill.plan,timebox_to_id:0 msgid "Set to Timebox" -msgstr "" +msgstr "Nustatyti laiko gairę" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_task #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_timebox_tree #: view:project.task:0 msgid "My Tasks" -msgstr "" +msgstr "Mano užduotys" #. module: project_gtd #: help:project.task,context_id:0 msgid "The context place where user has to treat task" -msgstr "" +msgstr "Vieta kur užduotis turi būti atlikta" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.action_project_gtd_empty #: view:project.timebox.empty:0 msgid "Empty Timebox" -msgstr "" +msgstr "Tuščia laiko gairė" #. module: project_gtd #: view:project.task:0 msgid "Tasks having no timebox assigned yet" -msgstr "" +msgstr "Užduotys neturinčios priskirtos laiko gairės" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_weekly msgid "This Week" -msgstr "" +msgstr "Šia Savaitę" #. module: project_gtd #: field:project.gtd.timebox,icon:0 msgid "Icon" -msgstr "" +msgstr "Piktograma" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_timebox_fill_plan @@ -149,7 +149,7 @@ msgstr "" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_task msgid "Task" -msgstr "" +msgstr "Užduotis" #. module: project_gtd #: view:project.timebox.fill.plan:0 @@ -159,23 +159,23 @@ msgstr "" #. module: project_gtd #: field:project.timebox.empty,name:0 msgid "Name" -msgstr "" +msgstr "Pavadinimas" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_contexts msgid "Contexts" -msgstr "" +msgstr "Kontekstas" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_car msgid "Car" -msgstr "" +msgstr "Automobilis" #. module: project_gtd #: view:project.task:0 msgid "Show Context" -msgstr "" +msgstr "Rodyti kontekstą" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.action_project_gtd_fill @@ -192,19 +192,19 @@ msgstr "" #: code:addons/project_gtd/wizard/project_gtd_empty.py:52 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_tree #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_timeboxes #: view:project.gtd.timebox:0 msgid "Timeboxes" -msgstr "" +msgstr "Laiko gairės" #. module: project_gtd #: view:project.task:0 msgid "In Progress and draft tasks" -msgstr "" +msgstr "Vykdomos ir juodraštinės užduotys" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_gtd_context @@ -212,33 +212,33 @@ msgstr "" #: field:project.gtd.context,name:0 #: field:project.task,context_id:0 msgid "Context" -msgstr "" +msgstr "Kontekstas" #. module: project_gtd #: field:project.timebox.fill.plan,task_ids:0 msgid "Tasks selection" -msgstr "" +msgstr "Užduočių žymėjimas" #. module: project_gtd #: view:project.task:0 msgid "Display" -msgstr "" +msgstr "Vaizdavimas" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_office msgid "Office" -msgstr "" +msgstr "Biuras" #. module: project_gtd #: field:project.gtd.context,sequence:0 #: field:project.gtd.timebox,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Seka" #. module: project_gtd #: view:project.task:0 msgid "Show the context field" -msgstr "" +msgstr "Rodyti konteksto laukelį" #. module: project_gtd #: help:project.gtd.context,sequence:0 @@ -247,18 +247,23 @@ msgstr "" #. module: project_gtd #: view:project.task:0 -msgid "Show Deadlines" -msgstr "" - -#. module: project_gtd -#: view:project.gtd.timebox:0 -msgid "Timebox Definition" +msgid "Unread Messages" msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Show Deadlines" +msgstr "Rodyti terminus" + +#. module: project_gtd +#: view:project.gtd.timebox:0 +msgid "Timebox Definition" +msgstr "Laiko gairės apibrėžimas" + #. module: project_gtd #: view:project.task:0 msgid "Inbox" -msgstr "" +msgstr "Gauta" #. module: project_gtd #: field:project.timebox.fill.plan,timebox_id:0 @@ -268,12 +273,12 @@ msgstr "" #. module: project_gtd #: view:project.timebox.fill.plan:0 msgid "Cancel" -msgstr "" +msgstr "Atšaukti" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_home msgid "Home" -msgstr "" +msgstr "Pradžia" #. module: project_gtd #: model:ir.actions.act_window,help:project_gtd.open_gtd_context_tree @@ -286,9 +291,9 @@ msgstr "" #. module: project_gtd #: view:project.task:0 msgid "For reopening the tasks" -msgstr "" +msgstr "Užduočių atidarymui" #. module: project_gtd #: view:project.timebox.fill.plan:0 msgid "or" -msgstr "" +msgstr "arba" diff --git a/addons/project_gtd/i18n/lv.po b/addons/project_gtd/i18n/lv.po index f1d284f3219..ffaa5cb5be0 100644 --- a/addons/project_gtd/i18n/lv.po +++ b/addons/project_gtd/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Attēlo kontekstu sarakstu secībā pēc kārtas." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/mk.po b/addons/project_gtd/i18n/mk.po new file mode 100644 index 00000000000..d20cbc9b283 --- /dev/null +++ b/addons/project_gtd/i18n/mk.po @@ -0,0 +1,304 @@ +# 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. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" + +#. module: project_gtd +#: view:project.task:0 +msgid "In Progress" +msgstr "Во тек" + +#. module: project_gtd +#: view:project.task:0 +msgid "Show only tasks having a deadline" +msgstr "Прикажи ги само задачите кои имаат краен рок" + +#. module: project_gtd +#: view:project.task:0 +msgid "Reactivate" +msgstr "Реактивирај" + +#. module: project_gtd +#: help:project.task,timebox_id:0 +msgid "Time-laps during which task has to be treated" +msgstr "Временски кругови во текот на кои задачата треба да биде третирана" + +#. module: project_gtd +#: help:project.gtd.timebox,sequence:0 +msgid "Gives the sequence order when displaying a list of timebox." +msgstr "Го дава редоследот на секвенците кога прикажува листа на timebox." + +#. module: project_gtd +#: model:project.gtd.context,name:project_gtd.context_travel +msgid "Travel" +msgstr "Патување" + +#. module: project_gtd +#: view:project.timebox.empty:0 +msgid "Timebox Empty Process Completed Successfully." +msgstr "" + +#. module: project_gtd +#: view:project.task:0 +msgid "Pending Tasks" +msgstr "Задачи на чекање" + +#. module: project_gtd +#: code:addons/project_gtd/wizard/project_gtd_empty.py:52 +#, python-format +msgid "No timebox child of this one !" +msgstr "" + +#. module: project_gtd +#: model:ir.actions.act_window,help:project_gtd.open_gtd_timebox_tree +msgid "" +"Timeboxes are defined in the \"Getting Things Done\" methodology. A timebox " +"defines a period of time in order to categorize your tasks: today, this " +"week, this month, long term." +msgstr "" + +#. module: project_gtd +#: model:project.gtd.timebox,name:project_gtd.timebox_daily +msgid "Today" +msgstr "Денес" + +#. module: project_gtd +#: view:project.task:0 +msgid "Timeframe" +msgstr "Временска рамка" + +#. module: project_gtd +#: model:project.gtd.timebox,name:project_gtd.timebox_lt +msgid "Long Term" +msgstr "Долгорочно" + +#. module: project_gtd +#: model:ir.model,name:project_gtd.model_project_timebox_empty +msgid "Project Timebox Empty" +msgstr "" + +#. module: project_gtd +#: view:project.task:0 +msgid "Pending" +msgstr "Чекам" + +#. module: project_gtd +#: view:project.gtd.timebox:0 +#: field:project.gtd.timebox,name:0 +#: field:project.task,timebox_id:0 +msgid "Timebox" +msgstr "" + +#. module: project_gtd +#: field:project.timebox.fill.plan,timebox_to_id:0 +msgid "Set to Timebox" +msgstr "" + +#. module: project_gtd +#: model:ir.actions.act_window,name:project_gtd.open_gtd_task +#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_timebox_tree +#: view:project.task:0 +msgid "My Tasks" +msgstr "Мои задачи" + +#. module: project_gtd +#: help:project.task,context_id:0 +msgid "The context place where user has to treat task" +msgstr "" + +#. module: project_gtd +#: model:ir.actions.act_window,name:project_gtd.action_project_gtd_empty +#: view:project.timebox.empty:0 +msgid "Empty Timebox" +msgstr "" + +#. module: project_gtd +#: view:project.task:0 +msgid "Tasks having no timebox assigned yet" +msgstr "" + +#. module: project_gtd +#: model:project.gtd.timebox,name:project_gtd.timebox_weekly +msgid "This Week" +msgstr "Оваа недела" + +#. module: project_gtd +#: field:project.gtd.timebox,icon:0 +msgid "Icon" +msgstr "Икона" + +#. module: project_gtd +#: model:ir.model,name:project_gtd.model_project_timebox_fill_plan +msgid "Project Timebox Fill" +msgstr "" + +#. module: project_gtd +#: model:ir.model,name:project_gtd.model_project_task +msgid "Task" +msgstr "Задача" + +#. module: project_gtd +#: view:project.timebox.fill.plan:0 +msgid "Add to Timebox" +msgstr "" + +#. module: project_gtd +#: field:project.timebox.empty,name:0 +msgid "Name" +msgstr "Име" + +#. module: project_gtd +#: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree +#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_contexts +msgid "Contexts" +msgstr "Контекст" + +#. module: project_gtd +#: model:project.gtd.context,name:project_gtd.context_car +msgid "Car" +msgstr "Автомобил" + +#. module: project_gtd +#: view:project.task:0 +msgid "Show Context" +msgstr "Прикажи контекст" + +#. module: project_gtd +#: model:ir.actions.act_window,name:project_gtd.action_project_gtd_fill +#: view:project.timebox.fill.plan:0 +msgid "Plannify Timebox" +msgstr "" + +#. module: project_gtd +#: model:ir.model,name:project_gtd.model_project_gtd_timebox +msgid "project.gtd.timebox" +msgstr "project.gtd.timebox" + +#. module: project_gtd +#: code:addons/project_gtd/wizard/project_gtd_empty.py:52 +#, python-format +msgid "Error!" +msgstr "Грешка!" + +#. module: project_gtd +#: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_tree +#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_timeboxes +#: view:project.gtd.timebox:0 +msgid "Timeboxes" +msgstr "" + +#. module: project_gtd +#: view:project.task:0 +msgid "In Progress and draft tasks" +msgstr "Задачи во тек и нацрт" + +#. module: project_gtd +#: model:ir.model,name:project_gtd.model_project_gtd_context +#: view:project.gtd.context:0 +#: field:project.gtd.context,name:0 +#: field:project.task,context_id:0 +msgid "Context" +msgstr "Контекст" + +#. module: project_gtd +#: field:project.timebox.fill.plan,task_ids:0 +msgid "Tasks selection" +msgstr "Избор на задачи" + +#. module: project_gtd +#: view:project.task:0 +msgid "Display" +msgstr "Прикажи" + +#. module: project_gtd +#: model:project.gtd.context,name:project_gtd.context_office +msgid "Office" +msgstr "Канцеларија" + +#. module: project_gtd +#: field:project.gtd.context,sequence:0 +#: field:project.gtd.timebox,sequence:0 +msgid "Sequence" +msgstr "Секвенца" + +#. module: project_gtd +#: view:project.task:0 +msgid "Show the context field" +msgstr "Прикажи поле на контекст" + +#. module: project_gtd +#: help:project.gtd.context,sequence:0 +msgid "Gives the sequence order when displaying a list of contexts." +msgstr "Го дава редоследот на секвенците кога прикажува листа на контексти." + +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + +#. module: project_gtd +#: view:project.task:0 +msgid "Show Deadlines" +msgstr "Прикажи крајни рокови" + +#. module: project_gtd +#: view:project.gtd.timebox:0 +msgid "Timebox Definition" +msgstr "" + +#. module: project_gtd +#: view:project.task:0 +msgid "Inbox" +msgstr "Влезно Сандаче" + +#. module: project_gtd +#: field:project.timebox.fill.plan,timebox_id:0 +msgid "Get from Timebox" +msgstr "" + +#. module: project_gtd +#: view:project.timebox.fill.plan:0 +msgid "Cancel" +msgstr "Откажи" + +#. module: project_gtd +#: model:project.gtd.context,name:project_gtd.context_home +msgid "Home" +msgstr "Дома" + +#. module: project_gtd +#: model:ir.actions.act_window,help:project_gtd.open_gtd_context_tree +msgid "" +"Contexts are defined in the \"Getting Things Done\" methodology. It allows " +"you to categorize your tasks according to the context in which they have to " +"be done: at the office, at home, when I take my car, etc." +msgstr "" +"Контекстите се дефинирани во методологијата \"Завршување на работите\". Тоа " +"ви овозможува да ги категоризирате вашите задачи според контекстот во кој " +"тие треба да бидат направени: во канцеларија, дома, кога ја земам колата " +"и.т.н." + +#. module: project_gtd +#: view:project.task:0 +msgid "For reopening the tasks" +msgstr "За повторно отварање на задачи" + +#. module: project_gtd +#: view:project.timebox.fill.plan:0 +msgid "or" +msgstr "или" diff --git a/addons/project_gtd/i18n/mn.po b/addons/project_gtd/i18n/mn.po index 7468f7df2ce..f22a978bacc 100644 --- a/addons/project_gtd/i18n/mn.po +++ b/addons/project_gtd/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-15 01:49+0000\n" "Last-Translator: gobi \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-02-16 05:40+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -248,6 +248,11 @@ msgstr "Агуулгын талбарыг харуулах" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Агуулгын жагсаалтыг харуулах дарааллыг эрэмбийг өгнө." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/nl.po b/addons/project_gtd/i18n/nl.po index b9342b7f996..b9d299684c1 100644 --- a/addons/project_gtd/i18n/nl.po +++ b/addons/project_gtd/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-06-08 10:03+0000\n" +"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-09 06:16+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -82,7 +82,7 @@ msgstr "Vandaag" #. module: project_gtd #: view:project.task:0 msgid "Timeframe" -msgstr "" +msgstr "Periode" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_lt @@ -195,7 +195,7 @@ msgstr "project.gtd.timebox" #: code:addons/project_gtd/wizard/project_gtd_empty.py:52 #, python-format msgid "Error!" -msgstr "" +msgstr "Fout!" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_tree @@ -225,7 +225,7 @@ msgstr "Taakkeuze" #. module: project_gtd #: view:project.task:0 msgid "Display" -msgstr "" +msgstr "Tonen" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_office @@ -248,6 +248,11 @@ msgstr "Geef het context veld weer" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Bepaalt de volgorde waarin de lijst van contexten wordt afgebeeld." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "Ongelezen berichten" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" @@ -297,4 +302,4 @@ msgstr "Voor het heropenen van taken" #. module: project_gtd #: view:project.timebox.fill.plan:0 msgid "or" -msgstr "" +msgstr "of" diff --git a/addons/project_gtd/i18n/nl_BE.po b/addons/project_gtd/i18n/nl_BE.po index 3f199f27b0a..eb0418682d3 100644 --- a/addons/project_gtd/i18n/nl_BE.po +++ b/addons/project_gtd/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/pl.po b/addons/project_gtd/i18n/pl.po index 78d577d2a9d..b93c521961e 100644 --- a/addons/project_gtd/i18n/pl.po +++ b/addons/project_gtd/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-14 14:46+0000\n" "Last-Translator: Jarosław Ogrodnik \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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -249,6 +249,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Określa kolejność wyświetlania kontekstów w listach." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/project_gtd.pot b/addons/project_gtd/i18n/project_gtd.pot index 340d721bcc7..6ee4452bbbb 100644 --- a/addons/project_gtd/i18n/project_gtd.pot +++ b/addons/project_gtd/i18n/project_gtd.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" +"PO-Revision-Date: 2013-06-07 19:37+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -240,6 +240,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/pt.po b/addons/project_gtd/i18n/pt.po index 9919729484b..e4b4ca6a037 100644 --- a/addons/project_gtd/i18n/pt.po +++ b/addons/project_gtd/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-18 11:03+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-01-19 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -248,6 +248,11 @@ msgstr "Mostrar o campo de contexto" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Dá a ordem da sequência ao exibir uma lista de contextos." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/pt_BR.po b/addons/project_gtd/i18n/pt_BR.po index a9e7be927cc..7427d22f202 100644 --- a/addons/project_gtd/i18n/pt_BR.po +++ b/addons/project_gtd/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -248,6 +248,11 @@ msgstr "Mostrar o campo de contexto" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Fornece a ordem da sequência ao exibir uma lista de contextos." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/ro.po b/addons/project_gtd/i18n/ro.po index 0bdc9d87f0e..473052d1007 100644 --- a/addons/project_gtd/i18n/ro.po +++ b/addons/project_gtd/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-02-10 12:13+0000\n" -"Last-Translator: Fekete Mihai \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-02-11 05:35+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -248,6 +248,11 @@ msgstr "Afiseaza campul context" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Prezinta ordinea secventei atunci cand afiseaza o lista cu contexte." +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/ru.po b/addons/project_gtd/i18n/ru.po index eaff9507b20..8ce39ccb04a 100644 --- a/addons/project_gtd/i18n/ru.po +++ b/addons/project_gtd/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-26 09:10+0000\n" "Last-Translator: Denis Karataev \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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/sl.po b/addons/project_gtd/i18n/sl.po index 2620919c64e..d2d8e804b76 100644 --- a/addons/project_gtd/i18n/sl.po +++ b/addons/project_gtd/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/sq.po b/addons/project_gtd/i18n/sq.po index 58918ec80b1..17ed76054cd 100644 --- a/addons/project_gtd/i18n/sq.po +++ b/addons/project_gtd/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/sv.po b/addons/project_gtd/i18n/sv.po index 903813715e5..fd82f5e3d5a 100644 --- a/addons/project_gtd/i18n/sv.po +++ b/addons/project_gtd/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -248,6 +248,11 @@ msgstr "Visa kontextfältet" msgid "Gives the sequence order when displaying a list of contexts." msgstr "Anger ordningsföljen vid listning av kontext" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/tlh.po b/addons/project_gtd/i18n/tlh.po index 35beff5a5ba..4a6af1e4509 100644 --- a/addons/project_gtd/i18n/tlh.po +++ b/addons/project_gtd/i18n/tlh.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Klingon \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/tr.po b/addons/project_gtd/i18n/tr.po index 99f7c5f6f55..4d60d751160 100644 --- a/addons/project_gtd/i18n/tr.po +++ b/addons/project_gtd/i18n/tr.po @@ -7,30 +7,30 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 msgid "In Progress" -msgstr "" +msgstr "DevamEden" #. module: project_gtd #: view:project.task:0 msgid "Show only tasks having a deadline" -msgstr "" +msgstr "Sadece zamanSınırı olan görevleri göster" #. module: project_gtd #: view:project.task:0 msgid "Reactivate" -msgstr "" +msgstr "Yeniden Etkinleştir" #. module: project_gtd #: help:project.task,timebox_id:0 @@ -45,7 +45,7 @@ msgstr "" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_travel msgid "Travel" -msgstr "" +msgstr "Seyahat" #. module: project_gtd #: view:project.timebox.empty:0 @@ -55,7 +55,7 @@ msgstr "" #. module: project_gtd #: view:project.task:0 msgid "Pending Tasks" -msgstr "" +msgstr "Bekleyen Görevler" #. module: project_gtd #: code:addons/project_gtd/wizard/project_gtd_empty.py:52 @@ -74,17 +74,17 @@ msgstr "" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_daily msgid "Today" -msgstr "" +msgstr "Bugün" #. module: project_gtd #: view:project.task:0 msgid "Timeframe" -msgstr "" +msgstr "Zaman Aralığı" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_lt msgid "Long Term" -msgstr "" +msgstr "Uzun Dönem" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_timebox_empty @@ -94,7 +94,7 @@ msgstr "" #. module: project_gtd #: view:project.task:0 msgid "Pending" -msgstr "" +msgstr "Bekleyen" #. module: project_gtd #: view:project.gtd.timebox:0 @@ -113,7 +113,7 @@ msgstr "" #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_timebox_tree #: view:project.task:0 msgid "My Tasks" -msgstr "" +msgstr "Görevlerim" #. module: project_gtd #: help:project.task,context_id:0 @@ -134,12 +134,12 @@ msgstr "" #. module: project_gtd #: model:project.gtd.timebox,name:project_gtd.timebox_weekly msgid "This Week" -msgstr "" +msgstr "Bu Hafta" #. module: project_gtd #: field:project.gtd.timebox,icon:0 msgid "Icon" -msgstr "" +msgstr "İkon" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_timebox_fill_plan @@ -149,7 +149,7 @@ msgstr "" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_task msgid "Task" -msgstr "" +msgstr "Görev" #. module: project_gtd #: view:project.timebox.fill.plan:0 @@ -159,23 +159,23 @@ msgstr "" #. module: project_gtd #: field:project.timebox.empty,name:0 msgid "Name" -msgstr "" +msgstr "Adı" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_contexts msgid "Contexts" -msgstr "" +msgstr "Bağlamları" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_car msgid "Car" -msgstr "" +msgstr "Araba" #. module: project_gtd #: view:project.task:0 msgid "Show Context" -msgstr "" +msgstr "Göster Bağlamı" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.action_project_gtd_fill @@ -192,19 +192,19 @@ msgstr "" #: code:addons/project_gtd/wizard/project_gtd_empty.py:52 #, python-format msgid "Error!" -msgstr "" +msgstr "Hata!" #. module: project_gtd #: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_tree #: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_timeboxes #: view:project.gtd.timebox:0 msgid "Timeboxes" -msgstr "Çalışma Zaman Aralığı" +msgstr "Timeboxes" #. module: project_gtd #: view:project.task:0 msgid "In Progress and draft tasks" -msgstr "" +msgstr "DevamEden ve taslak görevleri" #. module: project_gtd #: model:ir.model,name:project_gtd.model_project_gtd_context @@ -212,17 +212,17 @@ msgstr "" #: field:project.gtd.context,name:0 #: field:project.task,context_id:0 msgid "Context" -msgstr "" +msgstr "Bağlam" #. module: project_gtd #: field:project.timebox.fill.plan,task_ids:0 msgid "Tasks selection" -msgstr "" +msgstr "Görev seçimi" #. module: project_gtd #: view:project.task:0 msgid "Display" -msgstr "" +msgstr "Ekran" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_office @@ -233,22 +233,27 @@ msgstr "" #: field:project.gtd.context,sequence:0 #: field:project.gtd.timebox,sequence:0 msgid "Sequence" -msgstr "Sıra No" +msgstr "Sıralama" #. module: project_gtd #: view:project.task:0 msgid "Show the context field" -msgstr "" +msgstr "Bağlam alanında göster" #. module: project_gtd #: help:project.gtd.context,sequence:0 msgid "Gives the sequence order when displaying a list of contexts." +msgstr "Bağlamlarda bir listesini görüntüleme sırasını verir." + +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" msgstr "" #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" -msgstr "" +msgstr "Göster ZamanSınırı" #. module: project_gtd #: view:project.gtd.timebox:0 @@ -268,7 +273,7 @@ msgstr "" #. module: project_gtd #: view:project.timebox.fill.plan:0 msgid "Cancel" -msgstr "İptal" +msgstr "iptal" #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_home @@ -286,9 +291,9 @@ msgstr "" #. module: project_gtd #: view:project.task:0 msgid "For reopening the tasks" -msgstr "" +msgstr "veya görevleri yeniden açılması" #. module: project_gtd #: view:project.timebox.fill.plan:0 msgid "or" -msgstr "" +msgstr "veya" diff --git a/addons/project_gtd/i18n/uk.po b/addons/project_gtd/i18n/uk.po index 584fa0e2efc..69ef4829a68 100644 --- a/addons/project_gtd/i18n/uk.po +++ b/addons/project_gtd/i18n/uk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/vi.po b/addons/project_gtd/i18n/vi.po index f71166b2939..3d875187825 100644 --- a/addons/project_gtd/i18n/vi.po +++ b/addons/project_gtd/i18n/vi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/zh_CN.po b/addons/project_gtd/i18n/zh_CN.po index 24a8adae86b..5190fd00a6b 100644 --- a/addons/project_gtd/i18n/zh_CN.po +++ b/addons/project_gtd/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "显示情境字段" msgid "Gives the sequence order when displaying a list of contexts." msgstr "输入序号用于情境列表的排序" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/i18n/zh_TW.po b/addons/project_gtd/i18n/zh_TW.po index 57fe2e77bfd..544e3030646 100644 --- a/addons/project_gtd/i18n/zh_TW.po +++ b/addons/project_gtd/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:06+0000\n" +"POT-Creation-Date: 2013-06-07 19:37+0000\n" "PO-Revision-Date: 2013-01-30 13:52+0000\n" "Last-Translator: Bluce \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-01-31 05:17+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_gtd #: view:project.task:0 @@ -245,6 +245,11 @@ msgstr "" msgid "Gives the sequence order when displaying a list of contexts." msgstr "" +#. module: project_gtd +#: view:project.task:0 +msgid "Unread Messages" +msgstr "" + #. module: project_gtd #: view:project.task:0 msgid "Show Deadlines" diff --git a/addons/project_gtd/project_gtd_view.xml b/addons/project_gtd/project_gtd_view.xml index 1467ce55fab..4bfd5b783c7 100644 --- a/addons/project_gtd/project_gtd_view.xml +++ b/addons/project_gtd/project_gtd_view.xml @@ -106,6 +106,8 @@ + + diff --git a/addons/project_gtd/wizard/project_gtd_empty.py b/addons/project_gtd/wizard/project_gtd_empty.py index 26e438b789e..e2c0b7b69e2 100644 --- a/addons/project_gtd/wizard/project_gtd_empty.py +++ b/addons/project_gtd/wizard/project_gtd_empty.py @@ -49,7 +49,7 @@ class project_timebox_empty(osv.osv_memory): ids = obj_tb.search(cr, uid, [], context=context) if not len(ids): - raise osv.except_osv(_('Error!'), _('No timebox child of this one !')) + raise osv.except_osv(_('Error!'), _('No timebox child of this one!')) tids = obj_task.search(cr, uid, [('timebox_id', '=', context['active_id'])]) for task in obj_task.browse(cr, uid, tids, context): if (task.state in ('cancel','done')) or (task.user_id.id <> uid): diff --git a/addons/project_issue/i18n/ar.po b/addons/project_issue/i18n/ar.po index 2afba2d2ada..7de8640991c 100644 --- a/addons/project_issue/i18n/ar.po +++ b/addons/project_issue/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "الأيام للفتح" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -251,16 +251,10 @@ msgid "Extra Info" msgstr "معلومات إضافية" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" -"يسمح لك التقرير على مسائل المشروع لتحليل نوعية الدعم أو الخدمات ما بعد " -"البيع. يمكنك تتبع القضايا لكل سن. يمكنك تحليل الوقت المطلوب لفتح او غلق " -"القضية,عدد البريد الإلكتروني للتبادل والوقت المقضي بالمتوسط من القضايا." #. module: project_issue #: view:project.issue:0 @@ -272,6 +266,12 @@ msgstr "" msgid "Responsible" msgstr "مسؤول" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -283,7 +283,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -317,9 +317,9 @@ msgid "New" msgstr "جديد" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "فئات الحالة" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -339,7 +339,7 @@ msgid "Lowest" msgstr "أدنى" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -390,9 +390,16 @@ msgid "July" msgstr "يوليو" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "الفئات" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"يسمح لك التقرير على مسائل المشروع لتحليل نوعية الدعم أو الخدمات ما بعد " +"البيع. يمكنك تتبع القضايا لكل سن. يمكنك تحليل الوقت المطلوب لفتح او غلق " +"القضية,عدد البريد الإلكتروني للتبادل والوقت المقضي بالمتوسط من القضايا." #. module: project_issue #: view:project.issue:0 @@ -410,7 +417,7 @@ msgid "Issues Analysis" msgstr "تحليل الحالات" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -434,7 +441,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "مهام" @@ -474,11 +481,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "إظهر الطلبات" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -531,11 +533,6 @@ msgstr "" "والصادرة لهذا التسجيل قبل ان يرسل. افصل بين عناوين البريد الالكتروني " "المتعددة بفاصلة" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "الصيانة" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -589,11 +586,6 @@ msgstr "أغسطس" msgid "Normal" msgstr "عادي" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -646,9 +638,9 @@ msgid "November" msgstr "نوفمبر" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -657,9 +649,9 @@ msgid "Search" msgstr "بحث" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "أكتوبر" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "إنشاء شهر" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -723,11 +715,6 @@ msgstr "نسخة الحالة" msgid "Version Number" msgstr "رقم الإصدار" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "إلغاء" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -764,20 +751,35 @@ msgstr "حالة المشروع" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "إنشاء شهر" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "حسابها كالتالي: الوقت المستغرق / الوقت الإجمالي." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "أكتوبر" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -847,9 +849,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -915,11 +917,6 @@ msgstr "أبريل" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "مراجع" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -992,3 +989,21 @@ msgstr "المُدة" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "الصيانة" + +#~ msgid "Categories" +#~ msgstr "الفئات" + +#~ msgid "Cancel" +#~ msgstr "إلغاء" + +#~ msgid "References" +#~ msgstr "مراجع" + +#~ msgid "Feature Requests" +#~ msgstr "إظهر الطلبات" + +#~ msgid "Issue Categories" +#~ msgstr "فئات الحالة" diff --git a/addons/project_issue/i18n/ca.po b/addons/project_issue/i18n/ca.po index 1fff69bbedb..f4eac0934d3 100644 --- a/addons/project_issue/i18n/ca.po +++ b/addons/project_issue/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Dies per obrir" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -253,18 +253,10 @@ msgid "Extra Info" msgstr "Informació extra" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" -"Aquest informe sobre les incidències del projecte permet analitzar la " -"qualitat del seu suport o els serveis postvenda. Podeu fer un seguiment de " -"les incidències per antiguitat. Podeu analitzar el temps requerit a obrir o " -"tancar una incidència, el nombre de correus intercanviats i el temps gastat " -"en mitjana per incidència." #. module: project_issue #: view:project.issue:0 @@ -276,6 +268,12 @@ msgstr "" msgid "Responsible" msgstr "Responsable" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -287,7 +285,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -321,9 +319,9 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Categories d'incidències" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -343,7 +341,7 @@ msgid "Lowest" msgstr "Mínima" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -394,9 +392,18 @@ msgid "July" msgstr "Juliol" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Categories" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Aquest informe sobre les incidències del projecte permet analitzar la " +"qualitat del seu suport o els serveis postvenda. Podeu fer un seguiment de " +"les incidències per antiguitat. Podeu analitzar el temps requerit a obrir o " +"tancar una incidència, el nombre de correus intercanviats i el temps gastat " +"en mitjana per incidència." #. module: project_issue #: view:project.issue:0 @@ -414,7 +421,7 @@ msgid "Issues Analysis" msgstr "Anàlisi d'incidències" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -438,7 +445,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Tasques" @@ -478,11 +485,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Sol·licitud de noves característiques" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -535,11 +537,6 @@ msgstr "" "entrants i sortints d'aquest registre abans de ser enviats. Separeu les " "diferents adreces de correu amb una coma." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Manteniment" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -593,11 +590,6 @@ msgstr "Agost" msgid "Normal" msgstr "Normal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -650,9 +642,9 @@ msgid "November" msgstr "Novembre" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -661,9 +653,9 @@ msgid "Search" msgstr "Cerca" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Octubre" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -727,11 +719,6 @@ msgstr "Versió incidència" msgid "Version Number" msgstr "Número de versió" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Canceŀla" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -768,7 +755,12 @@ msgstr "Incidència projecte" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -776,12 +768,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "Calculat com: Temps dedicat / Temps total." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Octubre" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -851,9 +853,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -919,11 +921,6 @@ msgstr "Abril" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Referències" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -996,3 +993,21 @@ msgstr "Duració" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Issue Categories" +#~ msgstr "Categories d'incidències" + +#~ msgid "Categories" +#~ msgstr "Categories" + +#~ msgid "Feature Requests" +#~ msgstr "Sol·licitud de noves característiques" + +#~ msgid "References" +#~ msgstr "Referències" + +#~ msgid "Cancel" +#~ msgstr "Canceŀla" + +#~ msgid "Maintenance" +#~ msgstr "Manteniment" diff --git a/addons/project_issue/i18n/cs.po b/addons/project_issue/i18n/cs.po new file mode 100644 index 00000000000..c176576fef1 --- /dev/null +++ b/addons/project_issue/i18n/cs.po @@ -0,0 +1,981 @@ +# 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-31 16:53+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-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_03 +msgid "Deadly bug" +msgstr "" + +#. module: project_issue +#: help:project.config.settings,fetchmail_issue:0 +msgid "" +"Allows you to configure your incoming mail server, and create issues from " +"incoming emails." +msgstr "" + +#. module: project_issue +#: field:project.issue.report,delay_open:0 +msgid "Avg. Delay to Open" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +msgid "Group By..." +msgstr "" + +#. module: project_issue +#: field:project.issue,working_hours_open:0 +msgid "Working Hours to Open the Issue" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_started +msgid "Issue started" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_open:0 +msgid "Opened" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,opening_date:0 +msgid "Date of Opening" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "March" +msgstr "" + +#. module: project_issue +#: field:project.issue,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: project_issue +#: field:project.issue,company_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,company_id:0 +msgid "Company" +msgstr "" + +#. module: project_issue +#: field:project.issue,email_cc:0 +msgid "Watchers Emails" +msgstr "" + +#. module: project_issue +#: help:project.issue,kanban_state:0 +msgid "" +"A Issue's kanban state indicates special situations affecting it:\n" +" * Normal is the default situation\n" +" * Blocked indicates something is preventing the progress of this issue\n" +" * Ready for next stage indicates the issue is ready to be pulled to the " +"next stage" +msgstr "" + +#. module: project_issue +#: help:project.issue,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: project_issue +#: help:account.analytic.account,use_issues:0 +msgid "Check this field if this project manages issues" +msgstr "" + +#. module: project_issue +#: field:project.issue,day_open:0 +msgid "Days to Open" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "" +"You cannot escalate this issue.\n" +"The relevant Project has not configured the Escalation Project!" +msgstr "" + +#. module: project_issue +#: constraint:project.project:0 +msgid "Error! You cannot assign escalation to the same project!" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Highest" +msgstr "" + +#. module: project_issue +#: help:project.issue,inactivity_days:0 +msgid "Difference in days between last action and current date" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,day:0 +msgid "Day" +msgstr "" + +#. module: project_issue +#: field:project.issue,days_since_creation:0 +msgid "Days since creation date" +msgstr "" + +#. module: project_issue +#: field:project.issue,task_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,task_id:0 +msgid "Task" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_project_issue_stage +msgid "Issue Stage Changed" +msgstr "" + +#. module: project_issue +#: field:project.issue,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: project_issue +#: field:project.issue,inactivity_days:0 +msgid "Days since last action" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_project +#: view:project.issue:0 +#: field:project.issue,project_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,project_id:0 +msgid "Project" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.project_issue_categ_act0 +msgid "" +"

\n" +" Click to report a new issue.\n" +"

\n" +" The OpenERP issues tacker allows you to efficiantly manage " +"things\n" +" like internal requests, software development bugs, customer\n" +" complaints, project troubles, material breakdowns, etc.\n" +"

\n" +" " +msgstr "" + +#. module: project_issue +#: selection:project.issue,state:0 +#: selection:project.issue.report,state:0 +msgid "Cancelled" +msgstr "" + +#. module: project_issue +#: field:project.issue,description:0 +msgid "Private Note" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,date_closed:0 +msgid "Date of Closing" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Issue Tracker Search" +msgstr "" + +#. module: project_issue +#: field:project.issue,color:0 +msgid "Color Index" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,working_hours_open:0 +msgid "Avg. Working Hours to Open" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_account_analytic_account +msgid "Analytic Account" +msgstr "" + +#. module: project_issue +#: help:project.issue,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: project_issue +#: help:project.project,project_escalation_id:0 +msgid "" +"If any issue is escalated from the current Project, it will be listed under " +"the project selected here." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Extra Info" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Edit..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Responsible" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Statistics" +msgstr "" + +#. module: project_issue +#: field:project.issue,kanban_state:0 +msgid "Kanban State" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:366 +#, python-format +msgid "Project issue converted to task." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,priority:0 +#: view:project.issue.report:0 +#: field:project.issue.report,priority:0 +msgid "Priority" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,version_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,version_id:0 +msgid "Version" +msgstr "" + +#. module: project_issue +#: field:project.issue,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +msgid "New" +msgstr "" + +#. module: project_issue +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" + +#. module: project_issue +#: field:project.issue,email_from:0 +msgid "Email" +msgstr "" + +#. module: project_issue +#: field:project.issue,channel_id:0 +#: field:project.issue.report,channel_id:0 +msgid "Channel" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Lowest" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:388 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Unassigned Issues" +msgstr "" + +#. module: project_issue +#: field:project.issue,create_date:0 +#: view:project.issue.report:0 +#: field:project.issue.report,creation_date:0 +msgid "Creation Date" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.project_issue_version_action +#: model:ir.ui.menu,name:project_issue.menu_project_issue_version_act +msgid "Versions" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "To Do Issues" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue_version +msgid "project.issue.version" +msgstr "" + +#. module: project_issue +#: field:project.config.settings,fetchmail_issue:0 +msgid "Create issues from an incoming email account " +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +msgid "Done" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "July" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,stage_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,stage_id:0 +msgid "Stage" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.action_project_issue_report +#: model:ir.ui.menu,name:project_issue.menu_project_issue_report_tree +#: view:project.issue.report:0 +msgid "Issues Analysis" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:516 +#, python-format +msgid "No Subject" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.action_view_my_project_issue_tree +msgid "My Project Issues" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,partner_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,partner_id:0 +msgid "Contact" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Delete" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:371 +#, python-format +msgid "Tasks" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,nbr:0 +msgid "# of Issues" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "September" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "December" +msgstr "" + +#. module: project_issue +#: field:project.issue,categ_ids:0 +msgid "Tags" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Issue Tracker Tree" +msgstr "" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_01 +msgid "Little problem" +msgstr "" + +#. module: project_issue +#: view:project.project:0 +msgid "creates" +msgstr "" + +#. module: project_issue +#: field:project.issue,write_date:0 +msgid "Update Date" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Project:" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Open Features" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_action_next:0 +msgid "Next Action" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,kanban_state:0 +msgid "Blocked" +msgstr "" + +#. module: project_issue +#: field:project.issue,user_email:0 +msgid "User Email" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "#Number of Project Issues" +msgstr "" + +#. module: project_issue +#: help:project.issue,channel_id:0 +msgid "Communication channel." +msgstr "" + +#. module: project_issue +#: help:project.issue,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,state:0 +msgid "Draft" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Low" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_closed:0 +#: selection:project.issue.report,state:0 +msgid "Closed" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,delay_close:0 +msgid "Avg. Delay to Close" +msgstr "" + +#. module: project_issue +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +#: selection:project.issue.report,state:0 +msgid "Pending" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,state:0 +#: field:project.issue.report,state:0 +msgid "Status" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "#Project Issues" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "August" +msgstr "" + +#. module: project_issue +#: selection:project.issue,kanban_state:0 +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Normal" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Category:" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "June" +msgstr "" + +#. module: project_issue +#: help:project.issue,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "New Issues" +msgstr "" + +#. module: project_issue +#: field:project.issue,day_close:0 +msgid "Days to Close" +msgstr "" + +#. module: project_issue +#: field:project.issue,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: project_issue +#: help:project.issue,state:0 +msgid "" +"The status is set to 'Draft', when a case is created. " +"If the case is in progress the status is set to 'Open'. " +"When the case is over, the status is set to 'Done'. If " +"the case needs to be reviewed then the status is set " +"to 'Pending'." +msgstr "" + +#. module: project_issue +#: field:project.issue,active:0 +#: field:project.issue.version,active:0 +msgid "Active" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "November" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:499 +#, python-format +msgid "Customer Email" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "Search" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" + +#. module: project_issue +#: help:project.issue,days_since_creation:0 +msgid "Difference in days between creation date and current date" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "January" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature Tracker Tree" +msgstr "" + +#. module: project_issue +#: help:project.issue,email_from:0 +msgid "These people will receive email." +msgstr "" + +#. module: project_issue +#: field:project.issue,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: project_issue +#: field:project.issue,date:0 +msgid "Date" +msgstr "" + +#. module: project_issue +#: field:project.issue,user_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,user_id:0 +msgid "Assigned to" +msgstr "" + +#. module: project_issue +#: view:project.config.settings:0 +msgid "Configure" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_closed +msgid "Issue closed" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Current Features" +msgstr "" + +#. module: project_issue +#: view:project.issue.version:0 +msgid "Issue Version" +msgstr "" + +#. module: project_issue +#: field:project.issue.version,name:0 +msgid "Version Number" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,state:0 +msgid "Open" +msgstr "" + +#. module: project_issue +#: field:account.analytic.account,use_issues:0 +#: model:ir.actions.act_window,name:project_issue.act_project_project_2_project_issue_all +#: model:ir.actions.act_window,name:project_issue.project_issue_categ_act0 +#: model:ir.ui.menu,name:project_issue.menu_project_confi +#: model:ir.ui.menu,name:project_issue.menu_project_issue_track +#: view:project.issue:0 +#: view:project.project:0 +msgid "Issues" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +msgid "In Progress" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +msgid "To Do" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue +#: view:project.issue.report:0 +msgid "Project Issue" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" + +#. module: project_issue +#: help:project.issue,progress:0 +msgid "Computed as: Time Spent / Total Time." +msgstr "" + +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,kanban_state:0 +msgid "Ready for next stage" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,section_id:0 +msgid "Sale Team" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +#: field:project.issue.report,month:0 +msgid "Month" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,name:0 +#: view:project.project:0 +msgid "Issue" +msgstr "" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_02 +msgid "PBCK" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature Tracker Search" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Description" +msgstr "" + +#. module: project_issue +#: field:project.issue,section_id:0 +msgid "Sales Team" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "May" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_config_settings +msgid "project.config.settings" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_closed +#: model:mail.message.subtype,name:project_issue.mt_project_issue_closed +msgid "Issue Closed" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,email:0 +msgid "# Emails" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_new +#: model:mail.message.subtype,name:project_issue.mt_project_issue_new +msgid "Issue Created" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "February" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_stage +#: model:mail.message.subtype,description:project_issue.mt_project_issue_stage +msgid "Stage changed" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature description" +msgstr "" + +#. module: project_issue +#: field:project.project,project_escalation_id:0 +msgid "Project Escalation" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.project_issue_version_action +msgid "" +"

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

\n" +" Define here the different versions of your products on " +"which\n" +" you can work on issues.\n" +"

\n" +" " +msgstr "" + +#. module: project_issue +#: help:project.issue,section_id:0 +msgid "" +"Sales team to which Case belongs to. Define " +"Responsible user and Email account for mail gateway." +msgstr "" + +#. module: project_issue +#: view:board.board:0 +msgid "My Issues" +msgstr "" + +#. module: project_issue +#: help:project.issue.report,delay_open:0 +msgid "Number of Days to open the project issue." +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "April" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "⇒ Escalate" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_new +msgid "Issue created" +msgstr "" + +#. module: project_issue +#: field:project.issue,working_hours_close:0 +msgid "Working Hours to Close the Issue" +msgstr "" + +#. module: project_issue +#: field:project.issue,id:0 +msgid "ID" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_blocked +msgid "Issue blocked" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue_report +msgid "project.issue.report" +msgstr "" + +#. module: project_issue +#: help:project.issue.report,delay_close:0 +msgid "Number of Days to close the project issue" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,working_hours_close:0 +msgid "Avg. Working Hours to Close" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_stage +msgid "Stage Changed" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "High" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_deadline:0 +msgid "Deadline" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_action_last:0 +msgid "Last Action" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,name:0 +msgid "Year" +msgstr "" + +#. module: project_issue +#: field:project.issue,duration:0 +msgid "Duration" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_started +#: model:mail.message.subtype,name:project_issue.mt_project_issue_started +msgid "Issue Started" +msgstr "" diff --git a/addons/project_issue/i18n/da.po b/addons/project_issue/i18n/da.po index 797cdad1e2f..e63ff2d6f8c 100644 --- a/addons/project_issue/i18n/da.po +++ b/addons/project_issue/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -249,12 +249,9 @@ msgid "Extra Info" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -267,6 +264,12 @@ msgstr "" msgid "Responsible" msgstr "" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -278,7 +281,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -312,8 +315,8 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" msgstr "" #. module: project_issue @@ -334,7 +337,7 @@ msgid "Lowest" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -385,8 +388,12 @@ msgid "July" msgstr "" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." msgstr "" #. module: project_issue @@ -405,7 +412,7 @@ msgid "Issues Analysis" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -429,7 +436,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "" @@ -469,11 +476,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -523,11 +525,6 @@ msgid "" "addresses with a comma" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -581,11 +578,6 @@ msgstr "" msgid "Normal" msgstr "" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -638,9 +630,9 @@ msgid "November" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -649,8 +641,8 @@ msgid "Search" msgstr "" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" +#: view:project.issue:0 +msgid "Creation Month" msgstr "" #. module: project_issue @@ -715,11 +707,6 @@ msgstr "" msgid "Version Number" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -756,7 +743,12 @@ msgstr "" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -764,12 +756,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -839,9 +841,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -905,11 +907,6 @@ msgstr "" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" diff --git a/addons/project_issue/i18n/de.po b/addons/project_issue/i18n/de.po index 4a84a71f796..4da0bcff87d 100644 --- a/addons/project_issue/i18n/de.po +++ b/addons/project_issue/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-09 08:35+0000\n" "Last-Translator: Felix Schubert \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-10 05:24+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -123,7 +123,7 @@ msgid "Days to Open" msgstr "Tage bis Eröffnung" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -274,18 +274,10 @@ msgid "Extra Info" msgstr "Weitere Information" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." -msgstr "" -"Dieser Bericht ermöglicht Ihnen die Analyse hinsichtlich der Qualität Ihres " -"Kundensupports oder Kundendienst. Sie können die Eskalationen nach Datum " -"auswerten oder die Zeit von der Eröffnung einer Eskalation oder die Zeit bis " -"zur Lösung. Ausserdem lassen sich die Anzahl E-Mails oder durchschnittliche " -"Vorgangszeiten auswerten." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "Warnung !" #. module: project_issue #: view:project.issue:0 @@ -297,6 +289,12 @@ msgstr "Bearbeiten..." msgid "Responsible" msgstr "Verantwortlicher" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "Fall wurde blockiert" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -308,7 +306,7 @@ msgid "Kanban State" msgstr "Kanban Status" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "Projekt Fall wurde umgewandelt in Aufgabe." @@ -342,9 +340,9 @@ msgid "New" msgstr "Neu" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Fälle Kategorien" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -364,7 +362,7 @@ msgid "Lowest" msgstr "Niedrig" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "%s (copy)" @@ -415,9 +413,18 @@ msgid "July" msgstr "Juli" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Kategorien" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Dieser Bericht ermöglicht Ihnen die Analyse hinsichtlich der Qualität Ihres " +"Kundensupports oder Kundendienst. Sie können die Eskalationen nach Datum " +"auswerten oder die Zeit von der Eröffnung einer Eskalation oder die Zeit bis " +"zur Lösung. Ausserdem lassen sich die Anzahl E-Mails oder durchschnittliche " +"Vorgangszeiten auswerten." #. module: project_issue #: view:project.issue:0 @@ -435,7 +442,7 @@ msgid "Issues Analysis" msgstr "Statistik Fälle" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "Kein Betreff" @@ -459,7 +466,7 @@ msgid "Delete" msgstr "Löschen" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Aufgaben" @@ -499,11 +506,6 @@ msgstr "Kleines Problem" msgid "creates" msgstr "erstellt" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Feature Anfrage" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -556,11 +558,6 @@ msgstr "" "ausgehenden Mails hinzugefügt. Trennen Sie mehrere E-Mail Adressen mit " "Kommas." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Wartung" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -614,11 +611,6 @@ msgstr "August" msgid "Normal" msgstr "Normal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "unbekannt" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -676,10 +668,10 @@ msgid "November" msgstr "November" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "Warnung !" +msgid "Customer Email" +msgstr "" #. module: project_issue #: view:project.issue.report:0 @@ -687,9 +679,9 @@ msgid "Search" msgstr "Suche" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Oktober" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Monat Erstellung" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -753,11 +745,6 @@ msgstr "Version" msgid "Version Number" msgstr "Versionsnummer" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Abbrechen" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -794,20 +781,35 @@ msgstr "Projekt Fälle" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Monat Erstellung" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Berechnet als: Gearbeitete Zeit / Gesamtzeit" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "Bereit für nächste Stufe" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Oktober" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -877,10 +879,10 @@ msgid "Issue Created" msgstr "Fall wurde erstellt" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" -msgstr "Fall wurde blockiert" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" +msgstr "" #. module: project_issue #: selection:project.issue.report,month:0 @@ -952,11 +954,6 @@ msgstr "April" msgid "⇒ Escalate" msgstr "=> Eskalation" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Referenzen" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -1029,3 +1026,24 @@ msgstr "Dauer" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "Fall wurde gestartet" + +#~ msgid "References" +#~ msgstr "Referenzen" + +#~ msgid "Feature Requests" +#~ msgstr "Feature Anfrage" + +#~ msgid "Cancel" +#~ msgstr "Abbrechen" + +#~ msgid "Categories" +#~ msgstr "Kategorien" + +#~ msgid "Maintenance" +#~ msgstr "Wartung" + +#~ msgid "Issue Categories" +#~ msgstr "Fälle Kategorien" + +#~ msgid "unknown" +#~ msgstr "unbekannt" diff --git a/addons/project_issue/i18n/es.po b/addons/project_issue/i18n/es.po index d7f910e4d2c..d05cc621155 100644 --- a/addons/project_issue/i18n/es.po +++ b/addons/project_issue/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -122,7 +122,7 @@ msgid "Days to Open" msgstr "Días para abrir" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -272,18 +272,10 @@ msgid "Extra Info" msgstr "Información extra" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." -msgstr "" -"Este informe sobre las incidencias del proyecto permite analizar la calidad " -"de su soporte o los servicios postventa. Puede hacer un seguimiento de las " -"incidencias por antigüedad. Puede analizar el tiempo requerido en abrir o " -"cerrar una incidencia, el número de correos intercambiados y el tiempo " -"gastado en promedio por incidencia." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "¡Advertencia!" #. module: project_issue #: view:project.issue:0 @@ -295,6 +287,12 @@ msgstr "Editar…" msgid "Responsible" msgstr "Responsable" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "Incidencia bloqueada" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -306,7 +304,7 @@ msgid "Kanban State" msgstr "Estado de kanban" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "Incidencia de proyecto convertida a tarea." @@ -340,9 +338,9 @@ msgid "New" msgstr "Nuevo" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Categorías de incidencias" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -362,7 +360,7 @@ msgid "Lowest" msgstr "La más baja" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "%s (copia)" @@ -413,9 +411,18 @@ msgid "July" msgstr "Julio" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Categorías" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Este informe sobre las incidencias del proyecto permite analizar la calidad " +"de su soporte o los servicios postventa. Puede hacer un seguimiento de las " +"incidencias por antigüedad. Puede analizar el tiempo requerido en abrir o " +"cerrar una incidencia, el número de correos intercambiados y el tiempo " +"gastado en promedio por incidencia." #. module: project_issue #: view:project.issue:0 @@ -433,7 +440,7 @@ msgid "Issues Analysis" msgstr "Análisis de incidencias" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "Sin asunto" @@ -457,7 +464,7 @@ msgid "Delete" msgstr "Eliminar" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Tareas" @@ -497,11 +504,6 @@ msgstr "Pequeño problema" msgid "creates" msgstr "crea" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Peticiones de funcionalidades" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -554,11 +556,6 @@ msgstr "" "correos entrantes y salientes de este registro antes de ser enviados. Separe " "las diferentes direcciones de correo con una coma." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Mantenimiento" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -612,11 +609,6 @@ msgstr "Agosto" msgid "Normal" msgstr "Normal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "desconocido" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -673,10 +665,10 @@ msgid "November" msgstr "Noviembre" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "¡Advertencia!" +msgid "Customer Email" +msgstr "" #. module: project_issue #: view:project.issue.report:0 @@ -684,9 +676,9 @@ msgid "Search" msgstr "Buscar" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Octubre" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Mes de creación" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -750,11 +742,6 @@ msgstr "Versión incidencia" msgid "Version Number" msgstr "Número de versión" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Cancelar" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -791,20 +778,35 @@ msgstr "Incidencia proyecto" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Mes de creación" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Calculado como: Tiempo dedicado / Tiempo total." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "Lista para la siguiente etapa" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Octubre" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -874,10 +876,10 @@ msgid "Issue Created" msgstr "Incidencia creada" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" -msgstr "Incidencia bloqueada" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" +msgstr "" #. module: project_issue #: selection:project.issue.report,month:0 @@ -949,11 +951,6 @@ msgstr "Abril" msgid "⇒ Escalate" msgstr "⇒ Escalar" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Referencias" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -1026,3 +1023,24 @@ msgstr "Duración" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "Incidencia iniciada" + +#~ msgid "Issue Categories" +#~ msgstr "Categorías de incidencias" + +#~ msgid "Categories" +#~ msgstr "Categorías" + +#~ msgid "Feature Requests" +#~ msgstr "Peticiones de funcionalidades" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" + +#~ msgid "References" +#~ msgstr "Referencias" + +#~ msgid "Maintenance" +#~ msgstr "Mantenimiento" + +#~ msgid "unknown" +#~ msgstr "desconocido" diff --git a/addons/project_issue/i18n/es_CR.po b/addons/project_issue/i18n/es_CR.po index fb579b4c7ba..f2f77f7d60e 100644 --- a/addons/project_issue/i18n/es_CR.po +++ b/addons/project_issue/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Días para abrir" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -253,18 +253,10 @@ msgid "Extra Info" msgstr "Información extra" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" -"Este informe sobre las incidencias del proyecto permite analizar la calidad " -"de su soporte o los servicios postventa. Puede hacer un seguimiento de las " -"incidencias por antigüedad. Puede analizar el tiempo requerido en abrir o " -"cerrar una incidencia, el número de correos intercambiados y el tiempo " -"gastado en promedio por incidencia." #. module: project_issue #: view:project.issue:0 @@ -276,6 +268,12 @@ msgstr "" msgid "Responsible" msgstr "Responsable" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -287,7 +285,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -321,9 +319,9 @@ msgid "New" msgstr "Nuevo" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Categorías de incidencias" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -343,7 +341,7 @@ msgid "Lowest" msgstr "La más baja" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -394,9 +392,18 @@ msgid "July" msgstr "Julio" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Categorías" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Este informe sobre las incidencias del proyecto permite analizar la calidad " +"de su soporte o los servicios postventa. Puede hacer un seguimiento de las " +"incidencias por antigüedad. Puede analizar el tiempo requerido en abrir o " +"cerrar una incidencia, el número de correos intercambiados y el tiempo " +"gastado en promedio por incidencia." #. module: project_issue #: view:project.issue:0 @@ -414,7 +421,7 @@ msgid "Issues Analysis" msgstr "Análisis de incidencias" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -438,7 +445,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Tareas" @@ -478,11 +485,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Peticiones de funcionalidades" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -535,11 +537,6 @@ msgstr "" "correos entrantes y salientes de este registro antes de ser enviados. Separe " "las diferentes direcciones de correo con una coma." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Mantenimiento" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -593,11 +590,6 @@ msgstr "Agosto" msgid "Normal" msgstr "Normal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -650,9 +642,9 @@ msgid "November" msgstr "Noviembre" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -661,9 +653,9 @@ msgid "Search" msgstr "Buscar" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Octubre" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Mes de creación" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -727,11 +719,6 @@ msgstr "Versión incidencia" msgid "Version Number" msgstr "Número de versión" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Cancelar" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -768,20 +755,35 @@ msgstr "Incidencia proyecto" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Mes de creación" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Calculado como: Tiempo dedicado / Tiempo total." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Octubre" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -851,9 +853,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -919,11 +921,6 @@ msgstr "Abril" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Referencias" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -996,3 +993,21 @@ msgstr "Duración" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "Mantenimiento" + +#~ msgid "Issue Categories" +#~ msgstr "Categorías de incidencias" + +#~ msgid "Categories" +#~ msgstr "Categorías" + +#~ msgid "Feature Requests" +#~ msgstr "Peticiones de funcionalidades" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" + +#~ msgid "References" +#~ msgstr "Referencias" diff --git a/addons/project_issue/i18n/fi.po b/addons/project_issue/i18n/fi.po index 442ef2031f4..1acc1b1c00c 100644 --- a/addons/project_issue/i18n/fi.po +++ b/addons/project_issue/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Päiviä avaamiseen" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -253,12 +253,9 @@ msgid "Extra Info" msgstr "Lisätiedot" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -271,6 +268,12 @@ msgstr "" msgid "Responsible" msgstr "Vastuuhenkilö" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -282,7 +285,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -316,9 +319,9 @@ msgid "New" msgstr "Uusi" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Tapahtumakategoriat" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -338,7 +341,7 @@ msgid "Lowest" msgstr "Alin" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -389,9 +392,13 @@ msgid "July" msgstr "Heinäkuu" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Kategoriat" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" #. module: project_issue #: view:project.issue:0 @@ -409,7 +416,7 @@ msgid "Issues Analysis" msgstr "Tapausten analyysit" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -433,7 +440,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Tehtävät" @@ -473,11 +480,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Ominaisuuspyynnöt" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -530,11 +532,6 @@ msgstr "" "tietueeseen liittyvien sähköpostien osalta. Erota useammat osoitteet " "pilkulla." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Ylläpito" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -588,11 +585,6 @@ msgstr "Elokuu" msgid "Normal" msgstr "Normaali" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -645,9 +637,9 @@ msgid "November" msgstr "Marraskuu" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -656,9 +648,9 @@ msgid "Search" msgstr "Etsi" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Lokakuu" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Luontikuukausi" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -722,11 +714,6 @@ msgstr "Tapauksen versio" msgid "Version Number" msgstr "Versionumero" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Peruuta" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -763,20 +750,35 @@ msgstr "Projekti tapahtuma" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Luontikuukausi" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Laskettu: käytetty aika / kokonaisaika" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Lokakuu" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -846,9 +848,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -914,11 +916,6 @@ msgstr "Huhtikuu" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Viitteet" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -991,3 +988,21 @@ msgstr "Kesto" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "Ylläpito" + +#~ msgid "Issue Categories" +#~ msgstr "Tapahtumakategoriat" + +#~ msgid "Categories" +#~ msgstr "Kategoriat" + +#~ msgid "Feature Requests" +#~ msgstr "Ominaisuuspyynnöt" + +#~ msgid "Cancel" +#~ msgstr "Peruuta" + +#~ msgid "References" +#~ msgstr "Viitteet" diff --git a/addons/project_issue/i18n/fr.po b/addons/project_issue/i18n/fr.po index 04b68708f2d..e8063e91bce 100644 --- a/addons/project_issue/i18n/fr.po +++ b/addons/project_issue/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-05-30 09:48+0000\n" +"Last-Translator: Quentin THEURET \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -28,6 +28,8 @@ msgid "" "Allows you to configure your incoming mail server, and create issues from " "incoming emails." msgstr "" +"Vous permet de configurer vos serveurs de courriels entrants, et de créer " +"des incidents depuis les courriels entrants." #. module: project_issue #: field:project.issue.report,delay_open:0 @@ -48,7 +50,7 @@ msgstr "Heures de travail pour ouvrir l'incident" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_started msgid "Issue started" -msgstr "" +msgstr "Incident démarré" #. module: project_issue #: field:project.issue,date_open:0 @@ -114,7 +116,7 @@ msgid "Days to Open" msgstr "Jours pour ouvrir" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -255,17 +257,10 @@ msgid "Extra Info" msgstr "Info supplémentaires" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" -"Ce rapport sur les incidents du projet vous permet d'analyser la qualité du " -"support ou du service après-vente. Vous pouvez suivre les incidents par âge. " -"Vous pouvez analyser le temps requis pour ouvrir ou fermer un incident, le " -"nombre d'emails à échanger et le temps passé en moyenne par incident." #. module: project_issue #: view:project.issue:0 @@ -277,6 +272,12 @@ msgstr "" msgid "Responsible" msgstr "Responsable" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -288,7 +289,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -322,9 +323,9 @@ msgid "New" msgstr "Nouveau" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Catégories d'incident" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" #. module: project_issue #: field:project.issue,email_from:0 @@ -344,7 +345,7 @@ msgid "Lowest" msgstr "La plus basse" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -395,9 +396,17 @@ msgid "July" msgstr "Juillet" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Catégories" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Ce rapport sur les incidents du projet vous permet d'analyser la qualité du " +"support ou du service après-vente. Vous pouvez suivre les incidents par âge. " +"Vous pouvez analyser le temps requis pour ouvrir ou fermer un incident, le " +"nombre d'emails à échanger et le temps passé en moyenne par incident." #. module: project_issue #: view:project.issue:0 @@ -415,7 +424,7 @@ msgid "Issues Analysis" msgstr "Analyse des incidents" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -439,7 +448,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Tâches" @@ -479,11 +488,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Demandes de fonctionnalités" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -536,11 +540,6 @@ msgstr "" "tous les courriels entrants et sortants de cet enregistrement. Séparez les " "adresses multiples avec une virgule." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Maintenance" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -594,11 +593,6 @@ msgstr "Août" msgid "Normal" msgstr "Normale" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -612,7 +606,7 @@ msgstr "Juin" #. module: project_issue #: help:project.issue,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Historique des messages et communications" #. module: project_issue #: view:project.issue:0 @@ -627,7 +621,7 @@ msgstr "Jours avant clôture" #. module: project_issue #: field:project.issue,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Est abonné" #. module: project_issue #: help:project.issue,state:0 @@ -651,10 +645,10 @@ msgid "November" msgstr "Novembre" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "" +msgid "Customer Email" +msgstr "Courriel client" #. module: project_issue #: view:project.issue.report:0 @@ -662,9 +656,9 @@ msgid "Search" msgstr "Rechercher" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Octobre" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Mois de création" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -728,11 +722,6 @@ msgstr "Version de l'incident" msgid "Version Number" msgstr "Numéro de la version" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Annuler" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -769,20 +758,35 @@ msgstr "Incident de projet" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Mois de création" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Calculer comme: Temps passé / Temps total" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Octobre" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -849,12 +853,12 @@ msgstr "Nb. de courriels" #: model:mail.message.subtype,name:project_issue.mt_issue_new #: model:mail.message.subtype,name:project_issue.mt_project_issue_new msgid "Issue Created" -msgstr "" +msgstr "Incident créé" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -920,11 +924,6 @@ msgstr "Avril" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Références" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -997,3 +996,21 @@ msgstr "Durée" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "Maintenance" + +#~ msgid "Categories" +#~ msgstr "Catégories" + +#~ msgid "Issue Categories" +#~ msgstr "Catégories d'incident" + +#~ msgid "Feature Requests" +#~ msgstr "Demandes de fonctionnalités" + +#~ msgid "Cancel" +#~ msgstr "Annuler" + +#~ msgid "References" +#~ msgstr "Références" diff --git a/addons/project_issue/i18n/hr.po b/addons/project_issue/i18n/hr.po index d8f6be9dab3..4ea6f0f4f81 100644 --- a/addons/project_issue/i18n/hr.po +++ b/addons/project_issue/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Dana za otvaranje" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -249,12 +249,9 @@ msgid "Extra Info" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -267,6 +264,12 @@ msgstr "" msgid "Responsible" msgstr "" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -278,7 +281,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -312,8 +315,8 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" msgstr "" #. module: project_issue @@ -334,7 +337,7 @@ msgid "Lowest" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -385,8 +388,12 @@ msgid "July" msgstr "" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." msgstr "" #. module: project_issue @@ -405,7 +412,7 @@ msgid "Issues Analysis" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -429,7 +436,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "" @@ -469,11 +476,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -523,11 +525,6 @@ msgid "" "addresses with a comma" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -581,11 +578,6 @@ msgstr "" msgid "Normal" msgstr "" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -638,9 +630,9 @@ msgid "November" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -649,8 +641,8 @@ msgid "Search" msgstr "" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" +#: view:project.issue:0 +msgid "Creation Month" msgstr "" #. module: project_issue @@ -715,11 +707,6 @@ msgstr "" msgid "Version Number" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -756,7 +743,12 @@ msgstr "" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -764,12 +756,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -839,9 +841,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -905,11 +907,6 @@ msgstr "" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" diff --git a/addons/project_issue/i18n/hu.po b/addons/project_issue/i18n/hu.po index c9c86e39e15..2cc6ba0a31e 100644 --- a/addons/project_issue/i18n/hu.po +++ b/addons/project_issue/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-02-10 17:59+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-10 20:23+0000\n" "Last-Translator: krnkris \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-02-11 05:35+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -120,7 +120,7 @@ msgid "Days to Open" msgstr "Megnyitásig hátralévő napok" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -270,18 +270,10 @@ msgid "Extra Info" msgstr "Extra információ" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." -msgstr "" -"Ez a projekt ügyi jelentés lehetővé teszi a támogatása minőségének és az " -"eladás utáni szolgáltatásainak az elemzését. Nyomon követheti az ügyet koruk " -"szerint. Elemezheti az ügy megnyitásához és bezárásához felhasznált időt, az " -"ügyben váltott emailek számát és az átlag időt, mennyit töltöttek egyes " -"ügyekkel." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "Figyelem!" #. module: project_issue #: view:project.issue:0 @@ -293,6 +285,12 @@ msgstr "Szerkesztés…" msgid "Responsible" msgstr "Felelős" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "Ügy blokkolva" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -304,7 +302,7 @@ msgid "Kanban State" msgstr "Kanban státusz" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "Project ügy átalakítása feladattá." @@ -338,9 +336,9 @@ msgid "New" msgstr "Új" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Ügy kategóriák" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -360,7 +358,7 @@ msgid "Lowest" msgstr "Legalacsonyabb" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "%s (másolat)" @@ -411,9 +409,18 @@ msgid "July" msgstr "Július" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Kategóriák" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Ez a projekt ügyi jelentés lehetővé teszi a támogatása minőségének és az " +"eladás utáni szolgáltatásainak az elemzését. Nyomon követheti az ügyet koruk " +"szerint. Elemezheti az ügy megnyitásához és bezárásához felhasznált időt, az " +"ügyben váltott emailek számát és az átlag időt, mennyit töltöttek egyes " +"ügyekkel." #. module: project_issue #: view:project.issue:0 @@ -431,7 +438,7 @@ msgid "Issues Analysis" msgstr "Ügyek elemzése" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "Nincs tárgy" @@ -455,7 +462,7 @@ msgid "Delete" msgstr "Törlés" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Feladatok" @@ -495,11 +502,6 @@ msgstr "Kis probléma" msgid "creates" msgstr "létrehozott" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Igények tulajdonsága" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -552,11 +554,6 @@ msgstr "" "minden bejövő és kimenő email-hez amit ezzel a feljegyzéssel küld. Több " "email felsorolását vesszővel elválasztva adja meg." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Karbantartás" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -610,11 +607,6 @@ msgstr "Augusztus" msgid "Normal" msgstr "Normál" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "ismeretlen" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -672,10 +664,10 @@ msgid "November" msgstr "November" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "Figyelem!" +msgid "Customer Email" +msgstr "Vevői e-mail" #. module: project_issue #: view:project.issue.report:0 @@ -683,9 +675,9 @@ msgid "Search" msgstr "Keresés" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Október" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Létrehozás hónapja" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -742,18 +734,13 @@ msgstr "Aktuális tuajdonság" #. module: project_issue #: view:project.issue.version:0 msgid "Issue Version" -msgstr "Ügy verzió" +msgstr "Ügy változata" #. module: project_issue #: field:project.issue.version,name:0 msgid "Version Number" msgstr "Verziószám" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Visszavonás" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -790,20 +777,35 @@ msgstr "Projekt ügy" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Létrehozás hónapja" +msgid "Add an internal note..." +msgstr "Belső jegyzet hozzáadása..." + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "Ügy visszavonása" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Kiszámítható: Eltöltött idő / Teljes idő" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "Befejezetlen ügyek" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "Következő fokra ugorhat" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Október" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -873,10 +875,10 @@ msgid "Issue Created" msgstr "Ügy létrehozva" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" -msgstr "Ügy blokkolva" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" +msgstr "Vevő" #. module: project_issue #: selection:project.issue.report,month:0 @@ -949,11 +951,6 @@ msgstr "Április" msgid "⇒ Escalate" msgstr "⇒ Leágaztatás" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Hivatkozások" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -1026,3 +1023,24 @@ msgstr "Időtartam" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "Ügy elindítva" + +#~ msgid "Categories" +#~ msgstr "Kategóriák" + +#~ msgid "References" +#~ msgstr "Hivatkozások" + +#~ msgid "Issue Categories" +#~ msgstr "Ügy kategóriák" + +#~ msgid "Feature Requests" +#~ msgstr "Igények tulajdonsága" + +#~ msgid "unknown" +#~ msgstr "ismeretlen" + +#~ msgid "Maintenance" +#~ msgstr "Karbantartás" + +#~ msgid "Cancel" +#~ msgstr "Visszavonás" diff --git a/addons/project_issue/i18n/it.po b/addons/project_issue/i18n/it.po index a7f7ba28a63..b2dd62f8ba5 100644 --- a/addons/project_issue/i18n/it.po +++ b/addons/project_issue/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Giorni per l'apertura" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -250,12 +250,9 @@ msgid "Extra Info" msgstr "Informazioni aggiuntive" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -268,6 +265,12 @@ msgstr "" msgid "Responsible" msgstr "Responsabile" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -279,7 +282,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -313,9 +316,9 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Categorie problematica" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -335,7 +338,7 @@ msgid "Lowest" msgstr "Minore" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -386,9 +389,13 @@ msgid "July" msgstr "Luglio" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Categorie" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" #. module: project_issue #: view:project.issue:0 @@ -406,7 +413,7 @@ msgid "Issues Analysis" msgstr "Analisi problematiche" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -430,7 +437,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Attività" @@ -470,11 +477,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Richieste caratteristiche" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -527,11 +529,6 @@ msgstr "" "entrate e uscita, prima di essere spedite. E' necessario separare gli " "indirizzi con una virgola" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Manutenzione" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -585,11 +582,6 @@ msgstr "Agosto" msgid "Normal" msgstr "Normale" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -642,9 +634,9 @@ msgid "November" msgstr "Novembre" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -653,9 +645,9 @@ msgid "Search" msgstr "Cerca" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Ottobre" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -719,11 +711,6 @@ msgstr "Versione problematica" msgid "Version Number" msgstr "Numero versione" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Annulla" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -760,7 +747,12 @@ msgstr "Problematica di progetto" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -768,12 +760,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "Calcolato come: Tempo impiegato / Tempo totale." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Ottobre" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -843,9 +845,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -911,11 +913,6 @@ msgstr "Aprile" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Riferimenti" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -988,3 +985,21 @@ msgstr "Durata" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Categories" +#~ msgstr "Categorie" + +#~ msgid "Cancel" +#~ msgstr "Annulla" + +#~ msgid "References" +#~ msgstr "Riferimenti" + +#~ msgid "Issue Categories" +#~ msgstr "Categorie problematica" + +#~ msgid "Feature Requests" +#~ msgstr "Richieste caratteristiche" + +#~ msgid "Maintenance" +#~ msgstr "Manutenzione" diff --git a/addons/project_issue/i18n/ja.po b/addons/project_issue/i18n/ja.po index 2dc9198a033..a66bee8ac81 100644 --- a/addons/project_issue/i18n/ja.po +++ b/addons/project_issue/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "開始日" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -251,15 +251,10 @@ msgid "Extra Info" msgstr "追加情報" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" -"プロジェクトの問題に関するこのレポートは、あなたのサポートやアフターサービスの品質を分析することができます。年齢ごとに問題を追跡可能です。問題を開くまたは" -"閉じるために要した時間、問題ごとに交換したEメールの数や消費時間の平均を分析できます。" #. module: project_issue #: view:project.issue:0 @@ -271,6 +266,12 @@ msgstr "" msgid "Responsible" msgstr "担当" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -282,7 +283,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -316,9 +317,9 @@ msgid "New" msgstr "新規" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "問題分類" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -338,7 +339,7 @@ msgid "Lowest" msgstr "最低" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -389,9 +390,15 @@ msgid "July" msgstr "7月" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "分類" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"プロジェクトの問題に関するこのレポートは、あなたのサポートやアフターサービスの品質を分析することができます。年齢ごとに問題を追跡可能です。問題を開くまたは" +"閉じるために要した時間、問題ごとに交換したEメールの数や消費時間の平均を分析できます。" #. module: project_issue #: view:project.issue:0 @@ -409,7 +416,7 @@ msgid "Issues Analysis" msgstr "問題分析" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -433,7 +440,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "タスク" @@ -473,11 +480,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "機能要求" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -527,11 +529,6 @@ msgid "" "addresses with a comma" msgstr "これらのEメールアドレスは送受信するEメールの CC 欄に追加されます。複数のEメールアドレスの間をコンマで区切って下さい。" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "メンテナンス" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -585,11 +582,6 @@ msgstr "8月" msgid "Normal" msgstr "通常" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -642,9 +634,9 @@ msgid "November" msgstr "11月" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -653,9 +645,9 @@ msgid "Search" msgstr "検索" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "10月" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "作成月" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -719,11 +711,6 @@ msgstr "問題のバージョン" msgid "Version Number" msgstr "バージョン番号" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "キャンセル" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -760,20 +747,35 @@ msgstr "プロジェクトの問題" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "作成月" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "計算式:消費時間 / 合計時間" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "10月" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -843,9 +845,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -909,11 +911,6 @@ msgstr "4月" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "参照" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -986,3 +983,21 @@ msgstr "期間" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "メンテナンス" + +#~ msgid "Issue Categories" +#~ msgstr "問題分類" + +#~ msgid "Categories" +#~ msgstr "分類" + +#~ msgid "Feature Requests" +#~ msgstr "機能要求" + +#~ msgid "Cancel" +#~ msgstr "キャンセル" + +#~ msgid "References" +#~ msgstr "参照" diff --git a/addons/project_issue/i18n/lt.po b/addons/project_issue/i18n/lt.po index bcbe7958a4d..1dd4d2abb54 100644 --- a/addons/project_issue/i18n/lt.po +++ b/addons/project_issue/i18n/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -249,12 +249,9 @@ msgid "Extra Info" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -267,6 +264,12 @@ msgstr "" msgid "Responsible" msgstr "" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -278,7 +281,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -312,8 +315,8 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" msgstr "" #. module: project_issue @@ -334,7 +337,7 @@ msgid "Lowest" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -385,8 +388,12 @@ msgid "July" msgstr "" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." msgstr "" #. module: project_issue @@ -405,7 +412,7 @@ msgid "Issues Analysis" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -429,7 +436,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "" @@ -469,11 +476,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -523,11 +525,6 @@ msgid "" "addresses with a comma" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -581,11 +578,6 @@ msgstr "" msgid "Normal" msgstr "" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -638,9 +630,9 @@ msgid "November" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -649,8 +641,8 @@ msgid "Search" msgstr "" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" +#: view:project.issue:0 +msgid "Creation Month" msgstr "" #. module: project_issue @@ -715,11 +707,6 @@ msgstr "" msgid "Version Number" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -756,7 +743,12 @@ msgstr "" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -764,12 +756,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -839,9 +841,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -905,11 +907,6 @@ msgstr "" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" diff --git a/addons/project_issue/i18n/lv.po b/addons/project_issue/i18n/lv.po index 3635629bb01..9297a6cbfd0 100644 --- a/addons/project_issue/i18n/lv.po +++ b/addons/project_issue/i18n/lv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Dienas līdz Atvēršanai" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -249,12 +249,9 @@ msgid "Extra Info" msgstr "Papildus Info" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -267,6 +264,12 @@ msgstr "" msgid "Responsible" msgstr "Atbildīgais" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -278,7 +281,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -312,9 +315,9 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Incidentu kategorijas" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -334,7 +337,7 @@ msgid "Lowest" msgstr "Zemākā" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -385,9 +388,13 @@ msgid "July" msgstr "Jūlijs" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Kategorijas" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" #. module: project_issue #: view:project.issue:0 @@ -405,7 +412,7 @@ msgid "Issues Analysis" msgstr "Incidentu analīze" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -429,7 +436,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Uzdevumi" @@ -469,11 +476,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Jaunu iespēju pieprasījumi" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -523,11 +525,6 @@ msgid "" "addresses with a comma" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Uzturēšana" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -581,11 +578,6 @@ msgstr "Augusts" msgid "Normal" msgstr "Normāla" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -638,9 +630,9 @@ msgid "November" msgstr "Novembris" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -649,9 +641,9 @@ msgid "Search" msgstr "Meklēt" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Oktobris" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -715,11 +707,6 @@ msgstr "Incidenta versija" msgid "Version Number" msgstr "Versijas numurs" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Atcelt" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -756,7 +743,12 @@ msgstr "Projekta incidents" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -764,12 +756,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "Aprēķināts kā: Patērētais Laiks / Kopējo Laiku." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Oktobris" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -839,9 +841,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -905,11 +907,6 @@ msgstr "Aprīlis" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Atsauces" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -982,3 +979,21 @@ msgstr "Ilgums" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "Uzturēšana" + +#~ msgid "Issue Categories" +#~ msgstr "Incidentu kategorijas" + +#~ msgid "Categories" +#~ msgstr "Kategorijas" + +#~ msgid "Feature Requests" +#~ msgstr "Jaunu iespēju pieprasījumi" + +#~ msgid "Cancel" +#~ msgstr "Atcelt" + +#~ msgid "References" +#~ msgstr "Atsauces" diff --git a/addons/project_issue/i18n/mk.po b/addons/project_issue/i18n/mk.po new file mode 100644 index 00000000000..a0da6d25ace --- /dev/null +++ b/addons/project_issue/i18n/mk.po @@ -0,0 +1,1042 @@ +# 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. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" +"Last-Translator: Aleksandar Panov \n" +"Language-Team: ESKON-INZENERING\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_03 +msgid "Deadly bug" +msgstr "Смртоносен баг" + +#. module: project_issue +#: help:project.config.settings,fetchmail_issue:0 +msgid "" +"Allows you to configure your incoming mail server, and create issues from " +"incoming emails." +msgstr "" +"Овозможува конфигурација на влезен mail сервер и креирање на проблеми од " +"влезни мејлови." + +#. module: project_issue +#: field:project.issue.report,delay_open:0 +msgid "Avg. Delay to Open" +msgstr "Просечно време на доцнење до отварање" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +msgid "Group By..." +msgstr "Групирај по..." + +#. module: project_issue +#: field:project.issue,working_hours_open:0 +msgid "Working Hours to Open the Issue" +msgstr "Работни часови за отварање на проблемот" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_started +msgid "Issue started" +msgstr "Проблемот е започнат" + +#. module: project_issue +#: field:project.issue,date_open:0 +msgid "Opened" +msgstr "Отворено" + +#. module: project_issue +#: field:project.issue.report,opening_date:0 +msgid "Date of Opening" +msgstr "Датум на отварање" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "March" +msgstr "Март" + +#. module: project_issue +#: field:project.issue,progress:0 +msgid "Progress (%)" +msgstr "Напредок (%)" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,message_unread:0 +msgid "Unread Messages" +msgstr "Непрочитани Пораки" + +#. module: project_issue +#: field:project.issue,company_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,company_id:0 +msgid "Company" +msgstr "Компанија" + +#. module: project_issue +#: field:project.issue,email_cc:0 +msgid "Watchers Emails" +msgstr "Мејлови на набљудувачите" + +#. module: project_issue +#: help:project.issue,kanban_state:0 +msgid "" +"A Issue's kanban state indicates special situations affecting it:\n" +" * Normal is the default situation\n" +" * Blocked indicates something is preventing the progress of this issue\n" +" * Ready for next stage indicates the issue is ready to be pulled to the " +"next stage" +msgstr "" + +#. module: project_issue +#: help:project.issue,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "Доколку е штиклирано, новите пораки го бараат вашето вниманите." + +#. module: project_issue +#: help:account.analytic.account,use_issues:0 +msgid "Check this field if this project manages issues" +msgstr "Означи го ова поле доколку проектот управува со проблемите" + +#. module: project_issue +#: field:project.issue,day_open:0 +msgid "Days to Open" +msgstr "Денови до отварање" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "" +"You cannot escalate this issue.\n" +"The relevant Project has not configured the Escalation Project!" +msgstr "" + +#. module: project_issue +#: constraint:project.project:0 +msgid "Error! You cannot assign escalation to the same project!" +msgstr "Грешка! Не можете да назначите ескалација на истиот проект!" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Highest" +msgstr "Највисоко" + +#. module: project_issue +#: help:project.issue,inactivity_days:0 +msgid "Difference in days between last action and current date" +msgstr "Разлика во денови помеѓу последната акција и сегашниот датум" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,day:0 +msgid "Day" +msgstr "Ден" + +#. module: project_issue +#: field:project.issue,days_since_creation:0 +msgid "Days since creation date" +msgstr "Денови од датумот на креирање" + +#. module: project_issue +#: field:project.issue,task_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,task_id:0 +msgid "Task" +msgstr "Задача" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_project_issue_stage +msgid "Issue Stage Changed" +msgstr "Фазата на проблемот е променета" + +#. module: project_issue +#: field:project.issue,message_ids:0 +msgid "Messages" +msgstr "Пораки" + +#. module: project_issue +#: field:project.issue,inactivity_days:0 +msgid "Days since last action" +msgstr "Денови од последната акција" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_project +#: view:project.issue:0 +#: field:project.issue,project_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,project_id:0 +msgid "Project" +msgstr "Проект" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.project_issue_categ_act0 +msgid "" +"

\n" +" Click to report a new issue.\n" +"

\n" +" The OpenERP issues tacker allows you to efficiantly manage " +"things\n" +" like internal requests, software development bugs, customer\n" +" complaints, project troubles, material breakdowns, etc.\n" +"

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

\n" +" Кликни за соопштување на нов проблем.\n" +"

\n" +" OpenERP тракерот за проблеми ви овозможува ефикасно менаџирање " +"на работи\n" +" како внатрешни барања, софтверски и развојни багови, жалби од " +"клиенти,\n" +" проблеми со проектот, материјални дефекти, итн.\n" +"

\n" +" " + +#. module: project_issue +#: selection:project.issue,state:0 +#: selection:project.issue.report,state:0 +msgid "Cancelled" +msgstr "Откажано" + +#. module: project_issue +#: field:project.issue,description:0 +msgid "Private Note" +msgstr "Приватна белешка" + +#. module: project_issue +#: field:project.issue.report,date_closed:0 +msgid "Date of Closing" +msgstr "Датум на затварање" + +#. module: project_issue +#: view:project.issue:0 +msgid "Issue Tracker Search" +msgstr "Пребарување на тракерот за проблеми" + +#. module: project_issue +#: field:project.issue,color:0 +msgid "Color Index" +msgstr "Индекс на боја" + +#. module: project_issue +#: field:project.issue.report,working_hours_open:0 +msgid "Avg. Working Hours to Open" +msgstr "Просечни работни часови за отварање" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_account_analytic_account +msgid "Analytic Account" +msgstr "Аналитичка сметка" + +#. module: project_issue +#: help:project.issue,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 "" +"Прикажува резиме на конверзација (број на пораки, ...). Ова резиме е " +"директно во html формат со цел да биде вметнато во kanban преглед." + +#. module: project_issue +#: help:project.project,project_escalation_id:0 +msgid "" +"If any issue is escalated from the current Project, it will be listed under " +"the project selected here." +msgstr "" +"Доколку некој проблем е ескалиран од моменталниот проект, тој ќе биде " +"прикажан под проектот означен овде." + +#. module: project_issue +#: view:project.issue:0 +msgid "Extra Info" +msgstr "Додатни информации" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "Предупредување!" + +#. module: project_issue +#: view:project.issue:0 +msgid "Edit..." +msgstr "Уреди..." + +#. module: project_issue +#: view:project.issue:0 +msgid "Responsible" +msgstr "Одговорен" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "Проблемот е блокиран" + +#. module: project_issue +#: view:project.issue:0 +msgid "Statistics" +msgstr "Статистики" + +#. module: project_issue +#: field:project.issue,kanban_state:0 +msgid "Kanban State" +msgstr "Kanban состојба" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:366 +#, python-format +msgid "Project issue converted to task." +msgstr "Проблемот со проектот е конвертиран во задача." + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,priority:0 +#: view:project.issue.report:0 +#: field:project.issue.report,priority:0 +msgid "Priority" +msgstr "Приоритет" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,version_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,version_id:0 +msgid "Version" +msgstr "Верзија" + +#. module: project_issue +#: field:project.issue,message_follower_ids:0 +msgid "Followers" +msgstr "Пратители" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +msgid "New" +msgstr "Ново" + +#. module: project_issue +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" + +#. module: project_issue +#: field:project.issue,email_from:0 +msgid "Email" +msgstr "Е-пошта" + +#. module: project_issue +#: field:project.issue,channel_id:0 +#: field:project.issue.report,channel_id:0 +msgid "Channel" +msgstr "Канал" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Lowest" +msgstr "Најниско" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:388 +#, python-format +msgid "%s (copy)" +msgstr "%s (копија)" + +#. module: project_issue +#: view:project.issue:0 +msgid "Unassigned Issues" +msgstr "Недоделени проблеми" + +#. module: project_issue +#: field:project.issue,create_date:0 +#: view:project.issue.report:0 +#: field:project.issue.report,creation_date:0 +msgid "Creation Date" +msgstr "Датум на креирање" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.project_issue_version_action +#: model:ir.ui.menu,name:project_issue.menu_project_issue_version_act +msgid "Versions" +msgstr "Верзии" + +#. module: project_issue +#: view:project.issue:0 +msgid "To Do Issues" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue_version +msgid "project.issue.version" +msgstr "project.issue.version" + +#. module: project_issue +#: field:project.config.settings,fetchmail_issue:0 +msgid "Create issues from an incoming email account " +msgstr "Креирај проблеми од сметка на влезна е-пошта " + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +msgid "Done" +msgstr "Завршено" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "July" +msgstr "Јули" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Овој извештај за проблемите на проектот ви овозможува да го анализирате " +"квалитетот на вашата поддршка или услугите после продажбата. Може да ги " +"следите проглемите по старост. Може да го анализирате потребното време за да " +"се отвори или затвори проблемот, бројот на разменети е-пошти и просечното " +"време потрошено по проблем." + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,stage_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,stage_id:0 +msgid "Stage" +msgstr "Етапа" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.action_project_issue_report +#: model:ir.ui.menu,name:project_issue.menu_project_issue_report_tree +#: view:project.issue.report:0 +msgid "Issues Analysis" +msgstr "Анализи на проблеми" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:516 +#, python-format +msgid "No Subject" +msgstr "Без тема" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.action_view_my_project_issue_tree +msgid "My Project Issues" +msgstr "Проблеми со мојот проект" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,partner_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,partner_id:0 +msgid "Contact" +msgstr "Контакт" + +#. module: project_issue +#: view:project.issue:0 +msgid "Delete" +msgstr "Избриши" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:371 +#, python-format +msgid "Tasks" +msgstr "Задачи" + +#. module: project_issue +#: field:project.issue.report,nbr:0 +msgid "# of Issues" +msgstr "# на проблеми" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "September" +msgstr "Септември" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "December" +msgstr "Декември" + +#. module: project_issue +#: field:project.issue,categ_ids:0 +msgid "Tags" +msgstr "Ознаки" + +#. module: project_issue +#: view:project.issue:0 +msgid "Issue Tracker Tree" +msgstr "Дрво на тракерот на проблеми" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_01 +msgid "Little problem" +msgstr "Мал проблем" + +#. module: project_issue +#: view:project.project:0 +msgid "creates" +msgstr "креира" + +#. module: project_issue +#: field:project.issue,write_date:0 +msgid "Update Date" +msgstr "Ажурирај датум" + +#. module: project_issue +#: view:project.issue:0 +msgid "Project:" +msgstr "Проект:" + +#. module: project_issue +#: view:project.issue:0 +msgid "Open Features" +msgstr "Отвори карактеристики" + +#. module: project_issue +#: field:project.issue,date_action_next:0 +msgid "Next Action" +msgstr "Следна операција" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,kanban_state:0 +msgid "Blocked" +msgstr "Блокирано" + +#. module: project_issue +#: field:project.issue,user_email:0 +msgid "User Email" +msgstr "Е-пошта на корисник" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "#Number of Project Issues" +msgstr "#Број на проблеми на проектот" + +#. module: project_issue +#: help:project.issue,channel_id:0 +msgid "Communication channel." +msgstr "Комуникационен канал" + +#. module: project_issue +#: help:project.issue,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" +"Овие емаил адреси ќе бидат додадени во полето CC на сите влезни и излезни е-" +"пошти за овој запис пред да биде испратен. Одделете ги емаил адресите со " +"запирка." + +#. module: project_issue +#: selection:project.issue.report,state:0 +msgid "Draft" +msgstr "Нацрт" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Low" +msgstr "Ниско" + +#. module: project_issue +#: field:project.issue,date_closed:0 +#: selection:project.issue.report,state:0 +msgid "Closed" +msgstr "Затворено" + +#. module: project_issue +#: field:project.issue.report,delay_close:0 +msgid "Avg. Delay to Close" +msgstr "Просечно време на доцнење до затварање" + +#. module: project_issue +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +#: selection:project.issue.report,state:0 +msgid "Pending" +msgstr "Чекање" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,state:0 +#: field:project.issue.report,state:0 +msgid "Status" +msgstr "Статус" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "#Project Issues" +msgstr "#Проблеми на проект" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "August" +msgstr "Август" + +#. module: project_issue +#: selection:project.issue,kanban_state:0 +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Normal" +msgstr "Нормално" + +#. module: project_issue +#: view:project.issue:0 +msgid "Category:" +msgstr "Категорија:" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "June" +msgstr "Јуни" + +#. module: project_issue +#: help:project.issue,message_ids:0 +msgid "Messages and communication history" +msgstr "Историја на пораки и комуникација" + +#. module: project_issue +#: view:project.issue:0 +msgid "New Issues" +msgstr "Нови проблеми" + +#. module: project_issue +#: field:project.issue,day_close:0 +msgid "Days to Close" +msgstr "Денови до затварање" + +#. module: project_issue +#: field:project.issue,message_is_follower:0 +msgid "Is a Follower" +msgstr "Е пратител" + +#. module: project_issue +#: help:project.issue,state:0 +msgid "" +"The status is set to 'Draft', when a case is created. " +"If the case is in progress the status is set to 'Open'. " +"When the case is over, the status is set to 'Done'. If " +"the case needs to be reviewed then the status is set " +"to 'Pending'." +msgstr "" +"Статусот е подесен на 'Нацрт' при креирање на случај. " +"Доколку случајот е во тек, статусот се подесува на 'Отворено'. " +" По завршувањето на случајот, статусот се подесува на 'Завршено'. " +" Доколку е потребно да се изврши проверка на случајот тогаш " +"статусот се подесува на 'Во исчекување'." + +#. module: project_issue +#: field:project.issue,active:0 +#: field:project.issue.version,active:0 +msgid "Active" +msgstr "Активен" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "November" +msgstr "Ноември" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:499 +#, python-format +msgid "Customer Email" +msgstr "Е-пошта на купувач" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "Search" +msgstr "Пребарувај" + +#. module: project_issue +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Месец на креирање" + +#. module: project_issue +#: help:project.issue,days_since_creation:0 +msgid "Difference in days between creation date and current date" +msgstr "Разлика во денови помеѓу датум на креирање и сегашен датум" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "January" +msgstr "Јануари" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature Tracker Tree" +msgstr "Дрво на тракерот на карактеристики" + +#. module: project_issue +#: help:project.issue,email_from:0 +msgid "These people will receive email." +msgstr "Овие лица ќе добијат е-пошта." + +#. module: project_issue +#: field:project.issue,message_summary:0 +msgid "Summary" +msgstr "Резиме" + +#. module: project_issue +#: field:project.issue,date:0 +msgid "Date" +msgstr "Датум" + +#. module: project_issue +#: field:project.issue,user_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,user_id:0 +msgid "Assigned to" +msgstr "Доделено на" + +#. module: project_issue +#: view:project.config.settings:0 +msgid "Configure" +msgstr "Конфигурирај" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_closed +msgid "Issue closed" +msgstr "Проблемот е затворен" + +#. module: project_issue +#: view:project.issue:0 +msgid "Current Features" +msgstr "Сегашни карактеристики" + +#. module: project_issue +#: view:project.issue.version:0 +msgid "Issue Version" +msgstr "Верзија на проблемот" + +#. module: project_issue +#: field:project.issue.version,name:0 +msgid "Version Number" +msgstr "Број на верзија" + +#. module: project_issue +#: selection:project.issue.report,state:0 +msgid "Open" +msgstr "Отвори" + +#. module: project_issue +#: field:account.analytic.account,use_issues:0 +#: model:ir.actions.act_window,name:project_issue.act_project_project_2_project_issue_all +#: model:ir.actions.act_window,name:project_issue.project_issue_categ_act0 +#: model:ir.ui.menu,name:project_issue.menu_project_confi +#: model:ir.ui.menu,name:project_issue.menu_project_issue_track +#: view:project.issue:0 +#: view:project.project:0 +msgid "Issues" +msgstr "Проблеми" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +msgid "In Progress" +msgstr "Во тек" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +msgid "To Do" +msgstr "Да се направи" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue +#: view:project.issue.report:0 +msgid "Project Issue" +msgstr "Проблем на проект" + +#. module: project_issue +#: view:project.issue:0 +msgid "Add an internal note..." +msgstr "Додади внатрешна белешка..." + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "Откажи проблем" + +#. module: project_issue +#: help:project.issue,progress:0 +msgid "Computed as: Time Spent / Total Time." +msgstr "Пресметано како: Потрошено време / Целосно време" + +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "Незатворен проблем" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,kanban_state:0 +msgid "Ready for next stage" +msgstr "Подготвено за следно ниво" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Октомври" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,section_id:0 +msgid "Sale Team" +msgstr "Продажбен тим" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +#: field:project.issue.report,month:0 +msgid "Month" +msgstr "Месец" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,name:0 +#: view:project.project:0 +msgid "Issue" +msgstr "Проблем" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_02 +msgid "PBCK" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature Tracker Search" +msgstr "Пребарај тракер на карактеристики" + +#. module: project_issue +#: view:project.issue:0 +msgid "Description" +msgstr "Опис" + +#. module: project_issue +#: field:project.issue,section_id:0 +msgid "Sales Team" +msgstr "Продажен тим" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "May" +msgstr "Мај" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_config_settings +msgid "project.config.settings" +msgstr "project.config.settings" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_closed +#: model:mail.message.subtype,name:project_issue.mt_project_issue_closed +msgid "Issue Closed" +msgstr "Проблемот е затворен" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,email:0 +msgid "# Emails" +msgstr "# Е-пошти" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_new +#: model:mail.message.subtype,name:project_issue.mt_project_issue_new +msgid "Issue Created" +msgstr "Проблемот е креиран" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" +msgstr "Купувач" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "February" +msgstr "Февруари" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_stage +#: model:mail.message.subtype,description:project_issue.mt_project_issue_stage +msgid "Stage changed" +msgstr "Променета етапа" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature description" +msgstr "Опис на карактеристика" + +#. module: project_issue +#: field:project.project,project_escalation_id:0 +msgid "Project Escalation" +msgstr "Ескалирање на проект" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.project_issue_version_action +msgid "" +"

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

\n" +" Define here the different versions of your products on " +"which\n" +" you can work on issues.\n" +"

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

\n" +" Кликни за додавање на нова верзија.\n" +"

\n" +" Овде дефинирајте ги различинте верзии на производите на чии " +"проблеми\n" +" ќе работите.\n" +"

\n" +" " + +#. module: project_issue +#: help:project.issue,section_id:0 +msgid "" +"Sales team to which Case belongs to. Define " +"Responsible user and Email account for mail gateway." +msgstr "" +"Продажен тим на кого му припаѓа предметот. " +"Дефинирајте Одговорен корисник и сметка за е-пошта за портата за пошта." + +#. module: project_issue +#: view:board.board:0 +msgid "My Issues" +msgstr "Мои проблеми" + +#. module: project_issue +#: help:project.issue.report,delay_open:0 +msgid "Number of Days to open the project issue." +msgstr "Број на денови до отварањето на проблемот на проектот." + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "April" +msgstr "Април" + +#. module: project_issue +#: view:project.issue:0 +msgid "⇒ Escalate" +msgstr "⇒ Ескалирај" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_new +msgid "Issue created" +msgstr "Проблемот е креиран" + +#. module: project_issue +#: field:project.issue,working_hours_close:0 +msgid "Working Hours to Close the Issue" +msgstr "Работни часови до затварање на проблемот" + +#. module: project_issue +#: field:project.issue,id:0 +msgid "ID" +msgstr "ID" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_blocked +msgid "Issue blocked" +msgstr "Проблемот е блокиран" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue_report +msgid "project.issue.report" +msgstr "project.issue.report" + +#. module: project_issue +#: help:project.issue.report,delay_close:0 +msgid "Number of Days to close the project issue" +msgstr "Број на денови до затварање на проблемот на проектот" + +#. module: project_issue +#: field:project.issue.report,working_hours_close:0 +msgid "Avg. Working Hours to Close" +msgstr "Просечен број на работни часови за затварање" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_stage +msgid "Stage Changed" +msgstr "Етапата е променета" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "High" +msgstr "Високо" + +#. module: project_issue +#: field:project.issue,date_deadline:0 +msgid "Deadline" +msgstr "Краен рок" + +#. module: project_issue +#: field:project.issue,date_action_last:0 +msgid "Last Action" +msgstr "Последна активност" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,name:0 +msgid "Year" +msgstr "Година" + +#. module: project_issue +#: field:project.issue,duration:0 +msgid "Duration" +msgstr "Времетраење" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_started +#: model:mail.message.subtype,name:project_issue.mt_project_issue_started +msgid "Issue Started" +msgstr "Проблемот е започнат" + +#~ msgid "Issue Categories" +#~ msgstr "Категорија на проблеми" + +#~ msgid "Categories" +#~ msgstr "Категории" + +#~ msgid "Feature Requests" +#~ msgstr "Идни барања" + +#~ msgid "Maintenance" +#~ msgstr "Одржување" + +#~ msgid "unknown" +#~ msgstr "непознато" + +#~ msgid "Cancel" +#~ msgstr "Откажи" + +#~ msgid "References" +#~ msgstr "Референци" diff --git a/addons/project_issue/i18n/mn.po b/addons/project_issue/i18n/mn.po index 82ffa04466f..4c16470bcd5 100644 --- a/addons/project_issue/i18n/mn.po +++ b/addons/project_issue/i18n/mn.po @@ -7,20 +7,20 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-02-20 02:46+0000\n" -"Last-Translator: Altangerel \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-07 12:36+0000\n" +"Last-Translator: gobi \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-02-20 05:29+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 msgid "Deadly bug" -msgstr "" +msgstr "Үхлийн буг" #. module: project_issue #: help:project.config.settings,fetchmail_issue:0 @@ -28,6 +28,8 @@ msgid "" "Allows you to configure your incoming mail server, and create issues from " "incoming emails." msgstr "" +"Ирэх мэйлийн серверийг тохируулж ирсэн имэйлээс асуудал үүсгэх боломжийг " +"олгодог." #. module: project_issue #: field:project.issue.report,delay_open:0 @@ -48,7 +50,7 @@ msgstr "Асуудлыг Нээх Ажлын Цаг" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_started msgid "Issue started" -msgstr "" +msgstr "Асуудал эхэлсэн" #. module: project_issue #: field:project.issue,date_open:0 @@ -106,7 +108,7 @@ msgstr "Хэрэв тэмдэглэгдсэн бол шинэ зурвас нь #. module: project_issue #: help:account.analytic.account,use_issues:0 msgid "Check this field if this project manages issues" -msgstr "" +msgstr "Хэрэв энэ төсөл асуудлын менежмент хийх бол энэ талбарыг сонго" #. module: project_issue #: field:project.issue,day_open:0 @@ -114,7 +116,7 @@ msgid "Days to Open" msgstr "Нээх хүртэлх өдөр" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -160,7 +162,7 @@ msgstr "Даалгавар" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_project_issue_stage msgid "Issue Stage Changed" -msgstr "" +msgstr "Асуудлын Үе Өөрчлөгдсөн" #. module: project_issue #: field:project.issue,message_ids:0 @@ -204,7 +206,7 @@ msgstr "Цуцлагдсан" #. module: project_issue #: field:project.issue,description:0 msgid "Private Note" -msgstr "" +msgstr "Хувийн Тэмдэглэл" #. module: project_issue #: field:project.issue.report,date_closed:0 @@ -255,17 +257,10 @@ msgid "Extra Info" msgstr "Нэмэлт мэдээлэл" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." -msgstr "" -"Энэ тайлан нь таны дэмжлэгийн үйлчилгээ болон борлуулалтын дараах " -"үйлчилгээний чанарыг шинжлэх боломжийг олгодог. Асуудыг та насаар нь хөтлөх " -"боломжтой. Нээх, хаахад шаардагдсан дундаж хугаца, солилцсон имэйлийн тоо, " -"зарцуулсан дундаж цаг зэрэгийг шинжлэх боломжтой." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "Анхааруулга!" #. module: project_issue #: view:project.issue:0 @@ -277,6 +272,12 @@ msgstr "Засах..." msgid "Responsible" msgstr "Хариуцагч" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "Асуудал Хоригдсон" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -288,10 +289,10 @@ msgid "Kanban State" msgstr "Канбан Төлөв" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." -msgstr "" +msgstr "Төслийн асуудал даалгавар руу хөрвүүлэгдсэн." #. module: project_issue #: view:project.issue:0 @@ -322,9 +323,9 @@ msgid "New" msgstr "Шинэ" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Асуудлын Ангилал" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -344,7 +345,7 @@ msgid "Lowest" msgstr "Хамгийн Бага" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "%s (хуулбар)" @@ -380,7 +381,7 @@ msgstr "project.issue.version" #. module: project_issue #: field:project.config.settings,fetchmail_issue:0 msgid "Create issues from an incoming email account " -msgstr "" +msgstr "Ирэх имэйлийн хаягаас асуудал үүсгэх " #. module: project_issue #: view:project.issue:0 @@ -395,9 +396,17 @@ msgid "July" msgstr "7-р сар" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Ангилалууд" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Энэ тайлан нь таны дэмжлэгийн үйлчилгээ болон борлуулалтын дараах " +"үйлчилгээний чанарыг шинжлэх боломжийг олгодог. Асуудыг та насаар нь хөтлөх " +"боломжтой. Нээх, хаахад шаардагдсан дундаж хугаца, солилцсон имэйлийн тоо, " +"зарцуулсан дундаж цаг зэрэгийг шинжлэх боломжтой." #. module: project_issue #: view:project.issue:0 @@ -415,7 +424,7 @@ msgid "Issues Analysis" msgstr "Асуудлын Шинжилгээ" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "Гарчиг үгүй" @@ -439,7 +448,7 @@ msgid "Delete" msgstr "Устга" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Даалгаврууд" @@ -462,7 +471,7 @@ msgstr "12-р сар" #. module: project_issue #: field:project.issue,categ_ids:0 msgid "Tags" -msgstr "Таагууд" +msgstr "Пайзууд" #. module: project_issue #: view:project.issue:0 @@ -472,17 +481,12 @@ msgstr "Асуудал Хөтлөлтийн Мөчир" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_01 msgid "Little problem" -msgstr "" +msgstr "Жижиг асуудал" #. module: project_issue #: view:project.project:0 msgid "creates" -msgstr "" - -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Онцлог хүсэх" +msgstr "үүсгэнэ" #. module: project_issue #: field:project.issue,write_date:0 @@ -492,7 +496,7 @@ msgstr "Шинэчилсэн огноо" #. module: project_issue #: view:project.issue:0 msgid "Project:" -msgstr "" +msgstr "Төсөл:" #. module: project_issue #: view:project.issue:0 @@ -535,11 +539,6 @@ msgstr "" "Энэ бичлэгт харгалзах орох, гарах бүх э-мэйлийг илгээхийн өмнө СС талбарт " "эдгээр э-мэйл хаягуудыг нэмж өгнө. Э-мэйл хаягуудыг таслалаар тусгаарлана." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Маллагаа" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -593,11 +592,6 @@ msgstr "8-р сар" msgid "Normal" msgstr "Энгийн" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "үл мэдэгдэх" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -654,10 +648,10 @@ msgid "November" msgstr "11-р сар" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "Анхааруулга!" +msgid "Customer Email" +msgstr "" #. module: project_issue #: view:project.issue.report:0 @@ -665,9 +659,9 @@ msgid "Search" msgstr "Хайх" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "10-р сар" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Үүсгэсэн сар" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -714,7 +708,7 @@ msgstr "Тохируулга" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_closed msgid "Issue closed" -msgstr "" +msgstr "Асуудал хаагдсан" #. module: project_issue #: view:project.issue:0 @@ -731,11 +725,6 @@ msgstr "Асуудлын Хувилбар" msgid "Version Number" msgstr "Хувилбарийн Дугаар" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Цуцлах" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -772,19 +761,34 @@ msgstr "Төслийн Асуудал" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Үүсгэсэн сар" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Бодолт: Зарцуулсан хугацаа / Нийт хугацаа." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" -msgstr "" +msgstr "Дараагийн үед бэлэн" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "10-р сар" #. module: project_issue #: view:project.issue.report:0 @@ -840,7 +844,7 @@ msgstr "project.config.settings" #: model:mail.message.subtype,name:project_issue.mt_issue_closed #: model:mail.message.subtype,name:project_issue.mt_project_issue_closed msgid "Issue Closed" -msgstr "" +msgstr "Асуудал Хаагдсан" #. module: project_issue #: view:project.issue.report:0 @@ -852,12 +856,12 @@ msgstr "Имэйл #" #: model:mail.message.subtype,name:project_issue.mt_issue_new #: model:mail.message.subtype,name:project_issue.mt_project_issue_new msgid "Issue Created" -msgstr "" +msgstr "Асуудал Үүссэн" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -911,7 +915,7 @@ msgstr "Миний асуудлууд" #. module: project_issue #: help:project.issue.report,delay_open:0 msgid "Number of Days to open the project issue." -msgstr "" +msgstr "Асуудлыг нээх хүртэлэх хоногийн тоо" #. module: project_issue #: selection:project.issue.report,month:0 @@ -921,17 +925,12 @@ msgstr "4-р сар" #. module: project_issue #: view:project.issue:0 msgid "⇒ Escalate" -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Сурвалж" +msgstr "⇒ Томруулах" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" -msgstr "" +msgstr "Асуудал үүсссэн" #. module: project_issue #: field:project.issue,working_hours_close:0 @@ -946,7 +945,7 @@ msgstr "ID" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_blocked msgid "Issue blocked" -msgstr "" +msgstr "Асуудал хоригдсон" #. module: project_issue #: model:ir.model,name:project_issue.model_project_issue_report @@ -956,7 +955,7 @@ msgstr "project.issue.report" #. module: project_issue #: help:project.issue.report,delay_close:0 msgid "Number of Days to close the project issue" -msgstr "Төслийн даалгаврыг хаах хүртэл өдрийн тоо" +msgstr "Төслийн даалгаврыг хаах хүртэлх хоногийн тоо" #. module: project_issue #: field:project.issue.report,working_hours_close:0 @@ -999,4 +998,25 @@ msgstr "Үргэлжлэх хугацаа" #: model:mail.message.subtype,name:project_issue.mt_issue_started #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" -msgstr "" +msgstr "Асуудал эхэлсэн" + +#~ msgid "Maintenance" +#~ msgstr "Маллагаа" + +#~ msgid "Issue Categories" +#~ msgstr "Асуудлын Ангилал" + +#~ msgid "Categories" +#~ msgstr "Ангилалууд" + +#~ msgid "Feature Requests" +#~ msgstr "Онцлог хүсэх" + +#~ msgid "Cancel" +#~ msgstr "Цуцлах" + +#~ msgid "References" +#~ msgstr "Сурвалж" + +#~ msgid "unknown" +#~ msgstr "үл мэдэгдэх" diff --git a/addons/project_issue/i18n/nb.po b/addons/project_issue/i18n/nb.po index cdbcbd08888..c485af12542 100644 --- a/addons/project_issue/i18n/nb.po +++ b/addons/project_issue/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -249,12 +249,9 @@ msgid "Extra Info" msgstr "Ekstra informasjon" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -267,6 +264,12 @@ msgstr "" msgid "Responsible" msgstr "Ansvarlig" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -278,7 +281,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -312,8 +315,8 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" msgstr "" #. module: project_issue @@ -334,7 +337,7 @@ msgid "Lowest" msgstr "Laveste" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -385,9 +388,13 @@ msgid "July" msgstr "Juli" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Kategorier" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" #. module: project_issue #: view:project.issue:0 @@ -405,7 +412,7 @@ msgid "Issues Analysis" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -429,7 +436,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Oppgaver" @@ -469,11 +476,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -523,11 +525,6 @@ msgid "" "addresses with a comma" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Velikehold" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -581,11 +578,6 @@ msgstr "August" msgid "Normal" msgstr "Normal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -638,9 +630,9 @@ msgid "November" msgstr "November" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -649,9 +641,9 @@ msgid "Search" msgstr "Søk" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Oktober" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -715,11 +707,6 @@ msgstr "" msgid "Version Number" msgstr "Versjonsnummer" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Avbryt" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -756,7 +743,12 @@ msgstr "" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -764,12 +756,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Oktober" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -839,9 +841,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -905,11 +907,6 @@ msgstr "" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -982,3 +979,12 @@ msgstr "" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "Velikehold" + +#~ msgid "Categories" +#~ msgstr "Kategorier" + +#~ msgid "Cancel" +#~ msgstr "Avbryt" diff --git a/addons/project_issue/i18n/nl.po b/addons/project_issue/i18n/nl.po index 151b0f81eed..69b7a91f464 100644 --- a/addons/project_issue/i18n/nl.po +++ b/addons/project_issue/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-02-10 15:28+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-05-17 11:07+0000\n" "Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-11 05:35+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -28,6 +28,8 @@ msgid "" "Allows you to configure your incoming mail server, and create issues from " "incoming emails." msgstr "" +"Geeft u de mogelijkheid om een inkomende mailserver te configureren, en " +"issues aan te maken van inkomende e-mails." #. module: project_issue #: field:project.issue.report,delay_open:0 @@ -97,6 +99,12 @@ msgid "" " * Ready for next stage indicates the issue is ready to be pulled to the " "next stage" msgstr "" +"Een kanban issue status geeft een speciale situatie aan. De status kan " +"zijn:\n" +" * Normaal, de standaard situatie\n" +" * Geblokkeerd, geeft aan dat iets de voortgang van de issue blokkeert\n" +" * Gereed voor volgende fase, geeft aan dat de issue gereed is om de " +"verschuiven naar de volgende fase" #. module: project_issue #: help:project.issue,message_unread:0 @@ -107,6 +115,8 @@ msgstr "Indien aangevinkt zullen nieuwe berichten uw aandacht vragen." #: help:account.analytic.account,use_issues:0 msgid "Check this field if this project manages issues" msgstr "" +"Vink deze optie aan als dit project wordt gebruikt voor het beheren van " +"issues." #. module: project_issue #: field:project.issue,day_open:0 @@ -114,7 +124,7 @@ msgid "Days to Open" msgstr "Dagen tot openen" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -194,6 +204,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik hier voor het rapporteren van een nieuwe issue.\n" +"

\n" +" De OpenERP issues tracker geeft u de mogelijkheid om effectief, " +"zaken als\n" +" interne verzoeken, software bugs, klant klachten, " +"projectproblemen, etc.\n" +" te beheren.\n" +"

\n" +" " #. module: project_issue #: selection:project.issue,state:0 @@ -256,17 +276,10 @@ msgid "Extra Info" msgstr "Extra info" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." -msgstr "" -"Dit overzicht van project issues laat u de kwaliteit van uw support of " -"nazorg analyseren. U kunt de isuue op leeftijd volgen. U kunt de tijd " -"analyseren die nodig is voor het openen en sluiten van een issue, het aantal " -"uitgewisselde emails en de gemiddelde besteedde tijd per issue." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "Waarschuwing!" #. module: project_issue #: view:project.issue:0 @@ -278,6 +291,12 @@ msgstr "Bewerken..." msgid "Responsible" msgstr "Verantwoordelijke" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "Issue geblokkeerd" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -289,7 +308,7 @@ msgid "Kanban State" msgstr "Kanban Status" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "Project issue geconverteerd naar taak." @@ -323,9 +342,9 @@ msgid "New" msgstr "Nieuw" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Issue categorieèn" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" #. module: project_issue #: field:project.issue,email_from:0 @@ -345,7 +364,7 @@ msgid "Lowest" msgstr "Laagste" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "%s (kopie)" @@ -381,7 +400,7 @@ msgstr "project.issue.version" #. module: project_issue #: field:project.config.settings,fetchmail_issue:0 msgid "Create issues from an incoming email account " -msgstr "Maak issues van een inkomende e-mail account " +msgstr "Maak issues van een inkomende e-mail " #. module: project_issue #: view:project.issue:0 @@ -396,9 +415,17 @@ msgid "July" msgstr "Juli" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Categorieën" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Dit overzicht van project issues laat u de kwaliteit van uw support of " +"nazorg analyseren. U kunt de isuue op leeftijd volgen. U kunt de tijd " +"analyseren die nodig is voor het openen en sluiten van een issue, het aantal " +"uitgewisselde emails en de gemiddelde besteedde tijd per issue." #. module: project_issue #: view:project.issue:0 @@ -416,7 +443,7 @@ msgid "Issues Analysis" msgstr "Issues analyse" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "Geen onderwerp" @@ -440,7 +467,7 @@ msgid "Delete" msgstr "Verwijder" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Taken" @@ -480,11 +507,6 @@ msgstr "Klein probleem" msgid "creates" msgstr "Aanmaken" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Verzoeken voor uitbreiding" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -537,11 +559,6 @@ msgstr "" "uitgaande emails voor dit record voorafgaand aan versturen. Scheidt " "verschillende email adressen met een komma." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Onderhoud" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -595,11 +612,6 @@ msgstr "Augustus" msgid "Normal" msgstr "Normaal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "onbekend" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -656,10 +668,10 @@ msgid "November" msgstr "November" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "Waarschuwing!" +msgid "Customer Email" +msgstr "Klant email" #. module: project_issue #: view:project.issue.report:0 @@ -667,9 +679,9 @@ msgid "Search" msgstr "Zoeken" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Oktober" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Aanmaak maand" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -733,11 +745,6 @@ msgstr "Issue versie" msgid "Version Number" msgstr "Versienummer" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Annuleren" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -774,19 +781,34 @@ msgstr "Project issue" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Aanmaak maand" +msgid "Add an internal note..." +msgstr "Voeg interne notitie toe..." + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "Issue annuleren" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Berekend als: Gebruikte tijd / totale tijd" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "Niet afgesloten issues" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" -msgstr "Gereed voor vogende fase" +msgstr "Gereed voor volgende fase" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Oktober" #. module: project_issue #: view:project.issue.report:0 @@ -857,10 +879,10 @@ msgid "Issue Created" msgstr "Issue aangemaakt" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" -msgstr "Issue geblokkeerd" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" +msgstr "Klant" #. module: project_issue #: selection:project.issue.report,month:0 @@ -895,6 +917,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik hier voor het aanmaken van een nieuwe versie.\n" +"

\n" +" definieer hier de verschillende versies van uw product, " +"waarvan\n" +" u issues verwerkt.\n" +"

\n" +" " #. module: project_issue #: help:project.issue,section_id:0 @@ -925,11 +955,6 @@ msgstr "April" msgid "⇒ Escalate" msgstr "⇒ Escaleren" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Referenties" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -1002,3 +1027,24 @@ msgstr "Tijdsduur" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "Issue gestart" + +#~ msgid "Categories" +#~ msgstr "Categorieën" + +#~ msgid "Feature Requests" +#~ msgstr "Verzoeken voor uitbreiding" + +#~ msgid "Cancel" +#~ msgstr "Annuleren" + +#~ msgid "References" +#~ msgstr "Referenties" + +#~ msgid "Issue Categories" +#~ msgstr "Issue categorieèn" + +#~ msgid "Maintenance" +#~ msgstr "Onderhoud" + +#~ msgid "unknown" +#~ msgstr "onbekend" diff --git a/addons/project_issue/i18n/nl_BE.po b/addons/project_issue/i18n/nl_BE.po index b5fc01e6d08..a108d76d1e9 100644 --- a/addons/project_issue/i18n/nl_BE.po +++ b/addons/project_issue/i18n/nl_BE.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Dagen tot openen" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -253,18 +253,10 @@ msgid "Extra Info" msgstr "Extra informatie" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" -"Met dit rapport over probleemmeldingen kunt u de kwaliteit van uw support of " -"klantendienst analyseren. U kunt problemen per ouderdom opvolgen. U kunt de " -"tijd analyseren die nodig is om een probleem te openen of te sluiten, het " -"aantal uitgewisselde e-mails en de gemiddelde tijd die aan een probleem " -"wordt besteed." #. module: project_issue #: view:project.issue:0 @@ -276,6 +268,12 @@ msgstr "" msgid "Responsible" msgstr "Verantwoordelijke" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -287,7 +285,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -321,9 +319,9 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Probleemcategorieën" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -343,7 +341,7 @@ msgid "Lowest" msgstr "Laagste" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -394,9 +392,18 @@ msgid "July" msgstr "Juli" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Categorieën" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Met dit rapport over probleemmeldingen kunt u de kwaliteit van uw support of " +"klantendienst analyseren. U kunt problemen per ouderdom opvolgen. U kunt de " +"tijd analyseren die nodig is om een probleem te openen of te sluiten, het " +"aantal uitgewisselde e-mails en de gemiddelde tijd die aan een probleem " +"wordt besteed." #. module: project_issue #: view:project.issue:0 @@ -414,7 +421,7 @@ msgid "Issues Analysis" msgstr "Probleemanalyse" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -438,7 +445,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Taken" @@ -478,11 +485,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Feature" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -535,11 +537,6 @@ msgstr "" "uitgaande mails voor dit record. Verschillende adressen kunnen worden " "gescheiden door een komma." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Onderhoud" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -593,11 +590,6 @@ msgstr "Augustus" msgid "Normal" msgstr "Normaal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -650,9 +642,9 @@ msgid "November" msgstr "November" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -661,9 +653,9 @@ msgid "Search" msgstr "Zoeken" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Oktober" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -727,11 +719,6 @@ msgstr "Probleemversie" msgid "Version Number" msgstr "Versienummer" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Annuleren" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -768,7 +755,12 @@ msgstr "Projectprobleem" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -776,12 +768,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "Berekend als: Bestede tijd / totale tijd" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Oktober" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -851,9 +853,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -919,11 +921,6 @@ msgstr "April" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Referenties" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -996,3 +993,21 @@ msgstr "Duur" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "Onderhoud" + +#~ msgid "Issue Categories" +#~ msgstr "Probleemcategorieën" + +#~ msgid "Categories" +#~ msgstr "Categorieën" + +#~ msgid "Feature Requests" +#~ msgstr "Feature" + +#~ msgid "Cancel" +#~ msgstr "Annuleren" + +#~ msgid "References" +#~ msgstr "Referenties" diff --git a/addons/project_issue/i18n/pl.po b/addons/project_issue/i18n/pl.po index 500b2d82096..c474ad09456 100644 --- a/addons/project_issue/i18n/pl.po +++ b/addons/project_issue/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Dni do otwarcia" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -253,12 +253,9 @@ msgid "Extra Info" msgstr "Dodatkowe informacje" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -271,6 +268,12 @@ msgstr "" msgid "Responsible" msgstr "Odpowiedzialny" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -282,7 +285,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -316,9 +319,9 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Kategorie problemu" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -338,7 +341,7 @@ msgid "Lowest" msgstr "Najniższy" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -389,9 +392,13 @@ msgid "July" msgstr "Lipiec" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Kategorie" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" #. module: project_issue #: view:project.issue:0 @@ -409,7 +416,7 @@ msgid "Issues Analysis" msgstr "Analiza problemu" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -433,7 +440,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Zadania" @@ -473,11 +480,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Propozycja funkcjonalności" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -529,11 +531,6 @@ msgstr "" "Te adresy zostaną dodane do pola DW przy wysyłaniu i otrzymywaniu wiadomości " "dla tego rekordu. Przy wielu adresach oddzielaj je przecinkami." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -587,11 +584,6 @@ msgstr "Sierpień" msgid "Normal" msgstr "Zwykły" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -644,9 +636,9 @@ msgid "November" msgstr "Listopad" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -655,9 +647,9 @@ msgid "Search" msgstr "Wyszukiwanie" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Październik" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -721,11 +713,6 @@ msgstr "Wersja problemu" msgid "Version Number" msgstr "Numer wersji" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Anuluj" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -762,7 +749,12 @@ msgstr "Projekt rozwiązania problemu" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -770,12 +762,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "Obliczone jako: Czas przepracowany / Czas całkowity" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Październik" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -845,9 +847,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -913,11 +915,6 @@ msgstr "Kwiecień" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Odnośniki" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -990,3 +987,18 @@ msgstr "Czas trwania" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Issue Categories" +#~ msgstr "Kategorie problemu" + +#~ msgid "References" +#~ msgstr "Odnośniki" + +#~ msgid "Cancel" +#~ msgstr "Anuluj" + +#~ msgid "Categories" +#~ msgstr "Kategorie" + +#~ msgid "Feature Requests" +#~ msgstr "Propozycja funkcjonalności" diff --git a/addons/project_issue/i18n/project_issue.pot b/addons/project_issue/i18n/project_issue.pot index b11d1d8d378..d1705ef6f11 100644 --- a/addons/project_issue/i18n/project_issue.pot +++ b/addons/project_issue/i18n/project_issue.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -108,7 +108,7 @@ msgid "Days to Open" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "You cannot escalate this issue.\n" "The relevant Project has not configured the Escalation Project!" @@ -236,8 +236,9 @@ msgid "Extra Info" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "This report on the project issues allows you to analyse the quality of your support or after-sales services. You can track the issues per age. You can analyse the time required to open or close an issue, the number of email to exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -250,6 +251,12 @@ msgstr "" msgid "Responsible" msgstr "" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -261,7 +268,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -295,8 +302,8 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" msgstr "" #. module: project_issue @@ -317,7 +324,7 @@ msgid "Lowest" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -368,8 +375,8 @@ msgid "July" msgstr "" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "This report on the project issues allows you to analyse the quality of your support or after-sales services. You can track the issues per age. You can analyse the time required to open or close an issue, the number of email to exchange and the time spent on average by issues." msgstr "" #. module: project_issue @@ -388,7 +395,7 @@ msgid "Issues Analysis" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -412,7 +419,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "" @@ -452,11 +459,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -503,11 +505,6 @@ msgstr "" msgid "These email addresses will be added to the CC field of all inbound and outbound emails for this record before being sent. Separate multiple email addresses with a comma" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -561,11 +558,6 @@ msgstr "" msgid "Normal" msgstr "" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -613,9 +605,9 @@ msgid "November" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -624,8 +616,8 @@ msgid "Search" msgstr "" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" +#: view:project.issue:0 +msgid "Creation Month" msgstr "" #. module: project_issue @@ -690,11 +682,6 @@ msgstr "" msgid "Version Number" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -731,7 +718,12 @@ msgstr "" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -739,12 +731,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -814,9 +816,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -876,11 +878,6 @@ msgstr "" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" diff --git a/addons/project_issue/i18n/pt.po b/addons/project_issue/i18n/pt.po index 7602b0a906c..5378e9a28af 100644 --- a/addons/project_issue/i18n/pt.po +++ b/addons/project_issue/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Dias para abrir" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -253,17 +253,10 @@ msgid "Extra Info" msgstr "Informação Extra" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" -"Este relatório sobre as questões de projeto permite analisar a qualidade do " -"apoio ou serviços pós-venda. Pode acompanhar as questões por idade. Pode " -"analisar o tempo necessário para abrir ou fechar uma edição, o número de " -"email para trocar e o tempo gasto, em média, pelas questões." #. module: project_issue #: view:project.issue:0 @@ -275,6 +268,12 @@ msgstr "Editar..." msgid "Responsible" msgstr "Responsável" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -286,7 +285,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -320,9 +319,9 @@ msgid "New" msgstr "Novo" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Categorias das Questões" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -342,7 +341,7 @@ msgid "Lowest" msgstr "Menor" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "%s (cópia)" @@ -393,9 +392,17 @@ msgid "July" msgstr "Julho" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Categorias" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Este relatório sobre as questões de projeto permite analisar a qualidade do " +"apoio ou serviços pós-venda. Pode acompanhar as questões por idade. Pode " +"analisar o tempo necessário para abrir ou fechar uma edição, o número de " +"email para trocar e o tempo gasto, em média, pelas questões." #. module: project_issue #: view:project.issue:0 @@ -413,7 +420,7 @@ msgid "Issues Analysis" msgstr "Issues Analíses" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -437,7 +444,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Tarefas" @@ -477,11 +484,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Solicitações de recursos" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -534,11 +536,6 @@ msgstr "" "entrada e saída para este registo antes de ser enviado. Separe vários " "endereços de email com uma vírgula" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Manutenção" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -592,11 +589,6 @@ msgstr "Agosto" msgid "Normal" msgstr "Normal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "desconhecido" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -649,9 +641,9 @@ msgid "November" msgstr "Novembro" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -660,9 +652,9 @@ msgid "Search" msgstr "Pesquisar" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Outubro" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Mês de Criação" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -726,11 +718,6 @@ msgstr "Versão do Incidente" msgid "Version Number" msgstr "Número Versão" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Cancelar" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -767,20 +754,35 @@ msgstr "Incidente do Projeto" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Mês de Criação" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Calculado como: Tempo Passado/Tempo Total." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Outubro" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -850,9 +852,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -918,11 +920,6 @@ msgstr "Abril" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Referências" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -995,3 +992,24 @@ msgstr "Duração" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "Manutenção" + +#~ msgid "Categories" +#~ msgstr "Categorias" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" + +#~ msgid "References" +#~ msgstr "Referências" + +#~ msgid "Issue Categories" +#~ msgstr "Categorias das Questões" + +#~ msgid "Feature Requests" +#~ msgstr "Solicitações de recursos" + +#~ msgid "unknown" +#~ msgstr "desconhecido" diff --git a/addons/project_issue/i18n/pt_BR.po b/addons/project_issue/i18n/pt_BR.po index a806f2c7cee..efa25b62ec2 100644 --- a/addons/project_issue/i18n/pt_BR.po +++ b/addons/project_issue/i18n/pt_BR.po @@ -7,15 +7,16 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-16 13:23+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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -120,7 +121,7 @@ msgid "Days to Open" msgstr "Dias para Abrir" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -272,18 +273,10 @@ msgid "Extra Info" msgstr "Informações Adicionais" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." -msgstr "" -"Este relatório nos incidentes de projeto permite analisar a qualidade do seu " -"suporte ou dos serviços pós-venda. Você pode rastrear os incidentes por " -"período. Você pode analisar o tempo necessário para abrir ou fechar um " -"incidente, o número de e-mails trocados e o tempo gasto em média por " -"incidente." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "Atenção!" #. module: project_issue #: view:project.issue:0 @@ -295,6 +288,12 @@ msgstr "Editar..." msgid "Responsible" msgstr "Responsável" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "Incidente Bloqueado" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -306,7 +305,7 @@ msgid "Kanban State" msgstr "Situação Kanban" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "Incidente de projeto convertido para tarefa." @@ -340,9 +339,9 @@ msgid "New" msgstr "Novo" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Categorias de Incidentes" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" #. module: project_issue #: field:project.issue,email_from:0 @@ -362,7 +361,7 @@ msgid "Lowest" msgstr "Mais Baixa" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "%s (cópia)" @@ -413,9 +412,18 @@ msgid "July" msgstr "Julho" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Categorias" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Este relatório nos incidentes de projeto permite analisar a qualidade do seu " +"suporte ou dos serviços pós-venda. Você pode rastrear os incidentes por " +"período. Você pode analisar o tempo necessário para abrir ou fechar um " +"incidente, o número de e-mails trocados e o tempo gasto em média por " +"incidente." #. module: project_issue #: view:project.issue:0 @@ -433,7 +441,7 @@ msgid "Issues Analysis" msgstr "Análise de Incidentes" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "Sem Assunto" @@ -457,7 +465,7 @@ msgid "Delete" msgstr "Excluir" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Tarefas" @@ -497,11 +505,6 @@ msgstr "Problema pequeno" msgid "creates" msgstr "cria" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Solicitações de Funcionalidade" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -554,11 +557,6 @@ msgstr "" "e saídas de emails para este registro antes de ser enviado. Separe múltiplos " "endereços de email com vírgula." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Manutenção" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -612,11 +610,6 @@ msgstr "Agosto" msgid "Normal" msgstr "Normal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "desconhecido" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -673,10 +666,10 @@ msgid "November" msgstr "Novembro" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "Atenção!" +msgid "Customer Email" +msgstr "Email do Cliente" #. module: project_issue #: view:project.issue.report:0 @@ -684,9 +677,9 @@ msgid "Search" msgstr "Procurar" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Outubro" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Mês de criação" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -750,11 +743,6 @@ msgstr "Versão do Incidente" msgid "Version Number" msgstr "Número da Versão" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Cancelar" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -791,20 +779,35 @@ msgstr "Incidente do Projeto" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Mês de criação" +msgid "Add an internal note..." +msgstr "Adicionar nota interna..." + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "Cancelar Quesão" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Calculado como: Tempo Gasto / Tempo Total." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "Questões em aberto" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "Pronto para o próximo estágio" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Outubro" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -874,10 +877,10 @@ msgid "Issue Created" msgstr "Incidente Criado" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" -msgstr "Incidente Bloqueado" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" +msgstr "Cliente" #. module: project_issue #: selection:project.issue.report,month:0 @@ -949,11 +952,6 @@ msgstr "Abril" msgid "⇒ Escalate" msgstr "⇒ Escalar" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Referências" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -1026,3 +1024,24 @@ msgstr "Duração" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "Incidente Iniciado" + +#~ msgid "Categories" +#~ msgstr "Categorias" + +#~ msgid "Feature Requests" +#~ msgstr "Solicitações de Funcionalidade" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" + +#~ msgid "References" +#~ msgstr "Referências" + +#~ msgid "Maintenance" +#~ msgstr "Manutenção" + +#~ msgid "unknown" +#~ msgstr "desconhecido" + +#~ msgid "Issue Categories" +#~ msgstr "Categorias de Incidentes" diff --git a/addons/project_issue/i18n/ro.po b/addons/project_issue/i18n/ro.po index 74c1a71b430..6d44af678fa 100644 --- a/addons/project_issue/i18n/ro.po +++ b/addons/project_issue/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" -"PO-Revision-Date: 2013-02-10 15:58+0000\n" -"Last-Translator: Fekete Mihai \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-07 19:10+0000\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-02-11 05:35+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -121,7 +121,7 @@ msgid "Days to Open" msgstr "Zile pana la deschidere" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -272,18 +272,10 @@ msgid "Extra Info" msgstr "Informatii suplimentare" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." -msgstr "" -"Acest raport referitor la problemele proiectului va permite sa analizati " -"calitatea asistentei tehnice sau a serviciilor de dupa vanzare. Puteti tine " -"evidenta problemelor dupa vechime. Puteti analiza timpul necesar deschiderii " -"sau inchiderii unei probleme, numarul de email-uri schimbate si timpul " -"petrecut in medie cu problemele." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "Avertisment!" #. module: project_issue #: view:project.issue:0 @@ -295,6 +287,12 @@ msgstr "Editeaza..." msgid "Responsible" msgstr "Responsabil" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "Problema Blocata" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -306,7 +304,7 @@ msgid "Kanban State" msgstr "Starea Kanban" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "Problema Proiect modificata in sarcina." @@ -340,9 +338,11 @@ msgid "New" msgstr "Nou(a)" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Categorii de probleme" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" +"{'invizibil': [('utilizare_sarcini', '=', " +"Fals),('utilizare_probleme','=',Fals)]}" #. module: project_issue #: field:project.issue,email_from:0 @@ -362,7 +362,7 @@ msgid "Lowest" msgstr "Cel mai scazut (cea mai scazuta)" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "%s (copie)" @@ -413,9 +413,18 @@ msgid "July" msgstr "Iulie" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Categorii" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Acest raport referitor la problemele proiectului va permite sa analizati " +"calitatea asistentei tehnice sau a serviciilor de dupa vanzare. Puteti tine " +"evidenta problemelor dupa vechime. Puteti analiza timpul necesar deschiderii " +"sau inchiderii unei probleme, numarul de email-uri schimbate si timpul " +"petrecut in medie cu problemele." #. module: project_issue #: view:project.issue:0 @@ -433,7 +442,7 @@ msgid "Issues Analysis" msgstr "Analiza Probleme" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "Fara Subiect" @@ -457,7 +466,7 @@ msgid "Delete" msgstr "Sterge" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Sarcini" @@ -497,11 +506,6 @@ msgstr "O problema mica" msgid "creates" msgstr "creeaza" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Caracteristica solicitari" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -554,11 +558,6 @@ msgstr "" "primite si trimise pentru aceasta inregistrare inainte de a fi trimise. " "Despartiti adresele de mail multiple cu o virgula" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Mentenanta" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -612,11 +611,6 @@ msgstr "August" msgid "Normal" msgstr "Normal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "necunoscut(a)" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -673,10 +667,10 @@ msgid "November" msgstr "Noiembrie" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "Avertisment!" +msgid "Customer Email" +msgstr "E-mail Client" #. module: project_issue #: view:project.issue.report:0 @@ -684,9 +678,9 @@ msgid "Search" msgstr "Cautati" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Octombrie" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Luna crearii" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -750,11 +744,6 @@ msgstr "Versiune Problema" msgid "Version Number" msgstr "Numarul versiunii" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Anulati" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -791,20 +780,35 @@ msgstr "Problema Proiect" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Luna crearii" +msgid "Add an internal note..." +msgstr "Adaugati o nota interna..." + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "Anulati Problema" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Calculat in felul urmator: Timpul petrecut / Timpul total." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "Probleme Nefinalizate" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "Pregatit(a) pentru etapa urmatoare" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Octombrie" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -874,10 +878,10 @@ msgid "Issue Created" msgstr "Problema Creata" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" -msgstr "Problema Blocata" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" +msgstr "Client" #. module: project_issue #: selection:project.issue.report,month:0 @@ -950,11 +954,6 @@ msgstr "Aprilie" msgid "⇒ Escalate" msgstr "⇒ Avansati" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Referinte" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -1027,3 +1026,24 @@ msgstr "Durata" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "Problema Inceputa" + +#~ msgid "Categories" +#~ msgstr "Categorii" + +#~ msgid "Issue Categories" +#~ msgstr "Categorii de probleme" + +#~ msgid "Maintenance" +#~ msgstr "Mentenanta" + +#~ msgid "Feature Requests" +#~ msgstr "Caracteristica solicitari" + +#~ msgid "Cancel" +#~ msgstr "Anulati" + +#~ msgid "References" +#~ msgstr "Referinte" + +#~ msgid "unknown" +#~ msgstr "necunoscut(a)" diff --git a/addons/project_issue/i18n/ru.po b/addons/project_issue/i18n/ru.po index 373e4ea465e..f1c4776e80f 100644 --- a/addons/project_issue/i18n/ru.po +++ b/addons/project_issue/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Дней до открытия" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -251,12 +251,9 @@ msgid "Extra Info" msgstr "Доп. инфо." #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -269,6 +266,12 @@ msgstr "" msgid "Responsible" msgstr "" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -280,7 +283,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -314,9 +317,9 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Категории инцидентов" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -336,7 +339,7 @@ msgid "Lowest" msgstr "Низший" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -387,9 +390,13 @@ msgid "July" msgstr "Июль" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Категории" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" #. module: project_issue #: view:project.issue:0 @@ -407,7 +414,7 @@ msgid "Issues Analysis" msgstr "Анализ проблемы" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -431,7 +438,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Задачи" @@ -471,11 +478,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Запросы на доработку" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -528,11 +530,6 @@ msgstr "" "исходящих сообщений для этой записи перед отправкой. Разделяйте адреса " "запятыми." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Обслуживание" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -586,11 +583,6 @@ msgstr "Август" msgid "Normal" msgstr "Обычный" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -643,9 +635,9 @@ msgid "November" msgstr "Ноябрь" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -654,9 +646,9 @@ msgid "Search" msgstr "Поиск" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Октябрь" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -720,11 +712,6 @@ msgstr "" msgid "Version Number" msgstr "Номер версии" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -761,7 +748,12 @@ msgstr "" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -769,12 +761,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Октябрь" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -844,9 +846,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -910,11 +912,6 @@ msgstr "" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -987,3 +984,15 @@ msgstr "" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "Обслуживание" + +#~ msgid "Issue Categories" +#~ msgstr "Категории инцидентов" + +#~ msgid "Categories" +#~ msgstr "Категории" + +#~ msgid "Feature Requests" +#~ msgstr "Запросы на доработку" diff --git a/addons/project_issue/i18n/sk.po b/addons/project_issue/i18n/sk.po index af1b6efbf77..eb0f3ddef4a 100644 --- a/addons/project_issue/i18n/sk.po +++ b/addons/project_issue/i18n/sk.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-09 15:06+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: 2013-02-10 05:24+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -249,12 +249,9 @@ msgid "Extra Info" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -267,6 +264,12 @@ msgstr "" msgid "Responsible" msgstr "" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -278,7 +281,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -312,8 +315,8 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" msgstr "" #. module: project_issue @@ -334,7 +337,7 @@ msgid "Lowest" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -385,8 +388,12 @@ msgid "July" msgstr "" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." msgstr "" #. module: project_issue @@ -405,7 +412,7 @@ msgid "Issues Analysis" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -429,7 +436,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "" @@ -469,11 +476,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -523,11 +525,6 @@ msgid "" "addresses with a comma" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -581,11 +578,6 @@ msgstr "" msgid "Normal" msgstr "" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -638,9 +630,9 @@ msgid "November" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -649,8 +641,8 @@ msgid "Search" msgstr "" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" +#: view:project.issue:0 +msgid "Creation Month" msgstr "" #. module: project_issue @@ -715,11 +707,6 @@ msgstr "" msgid "Version Number" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -756,7 +743,12 @@ msgstr "" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -764,12 +756,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -839,9 +841,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -905,11 +907,6 @@ msgstr "" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" diff --git a/addons/project_issue/i18n/sl.po b/addons/project_issue/i18n/sl.po index dd6974ec308..e41157f7bbf 100644 --- a/addons/project_issue/i18n/sl.po +++ b/addons/project_issue/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-16 19:50+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -249,13 +249,10 @@ msgid "Extra Info" msgstr "Dodatne informacije" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." -msgstr "" +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "Opozorilo!" #. module: project_issue #: view:project.issue:0 @@ -267,6 +264,12 @@ msgstr "Urejanje ..." msgid "Responsible" msgstr "Odgovoren" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -278,7 +281,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -312,8 +315,8 @@ msgid "New" msgstr "Novo" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" msgstr "" #. module: project_issue @@ -334,7 +337,7 @@ msgid "Lowest" msgstr "Najnižja" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "%s (kopija)" @@ -385,9 +388,13 @@ msgid "July" msgstr "Julij" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Skupine" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" #. module: project_issue #: view:project.issue:0 @@ -405,7 +412,7 @@ msgid "Issues Analysis" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "Ni zadeve" @@ -429,7 +436,7 @@ msgid "Delete" msgstr "Briši" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Naloge" @@ -469,11 +476,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -523,11 +525,6 @@ msgid "" "addresses with a comma" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Vzdrževanje" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -581,11 +578,6 @@ msgstr "Avgust" msgid "Normal" msgstr "Običajno" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "neznano" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -638,10 +630,10 @@ msgid "November" msgstr "November" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "Opozorilo!" +msgid "Customer Email" +msgstr "" #. module: project_issue #: view:project.issue.report:0 @@ -649,9 +641,9 @@ msgid "Search" msgstr "Iskanje" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "Oktober" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -715,11 +707,6 @@ msgstr "" msgid "Version Number" msgstr "Številka različice" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Prekliči" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -756,7 +743,12 @@ msgstr "" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -764,12 +756,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Oktober" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -839,9 +841,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -905,11 +907,6 @@ msgstr "April" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Reference" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -982,3 +979,18 @@ msgstr "Trajanje" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Categories" +#~ msgstr "Skupine" + +#~ msgid "Maintenance" +#~ msgstr "Vzdrževanje" + +#~ msgid "unknown" +#~ msgstr "neznano" + +#~ msgid "Cancel" +#~ msgstr "Prekliči" + +#~ msgid "References" +#~ msgstr "Reference" diff --git a/addons/project_issue/i18n/sv.po b/addons/project_issue/i18n/sv.po index 9690e5f9f30..603ab3df4a4 100644 --- a/addons/project_issue/i18n/sv.po +++ b/addons/project_issue/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "Dagar för att öppna" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -253,17 +253,10 @@ msgid "Extra Info" msgstr "Tilläggsinformation" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" -"Denna rapport om projektetärenden kan användas för analys av kvaliteten på " -"din support eller kundservice. Du kan spåra ärende per tidsenhet. Du kan " -"analysera den tid som krävs för att öppna eller stänga ett ärende, tid " -"tillbringat i snitt per ärende och mängden e-post." #. module: project_issue #: view:project.issue:0 @@ -275,6 +268,12 @@ msgstr "" msgid "Responsible" msgstr "Ansvarig" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -286,7 +285,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -320,9 +319,9 @@ msgid "New" msgstr "Ny" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "Ärendekatekorier" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -342,7 +341,7 @@ msgid "Lowest" msgstr "Lägsta" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -393,9 +392,17 @@ msgid "July" msgstr "juli" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "Kategorier" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "" +"Denna rapport om projektetärenden kan användas för analys av kvaliteten på " +"din support eller kundservice. Du kan spåra ärende per tidsenhet. Du kan " +"analysera den tid som krävs för att öppna eller stänga ett ärende, tid " +"tillbringat i snitt per ärende och mängden e-post." #. module: project_issue #: view:project.issue:0 @@ -413,7 +420,7 @@ msgid "Issues Analysis" msgstr "Ärendeanalys" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -437,7 +444,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "Uppgifter" @@ -477,11 +484,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "Önskemål om ny egenskap" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -534,11 +536,6 @@ msgstr "" "meddelanden för denna post innan de skickas. Separera flera adresser med " "komma." -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "Underhåll" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -592,11 +589,6 @@ msgstr "augusti" msgid "Normal" msgstr "Normal" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -649,9 +641,9 @@ msgid "November" msgstr "november" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -660,9 +652,9 @@ msgid "Search" msgstr "Sök" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "oktober" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Registeringsmånad" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -726,11 +718,6 @@ msgstr "Ärendeversion" msgid "Version Number" msgstr "Versionsnummer" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "Avbryt" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -767,20 +754,35 @@ msgstr "Projektärenden" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "Registeringsmånad" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "Beräknas som: nedlagd tid / total tid." +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "oktober" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -850,9 +852,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -918,11 +920,6 @@ msgstr "april" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "Referenser" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -995,3 +992,21 @@ msgstr "Varaktighet" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "Underhåll" + +#~ msgid "Categories" +#~ msgstr "Kategorier" + +#~ msgid "Feature Requests" +#~ msgstr "Önskemål om ny egenskap" + +#~ msgid "Cancel" +#~ msgstr "Avbryt" + +#~ msgid "References" +#~ msgstr "Referenser" + +#~ msgid "Issue Categories" +#~ msgstr "Ärendekatekorier" diff --git a/addons/project_issue/i18n/tr.po b/addons/project_issue/i18n/tr.po index 2c0f56bb70e..a6d956c7d2b 100644 --- a/addons/project_issue/i18n/tr.po +++ b/addons/project_issue/i18n/tr.po @@ -1,26 +1,25 @@ -# 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. +# Translation of OpenERP Server. +# This file contains the translation of the following modules: +# * project_issue # 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-28 19:51+0000\n" +"Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 msgid "Deadly bug" -msgstr "" +msgstr "Ölümcül hata" #. module: project_issue #: help:project.config.settings,fetchmail_issue:0 @@ -28,37 +27,39 @@ msgid "" "Allows you to configure your incoming mail server, and create issues from " "incoming emails." msgstr "" +"Gelen eposta sunucunuzu yapılandırmanızı ve gelen epostalardan sorunlar " +"oluşturmanızı sağlar." #. module: project_issue #: field:project.issue.report,delay_open:0 msgid "Avg. Delay to Open" -msgstr "" +msgstr "Açmak için Gerekli Süre" #. module: project_issue #: view:project.issue:0 #: view:project.issue.report:0 msgid "Group By..." -msgstr "Grupla..." +msgstr "Grupla İle..." #. module: project_issue #: field:project.issue,working_hours_open:0 msgid "Working Hours to Open the Issue" -msgstr "" +msgstr "Sorunun Açılması için Gerekli Çalışam Süresi" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_started msgid "Issue started" -msgstr "" +msgstr "Sorun başladı" #. module: project_issue #: field:project.issue,date_open:0 msgid "Opened" -msgstr "" +msgstr "Açıldı" #. module: project_issue #: field:project.issue.report,opening_date:0 msgid "Date of Opening" -msgstr "" +msgstr "Açılış Tarihi" #. module: project_issue #: selection:project.issue.report,month:0 @@ -74,19 +75,19 @@ msgstr "İlerleme (%)" #: view:project.issue:0 #: field:project.issue,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Okunmamış mesajlar" #. module: project_issue #: field:project.issue,company_id:0 #: view:project.issue.report:0 #: field:project.issue.report,company_id:0 msgid "Company" -msgstr "" +msgstr "Firma" #. module: project_issue #: field:project.issue,email_cc:0 msgid "Watchers Emails" -msgstr "" +msgstr "İzleyici Epostaları" #. module: project_issue #: help:project.issue,kanban_state:0 @@ -97,78 +98,85 @@ msgid "" " * Ready for next stage indicates the issue is ready to be pulled to the " "next stage" msgstr "" +"Bir sorunun kanban durumu özel durumların sorunu etkilediğini belirtir:\n" +" * Normal, varsayılan durumdur\n" +" * Engelli, bir şeyin bu sorunla ilgili işlemleri engellediğini belirtir\n" +" * Sonraki aşama için Hazır, sorunun bir sonraki aşamaya geçirilmeye hazır " +"olduğunu belirtir" #. module: project_issue #: help:project.issue,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "İşaretliyse yeni mesajlar ilginizi gerektirir." #. module: project_issue #: help:account.analytic.account,use_issues:0 msgid "Check this field if this project manages issues" -msgstr "" +msgstr "Bu projede sorunlar yürütülüyorsa bu alanı işaretleyin" #. module: project_issue #: field:project.issue,day_open:0 msgid "Days to Open" -msgstr "" +msgstr "Açılış için Gün Sayısı" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" "The relevant Project has not configured the Escalation Project!" msgstr "" +"Bu sorunu yükseltemezsiniz.\n" +"İlgili Proje Yükseltme Projesini henüz yapılandırmamıştır!" #. module: project_issue #: constraint:project.project:0 msgid "Error! You cannot assign escalation to the same project!" -msgstr "" +msgstr "Hata! Aynı projeye yükselme atayamazsınız!" #. module: project_issue #: selection:project.issue,priority:0 #: selection:project.issue.report,priority:0 msgid "Highest" -msgstr "" +msgstr "En yüksek" #. module: project_issue #: help:project.issue,inactivity_days:0 msgid "Difference in days between last action and current date" -msgstr "" +msgstr "Son işlem tarihi ve geçerli tarih arasındaki fark" #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,day:0 msgid "Day" -msgstr "" +msgstr "Gün" #. module: project_issue #: field:project.issue,days_since_creation:0 msgid "Days since creation date" -msgstr "" +msgstr "Oluşturma tarihinden bugüne kadar ki gün sayısı" #. module: project_issue #: field:project.issue,task_id:0 #: view:project.issue.report:0 #: field:project.issue.report,task_id:0 msgid "Task" -msgstr "" +msgstr "Görev" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_project_issue_stage msgid "Issue Stage Changed" -msgstr "" +msgstr "Sorun Aşama Değişti" #. module: project_issue #: field:project.issue,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mesajlar" #. module: project_issue #: field:project.issue,inactivity_days:0 msgid "Days since last action" -msgstr "" +msgstr "Son işlemden bu güne kadar ki gün sayısı" #. module: project_issue #: model:ir.model,name:project_issue.model_project_project @@ -177,7 +185,7 @@ msgstr "" #: view:project.issue.report:0 #: field:project.issue.report,project_id:0 msgid "Project" -msgstr "" +msgstr "Proje" #. module: project_issue #: model:ir.actions.act_window,help:project_issue.project_issue_categ_act0 @@ -192,42 +200,51 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir sorun bildirmek için tıklayın.\n" +"

\n" +" OpenERP sorun izleyicisi, iç istekler, yazılım geliştirme " +"hataları,\n" +" müşteri şikayetleri, proje zorlukları, malzeme hataları gibi\n" +" şeyleri etkili bir şeklide yönetmenizi sağlar.\n" +"

\n" +" " #. module: project_issue #: selection:project.issue,state:0 #: selection:project.issue.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "İptalEdilen" #. module: project_issue #: field:project.issue,description:0 msgid "Private Note" -msgstr "" +msgstr "Özel Not" #. module: project_issue #: field:project.issue.report,date_closed:0 msgid "Date of Closing" -msgstr "" +msgstr "Kapatma için gerekli Gün sayısı" #. module: project_issue #: view:project.issue:0 msgid "Issue Tracker Search" -msgstr "" +msgstr "Sorun İzleyici Arama" #. module: project_issue #: field:project.issue,color:0 msgid "Color Index" -msgstr "" +msgstr "Renk İndeksi" #. module: project_issue #: field:project.issue.report,working_hours_open:0 msgid "Avg. Working Hours to Open" -msgstr "" +msgstr "Açmak için gerekli Ort. Çalışma Süresi" #. module: project_issue #: model:ir.model,name:project_issue.model_account_analytic_account msgid "Analytic Account" -msgstr "" +msgstr "Analitik Hesap" #. module: project_issue #: help:project.issue,message_summary:0 @@ -235,6 +252,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 "" +"Sohbetçi özetini (mesaj sayısı, ...) barındırır. Bu özet kanban " +"görünümlerine eklenmek üzere doğrudan html biçimindedir." #. module: project_issue #: help:project.project,project_escalation_id:0 @@ -242,11 +261,152 @@ msgid "" "If any issue is escalated from the current Project, it will be listed under " "the project selected here." msgstr "" +"Geçerli Projeden herhangi bir soru yükseltilirse, burada seçilen projelerde " +"listelenecektir." #. module: project_issue #: view:project.issue:0 msgid "Extra Info" -msgstr "" +msgstr "Ekstra Bilgisi" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "Uyarı'" + +#. module: project_issue +#: view:project.issue:0 +msgid "Edit..." +msgstr "Düzenle..." + +#. module: project_issue +#: view:project.issue:0 +msgid "Responsible" +msgstr "Sorumlu" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "Sorun Engellendi" + +#. module: project_issue +#: view:project.issue:0 +msgid "Statistics" +msgstr "İstatistik" + +#. module: project_issue +#: field:project.issue,kanban_state:0 +msgid "Kanban State" +msgstr "Kanban Durumu" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:366 +#, python-format +msgid "Project issue converted to task." +msgstr "Proje sorun dönüştürüldü göreve" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,priority:0 +#: view:project.issue.report:0 +#: field:project.issue.report,priority:0 +msgid "Priority" +msgstr "Öncelik" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,version_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,version_id:0 +msgid "Version" +msgstr "Versiyon" + +#. module: project_issue +#: field:project.issue,message_follower_ids:0 +msgid "Followers" +msgstr "İzleyiciler" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +msgid "New" +msgstr "Yeni" + +#. module: project_issue +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" + +#. module: project_issue +#: field:project.issue,email_from:0 +msgid "Email" +msgstr "Email" + +#. module: project_issue +#: field:project.issue,channel_id:0 +#: field:project.issue.report,channel_id:0 +msgid "Channel" +msgstr "Kanal" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Lowest" +msgstr "Endüşük" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:388 +#, python-format +msgid "%s (copy)" +msgstr "%s (kopya)" + +#. module: project_issue +#: view:project.issue:0 +msgid "Unassigned Issues" +msgstr "Atanmamış Sorunlar" + +#. module: project_issue +#: field:project.issue,create_date:0 +#: view:project.issue.report:0 +#: field:project.issue.report,creation_date:0 +msgid "Creation Date" +msgstr "Oluşturma Tarihi" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.project_issue_version_action +#: model:ir.ui.menu,name:project_issue.menu_project_issue_version_act +msgid "Versions" +msgstr "Versiyon" + +#. module: project_issue +#: view:project.issue:0 +msgid "To Do Issues" +msgstr "Yapılacak Sorunlar" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue_version +msgid "project.issue.version" +msgstr "project.issue.version" + +#. module: project_issue +#: field:project.config.settings,fetchmail_issue:0 +msgid "Create issues from an incoming email account " +msgstr "Gelen bir e-posta hesabından gelen sorunları oluşturma " + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +msgid "Done" +msgstr "Biten" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "July" +msgstr "Temmuz" #. module: project_issue #: model:ir.actions.act_window,help:project_issue.action_project_issue_report @@ -256,138 +416,10 @@ msgid "" "analyse the time required to open or close an issue, the number of email to " "exchange and the time spent on average by issues." msgstr "" - -#. module: project_issue -#: view:project.issue:0 -msgid "Edit..." -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -msgid "Responsible" -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -msgid "Statistics" -msgstr "" - -#. module: project_issue -#: field:project.issue,kanban_state:0 -msgid "Kanban State" -msgstr "" - -#. module: project_issue -#: code:addons/project_issue/project_issue.py:360 -#, python-format -msgid "Project issue converted to task." -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -#: field:project.issue,priority:0 -#: view:project.issue.report:0 -#: field:project.issue.report,priority:0 -msgid "Priority" -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -#: field:project.issue,version_id:0 -#: view:project.issue.report:0 -#: field:project.issue.report,version_id:0 -msgid "Version" -msgstr "" - -#. module: project_issue -#: field:project.issue,message_follower_ids:0 -msgid "Followers" -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -#: selection:project.issue,state:0 -#: view:project.issue.report:0 -msgid "New" -msgstr "" - -#. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "" - -#. module: project_issue -#: field:project.issue,email_from:0 -msgid "Email" -msgstr "" - -#. module: project_issue -#: field:project.issue,channel_id:0 -#: field:project.issue.report,channel_id:0 -msgid "Channel" -msgstr "" - -#. module: project_issue -#: selection:project.issue,priority:0 -#: selection:project.issue.report,priority:0 -msgid "Lowest" -msgstr "" - -#. module: project_issue -#: code:addons/project_issue/project_issue.py:382 -#, python-format -msgid "%s (copy)" -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -msgid "Unassigned Issues" -msgstr "" - -#. module: project_issue -#: field:project.issue,create_date:0 -#: view:project.issue.report:0 -#: field:project.issue.report,creation_date:0 -msgid "Creation Date" -msgstr "" - -#. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_version_action -#: model:ir.ui.menu,name:project_issue.menu_project_issue_version_act -msgid "Versions" -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -msgid "To Do Issues" -msgstr "" - -#. module: project_issue -#: model:ir.model,name:project_issue.model_project_issue_version -msgid "project.issue.version" -msgstr "" - -#. module: project_issue -#: field:project.config.settings,fetchmail_issue:0 -msgid "Create issues from an incoming email account " -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -#: selection:project.issue,state:0 -#: view:project.issue.report:0 -msgid "Done" -msgstr "" - -#. module: project_issue -#: selection:project.issue.report,month:0 -msgid "July" -msgstr "" - -#. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "" +"Proje sorunlarındaki bu rapor destek ve satış sonrası hizmetlerinizin " +"kalitesini incelemenizi sağlar. Her aşamadaki sorunları izleyebilirsiniz. " +"Bir sorunu açıp kapatmak için gerekli süreyi, karşılıklı gönderilecek eposta " +"sayısını ve sorunların tükettiği süreyi inceleyebilirsiniz." #. module: project_issue #: view:project.issue:0 @@ -395,25 +427,25 @@ msgstr "" #: view:project.issue.report:0 #: field:project.issue.report,stage_id:0 msgid "Stage" -msgstr "" +msgstr "Aşama" #. module: project_issue #: model:ir.actions.act_window,name:project_issue.action_project_issue_report #: model:ir.ui.menu,name:project_issue.menu_project_issue_report_tree #: view:project.issue.report:0 msgid "Issues Analysis" -msgstr "" +msgstr "Sorunlar Analizi" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" -msgstr "" +msgstr "Konu Yok" #. module: project_issue #: model:ir.actions.act_window,name:project_issue.action_view_my_project_issue_tree msgid "My Project Issues" -msgstr "" +msgstr "Proje Sorunlarım" #. module: project_issue #: view:project.issue:0 @@ -421,99 +453,94 @@ msgstr "" #: view:project.issue.report:0 #: field:project.issue.report,partner_id:0 msgid "Contact" -msgstr "" +msgstr "Kontak" #. module: project_issue #: view:project.issue:0 msgid "Delete" -msgstr "" +msgstr "Sil" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" -msgstr "" +msgstr "Görevler" #. module: project_issue #: field:project.issue.report,nbr:0 msgid "# of Issues" -msgstr "" +msgstr "# nın Sorunları" #. module: project_issue #: selection:project.issue.report,month:0 msgid "September" -msgstr "" +msgstr "Eylül" #. module: project_issue #: selection:project.issue.report,month:0 msgid "December" -msgstr "" +msgstr "Aralık" #. module: project_issue #: field:project.issue,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Etiketler" #. module: project_issue #: view:project.issue:0 msgid "Issue Tracker Tree" -msgstr "" +msgstr "Sorun İzleme Ağacı" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_01 msgid "Little problem" -msgstr "" +msgstr "KüçükSorun" #. module: project_issue #: view:project.project:0 msgid "creates" -msgstr "" - -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "" +msgstr "oluşanlar" #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" -msgstr "" +msgstr "Güncelle Tarihi" #. module: project_issue #: view:project.issue:0 msgid "Project:" -msgstr "" +msgstr "Proje:" #. module: project_issue #: view:project.issue:0 msgid "Open Features" -msgstr "" +msgstr "Aç Özellikler" #. module: project_issue #: field:project.issue,date_action_next:0 msgid "Next Action" -msgstr "" +msgstr "sonraki İşlem" #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Blocked" -msgstr "" +msgstr "Engellendi" #. module: project_issue #: field:project.issue,user_email:0 msgid "User Email" -msgstr "" +msgstr "Kullanı Emaili" #. module: project_issue #: view:project.issue.report:0 msgid "#Number of Project Issues" -msgstr "" +msgstr "#Proje Sorun Numaraları" #. module: project_issue #: help:project.issue,channel_id:0 msgid "Communication channel." -msgstr "" +msgstr "Haberleşme kanalı." #. module: project_issue #: help:project.issue,email_cc:0 @@ -522,99 +549,91 @@ msgid "" "outbound emails for this record before being sent. Separate multiple email " "addresses with a comma" msgstr "" - -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "" +"Bu eposta adresleri gönderilmeden önce bütün gelen ve giden epostaların CC " +"satırına eklenecektir. Birden fazla eposta adresini virgül ile ayırınız." #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" -msgstr "" +msgstr "Taslak" #. module: project_issue #: selection:project.issue,priority:0 #: selection:project.issue.report,priority:0 msgid "Low" -msgstr "" +msgstr "Düşük" #. module: project_issue #: field:project.issue,date_closed:0 #: selection:project.issue.report,state:0 msgid "Closed" -msgstr "" +msgstr "Kapandı" #. module: project_issue #: field:project.issue.report,delay_close:0 msgid "Avg. Delay to Close" -msgstr "" +msgstr "Ort. Kapatma için Gecikme" #. module: project_issue #: selection:project.issue,state:0 #: view:project.issue.report:0 #: selection:project.issue.report,state:0 msgid "Pending" -msgstr "" +msgstr "Bekleyen" #. module: project_issue #: view:project.issue:0 #: field:project.issue,state:0 #: field:project.issue.report,state:0 msgid "Status" -msgstr "" +msgstr "Durumu" #. module: project_issue #: view:project.issue.report:0 msgid "#Project Issues" -msgstr "" +msgstr "# Proje sorunları" #. module: project_issue #: selection:project.issue.report,month:0 msgid "August" -msgstr "" +msgstr "Ağustos" #. module: project_issue #: selection:project.issue,kanban_state:0 #: selection:project.issue,priority:0 #: selection:project.issue.report,priority:0 msgid "Normal" -msgstr "" - -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" +msgstr "Normal" #. module: project_issue #: view:project.issue:0 msgid "Category:" -msgstr "" +msgstr "Kategory" #. module: project_issue #: selection:project.issue.report,month:0 msgid "June" -msgstr "" +msgstr "Haziran" #. module: project_issue #: help:project.issue,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Mesajlar ve iletişim geçmişi" #. module: project_issue #: view:project.issue:0 msgid "New Issues" -msgstr "" +msgstr "Yeni Sorunlar" #. module: project_issue #: field:project.issue,day_close:0 msgid "Days to Close" -msgstr "" +msgstr "Kapanma Gün" #. module: project_issue #: field:project.issue,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Bir İzleyicidir" #. module: project_issue #: help:project.issue,state:0 @@ -625,105 +644,104 @@ msgid "" "the case needs to be reviewed then the status is set " "to 'Pending'." msgstr "" +"Bir durum oluşturulduğunda durum 'Taslak' olarak ayarlanır. Durum sürmekte " +"ise 'Açık' olarak ayarlanır. Durum bittiğinde, durum 'Yapıldı' olarak " +"ayarlanır. Eğer durumun incelenmesi gerekiyorsa durum 'Bekliyor' olarak " +"ayarlanır." #. module: project_issue #: field:project.issue,active:0 #: field:project.issue.version,active:0 msgid "Active" -msgstr "" +msgstr "Etkin" #. module: project_issue #: selection:project.issue.report,month:0 msgid "November" -msgstr "" +msgstr "Kasım" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "" +msgid "Customer Email" +msgstr "Müşteri Epostası" #. module: project_issue #: view:project.issue.report:0 msgid "Search" -msgstr "" +msgstr "Arama" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "Oluşturma Ayı" #. module: project_issue #: help:project.issue,days_since_creation:0 msgid "Difference in days between creation date and current date" -msgstr "" +msgstr "Oluşturulma tarihi ve güncel tarih arasındaki gün farkı" #. module: project_issue #: selection:project.issue.report,month:0 msgid "January" -msgstr "" +msgstr "Ocak" #. module: project_issue #: view:project.issue:0 msgid "Feature Tracker Tree" -msgstr "" +msgstr "Sonraki İzleme Ağacı" #. module: project_issue #: help:project.issue,email_from:0 msgid "These people will receive email." -msgstr "" +msgstr "Bu kişiler eposta alacaktır" #. module: project_issue #: field:project.issue,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Özet" #. module: project_issue #: field:project.issue,date:0 msgid "Date" -msgstr "" +msgstr "Tarih" #. module: project_issue #: field:project.issue,user_id:0 #: view:project.issue.report:0 #: field:project.issue.report,user_id:0 msgid "Assigned to" -msgstr "" +msgstr "Atanan" #. module: project_issue #: view:project.config.settings:0 msgid "Configure" -msgstr "" +msgstr "Yapılandırma" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_closed msgid "Issue closed" -msgstr "" +msgstr "Sorun kapandı" #. module: project_issue #: view:project.issue:0 msgid "Current Features" -msgstr "" +msgstr "Mevcut Özellikler" #. module: project_issue #: view:project.issue.version:0 msgid "Issue Version" -msgstr "" +msgstr "Sorun Versiyonu" #. module: project_issue #: field:project.issue.version,name:0 msgid "Version Number" -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "" +msgstr "Versiyon Numarası" #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" -msgstr "" +msgstr "Aç" #. module: project_issue #: field:account.analytic.account,use_issues:0 @@ -734,136 +752,151 @@ msgstr "" #: view:project.issue:0 #: view:project.project:0 msgid "Issues" -msgstr "" +msgstr "Sorunlar" #. module: project_issue #: view:project.issue:0 #: selection:project.issue,state:0 msgid "In Progress" -msgstr "" +msgstr "DevamEden" #. module: project_issue #: view:project.issue:0 #: view:project.issue.report:0 msgid "To Do" -msgstr "" +msgstr "Yapılacak" #. module: project_issue #: model:ir.model,name:project_issue.model_project_issue #: view:project.issue.report:0 msgid "Project Issue" -msgstr "" +msgstr "Proje Sorun" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "" +msgid "Add an internal note..." +msgstr "Bir iç not ekle..." + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "Sorun İptal et" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." -msgstr "" +msgstr "Hesapla : Haracan Zaman / Toplam Süre." + +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "Kapatılmamış Sorunlar" #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" -msgstr "" +msgstr "Sonraki aşaması için hazır" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "Ekim" #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 msgid "Sale Team" -msgstr "" +msgstr "Satış Takımı" #. module: project_issue #: view:project.issue:0 #: view:project.issue.report:0 #: field:project.issue.report,month:0 msgid "Month" -msgstr "" +msgstr "Ay" #. module: project_issue #: view:project.issue:0 #: field:project.issue,name:0 #: view:project.project:0 msgid "Issue" -msgstr "" +msgstr "Sorun" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_02 msgid "PBCK" -msgstr "" +msgstr "PBCK" #. module: project_issue #: view:project.issue:0 msgid "Feature Tracker Search" -msgstr "" +msgstr "Sonraki İzleme Araması" #. module: project_issue #: view:project.issue:0 msgid "Description" -msgstr "" +msgstr "Açıklama" #. module: project_issue #: field:project.issue,section_id:0 msgid "Sales Team" -msgstr "" +msgstr "Satış Takımı" #. module: project_issue #: selection:project.issue.report,month:0 msgid "May" -msgstr "" +msgstr "Mayıs" #. module: project_issue #: model:ir.model,name:project_issue.model_project_config_settings msgid "project.config.settings" -msgstr "" +msgstr "project.config.settings" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_issue_closed #: model:mail.message.subtype,name:project_issue.mt_project_issue_closed msgid "Issue Closed" -msgstr "" +msgstr "Sorun Kapandı" #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,email:0 msgid "# Emails" -msgstr "" +msgstr "# E-mailler" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_issue_new #: model:mail.message.subtype,name:project_issue.mt_project_issue_new msgid "Issue Created" -msgstr "" +msgstr "Sorun Oluşturdu" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" -msgstr "" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" +msgstr "Müşteri" #. module: project_issue #: selection:project.issue.report,month:0 msgid "February" -msgstr "" +msgstr "Şubat" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_stage #: model:mail.message.subtype,description:project_issue.mt_project_issue_stage msgid "Stage changed" -msgstr "" +msgstr "Aşama değişti" #. module: project_issue #: view:project.issue:0 msgid "Feature description" -msgstr "" +msgstr "Özellik açıklaması" #. module: project_issue #: field:project.project,project_escalation_id:0 msgid "Project Escalation" -msgstr "" +msgstr "Proje Artırımı" #. module: project_issue #: model:ir.actions.act_window,help:project_issue.project_issue_version_action @@ -877,6 +910,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir sürüm eklemek için tıklayın.\n" +"

\n" +" Burada, sorunlarınız üzerinde çalışacağınız ürünlerinize\n" +" farklı sürümler tanımlayın.\n" +"

\n" +" " #. module: project_issue #: help:project.issue,section_id:0 @@ -884,101 +924,119 @@ msgid "" "Sales team to which Case belongs to. Define " "Responsible user and Email account for mail gateway." msgstr "" +"Durumun ait olduğu satış takımı. Posta ağgeçidi için Sorumlu kullanıcı ve " +"Eposta hesabı tanımlayın." #. module: project_issue #: view:board.board:0 msgid "My Issues" -msgstr "" +msgstr "Sorunlarım" #. module: project_issue #: help:project.issue.report,delay_open:0 msgid "Number of Days to open the project issue." -msgstr "" +msgstr "Proje sorununu açmak için gerekli Gün Sayısı." #. module: project_issue #: selection:project.issue.report,month:0 msgid "April" -msgstr "" +msgstr "Nisan" #. module: project_issue #: view:project.issue:0 msgid "⇒ Escalate" -msgstr "" - -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "" +msgstr "⇒ Artırım" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" -msgstr "" +msgstr "Sorun oluşturldu" #. module: project_issue #: field:project.issue,working_hours_close:0 msgid "Working Hours to Close the Issue" -msgstr "" +msgstr "Sorun Kapatma Çalışma Saatleri" #. module: project_issue #: field:project.issue,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_blocked msgid "Issue blocked" -msgstr "" +msgstr "Sorun engellendi" #. module: project_issue #: model:ir.model,name:project_issue.model_project_issue_report msgid "project.issue.report" -msgstr "" +msgstr "project.issue.report" #. module: project_issue #: help:project.issue.report,delay_close:0 msgid "Number of Days to close the project issue" -msgstr "" +msgstr "Proje sorunu kapatmak için gün sayısı" #. module: project_issue #: field:project.issue.report,working_hours_close:0 msgid "Avg. Working Hours to Close" -msgstr "" +msgstr "Ort. Kapatma için Çalışma Saatleri" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_issue_stage msgid "Stage Changed" -msgstr "" +msgstr "Aşama Değişti" #. module: project_issue #: selection:project.issue,priority:0 #: selection:project.issue.report,priority:0 msgid "High" -msgstr "" +msgstr "Yüksek" #. module: project_issue #: field:project.issue,date_deadline:0 msgid "Deadline" -msgstr "" +msgstr "ZamanSınırı" #. module: project_issue #: field:project.issue,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Son İşlem" #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,name:0 msgid "Year" -msgstr "" +msgstr "Yıl" #. module: project_issue #: field:project.issue,duration:0 msgid "Duration" -msgstr "" +msgstr "Süre" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_issue_started #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" -msgstr "" +msgstr "Sorun Başlama" + +#~ msgid "Issue Categories" +#~ msgstr "Sorun Kategorileri" + +#~ msgid "Categories" +#~ msgstr "Kategoriler" + +#~ msgid "Feature Requests" +#~ msgstr "Özellikli İstek" + +#~ msgid "Maintenance" +#~ msgstr "Bakım" + +#~ msgid "unknown" +#~ msgstr "bilinmeyen" + +#~ msgid "Cancel" +#~ msgstr "İptal" + +#~ msgid "References" +#~ msgstr "Referans" diff --git a/addons/project_issue/i18n/zh_CN.po b/addons/project_issue/i18n/zh_CN.po index a2ae3b5b483..d0dd1bdb27c 100644 --- a/addons/project_issue/i18n/zh_CN.po +++ b/addons/project_issue/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 07:02+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "距开始日期" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -251,13 +251,10 @@ msgid "Extra Info" msgstr "附加信息" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." -msgstr "缺陷报表用于分析你的支持或售后服务的数量。报表自动分页。可以分析开始处理或关闭一个缺陷需要的时间,邮件的数量和处理缺陷的平均时间。" +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" +msgstr "警告!" #. module: project_issue #: view:project.issue:0 @@ -269,6 +266,12 @@ msgstr "" msgid "Responsible" msgstr "负责人" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -280,7 +283,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -314,9 +317,9 @@ msgid "New" msgstr "新建" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" -msgstr "问题分类" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" #. module: project_issue #: field:project.issue,email_from:0 @@ -336,7 +339,7 @@ msgid "Lowest" msgstr "最低" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "%s (副本)" @@ -387,9 +390,13 @@ msgid "July" msgstr "七月" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" -msgstr "分类" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." +msgstr "缺陷报表用于分析你的支持或售后服务的数量。报表自动分页。可以分析开始处理或关闭一个缺陷需要的时间,邮件的数量和处理缺陷的平均时间。" #. module: project_issue #: view:project.issue:0 @@ -407,7 +414,7 @@ msgid "Issues Analysis" msgstr "问题分析" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -431,7 +438,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "任务" @@ -471,11 +478,6 @@ msgstr "小问题" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "功能请求" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -525,11 +527,6 @@ msgid "" "addresses with a comma" msgstr "这些邮箱地址将添加到所有接收的发送邮件的抄送字段,用逗号分隔多个邮件地址。" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "维护" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -583,11 +580,6 @@ msgstr "八月" msgid "Normal" msgstr "普通" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -640,10 +632,10 @@ msgid "November" msgstr "十一月" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" -msgstr "警告!" +msgid "Customer Email" +msgstr "" #. module: project_issue #: view:project.issue.report:0 @@ -651,9 +643,9 @@ msgid "Search" msgstr "搜索" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" -msgstr "十月" +#: view:project.issue:0 +msgid "Creation Month" +msgstr "创建月份" #. module: project_issue #: help:project.issue,days_since_creation:0 @@ -717,11 +709,6 @@ msgstr "问题版本" msgid "Version Number" msgstr "版本号" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "取消" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -758,20 +745,35 @@ msgstr "项目问题" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" -msgstr "创建月份" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" #. module: project_issue #: help:project.issue,progress:0 msgid "Computed as: Time Spent / Total Time." msgstr "计算方式:花费时间 / 总时间" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "十月" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -841,9 +843,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -907,11 +909,6 @@ msgstr "四月" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "参考资料" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" @@ -984,3 +981,21 @@ msgstr "时长" #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" msgstr "" + +#~ msgid "Maintenance" +#~ msgstr "维护" + +#~ msgid "Feature Requests" +#~ msgstr "功能请求" + +#~ msgid "References" +#~ msgstr "参考资料" + +#~ msgid "Issue Categories" +#~ msgstr "问题分类" + +#~ msgid "Categories" +#~ msgstr "分类" + +#~ msgid "Cancel" +#~ msgstr "取消" diff --git a/addons/project_issue/i18n/zh_TW.po b/addons/project_issue/i18n/zh_TW.po index 4b59e58ecef..5a5c22e43f5 100644 --- a/addons/project_issue/i18n/zh_TW.po +++ b/addons/project_issue/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:04+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-01 03:29+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-02 06:00+0000\n" -"X-Generator: Launchpad (build 16462)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:39+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -114,7 +114,7 @@ msgid "Days to Open" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:479 #, python-format msgid "" "You cannot escalate this issue.\n" @@ -249,12 +249,9 @@ msgid "Extra Info" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,help:project_issue.action_project_issue_report -msgid "" -"This report on the project issues allows you to analyse the quality of your " -"support or after-sales services. You can track the issues per age. You can " -"analyse the time required to open or close an issue, the number of email to " -"exchange and the time spent on average by issues." +#: code:addons/project_issue/project_issue.py:479 +#, python-format +msgid "Warning!" msgstr "" #. module: project_issue @@ -267,6 +264,12 @@ msgstr "" msgid "Responsible" msgstr "" +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + #. module: project_issue #: view:project.issue:0 msgid "Statistics" @@ -278,7 +281,7 @@ msgid "Kanban State" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:360 +#: code:addons/project_issue/project_issue.py:366 #, python-format msgid "Project issue converted to task." msgstr "" @@ -312,8 +315,8 @@ msgid "New" msgstr "" #. module: project_issue -#: model:ir.actions.act_window,name:project_issue.project_issue_categ_action -msgid "Issue Categories" +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" msgstr "" #. module: project_issue @@ -334,7 +337,7 @@ msgid "Lowest" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:382 +#: code:addons/project_issue/project_issue.py:388 #, python-format msgid "%s (copy)" msgstr "" @@ -385,8 +388,12 @@ msgid "July" msgstr "" #. module: project_issue -#: model:ir.ui.menu,name:project_issue.menu_project_issue_category_act -msgid "Categories" +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"analyse the time required to open or close an issue, the number of email to " +"exchange and the time spent on average by issues." msgstr "" #. module: project_issue @@ -405,7 +412,7 @@ msgid "Issues Analysis" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:485 +#: code:addons/project_issue/project_issue.py:516 #, python-format msgid "No Subject" msgstr "" @@ -429,7 +436,7 @@ msgid "Delete" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:365 +#: code:addons/project_issue/project_issue.py:371 #, python-format msgid "Tasks" msgstr "" @@ -469,11 +476,6 @@ msgstr "" msgid "creates" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.feature_request_categ -msgid "Feature Requests" -msgstr "" - #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" @@ -523,11 +525,6 @@ msgid "" "addresses with a comma" msgstr "" -#. module: project_issue -#: model:crm.case.categ,name:project_issue.bug_categ -msgid "Maintenance" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" @@ -581,11 +578,6 @@ msgstr "" msgid "Normal" msgstr "" -#. module: project_issue -#: field:project.project,issue_count:0 -msgid "unknown" -msgstr "" - #. module: project_issue #: view:project.issue:0 msgid "Category:" @@ -638,9 +630,9 @@ msgid "November" msgstr "" #. module: project_issue -#: code:addons/project_issue/project_issue.py:465 +#: code:addons/project_issue/project_issue.py:499 #, python-format -msgid "Warning!" +msgid "Customer Email" msgstr "" #. module: project_issue @@ -649,8 +641,8 @@ msgid "Search" msgstr "" #. module: project_issue -#: selection:project.issue.report,month:0 -msgid "October" +#: view:project.issue:0 +msgid "Creation Month" msgstr "" #. module: project_issue @@ -715,11 +707,6 @@ msgstr "" msgid "Version Number" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "Cancel" -msgstr "" - #. module: project_issue #: selection:project.issue.report,state:0 msgid "Open" @@ -756,7 +743,12 @@ msgstr "" #. module: project_issue #: view:project.issue:0 -msgid "Creation Month" +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" msgstr "" #. module: project_issue @@ -764,12 +756,22 @@ msgstr "" msgid "Computed as: Time Spent / Total Time." msgstr "" +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + #. module: project_issue #: view:project.issue:0 #: selection:project.issue,kanban_state:0 msgid "Ready for next stage" msgstr "" +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "" + #. module: project_issue #: view:project.issue.report:0 #: field:project.issue.report,section_id:0 @@ -839,9 +841,9 @@ msgid "Issue Created" msgstr "" #. module: project_issue -#: model:mail.message.subtype,name:project_issue.mt_issue_blocked -#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked -msgid "Issue Blocked" +#: code:addons/project_issue/project_issue.py:497 +#, python-format +msgid "Customer" msgstr "" #. module: project_issue @@ -905,11 +907,6 @@ msgstr "" msgid "⇒ Escalate" msgstr "" -#. module: project_issue -#: view:project.issue:0 -msgid "References" -msgstr "" - #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" diff --git a/addons/project_issue/project_issue.py b/addons/project_issue/project_issue.py index 8eb7281cd24..1e91371091e 100644 --- a/addons/project_issue/project_issue.py +++ b/addons/project_issue/project_issue.py @@ -20,9 +20,10 @@ ############################################################################## from openerp.addons.base_status.base_stage import base_stage +from openerp.addons.project.project import _TASK_STATE from openerp.addons.crm import crm from datetime import datetime -from openerp.osv import fields,osv +from openerp.osv import fields, osv, orm from openerp.tools.translate import _ import binascii import time @@ -41,9 +42,6 @@ class project_issue_version(osv.osv): } project_issue_version() -_ISSUE_STATE = [('draft', 'New'), ('open', 'In Progress'), ('cancel', 'Cancelled'), ('done', 'Done'), ('pending', 'Pending')] - - class project_issue(base_stage, osv.osv): _name = "project.issue" _description = "Project Issue" @@ -52,12 +50,12 @@ class project_issue(base_stage, osv.osv): _track = { 'state': { - 'project_issue.mt_issue_new': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'new', + 'project_issue.mt_issue_new': lambda self, cr, uid, obj, ctx=None: obj['state'] in ['new', 'draft'], 'project_issue.mt_issue_closed': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'done', 'project_issue.mt_issue_started': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'open', }, 'stage_id': { - 'project_issue.mt_issue_stage': lambda self, cr, uid, obj, ctx=None: obj['state'] not in ['new', 'done', 'open'], + 'project_issue.mt_issue_stage': lambda self, cr, uid, obj, ctx=None: obj['state'] not in ['new', 'draft', 'done', 'open'], }, 'kanban_state': { 'project_issue.mt_issue_blocked': lambda self, cr, uid, obj, ctx=None: obj['kanban_state'] == 'blocked', @@ -72,7 +70,9 @@ class project_issue(base_stage, osv.osv): if vals.get('project_id'): ctx['default_project_id'] = vals['project_id'] vals['stage_id'] = self._get_default_stage_id(cr, uid, context=ctx) - return super(project_issue, self).create(cr, uid, vals, context=context) + # context: no_log, because subtype already handle this + create_context = dict(context, mail_create_nolog=True) + return super(project_issue, self).create(cr, uid, vals, context=create_context) def _get_default_project_id(self, cr, uid, context=None): """ Gives default project by checking if present in the context """ @@ -139,6 +139,13 @@ class project_issue(base_stage, osv.osv): res = {} for issue in self.browse(cr, uid, ids, context=context): + + # if the working hours on the project are not defined, use default ones (8 -> 12 and 13 -> 17 * 5), represented by None + if not issue.project_id or not issue.project_id.resource_calendar_id: + working_hours = None + else: + working_hours = issue.project_id.resource_calendar_id.id + res[issue.id] = {} for field in fields: duration = 0 @@ -152,20 +159,24 @@ class project_issue(base_stage, osv.osv): ans = date_open - date_create date_until = issue.date_open #Calculating no. of working hours to open the issue - if issue.project_id.resource_calendar_id: - hours = cal_obj.interval_hours_get(cr, uid, issue.project_id.resource_calendar_id.id, + hours = cal_obj._interval_hours_get(cr, uid, working_hours, date_create, - date_open) + date_open, + timezone_from_uid=issue.user_id.id or uid, + exclude_leaves=False, + context=context) elif field in ['working_hours_close','day_close']: if issue.date_closed: date_close = datetime.strptime(issue.date_closed, "%Y-%m-%d %H:%M:%S") date_until = issue.date_closed ans = date_close - date_create #Calculating no. of working hours to close the issue - if issue.project_id.resource_calendar_id: - hours = cal_obj.interval_hours_get(cr, uid, issue.project_id.resource_calendar_id.id, - date_create, - date_close) + hours = cal_obj._interval_hours_get(cr, uid, working_hours, + date_create, + date_close, + timezone_from_uid=issue.user_id.id or uid, + exclude_leaves=False, + context=context) elif field in ['days_since_creation']: if issue.create_date: days_since_creation = datetime.today() - datetime.strptime(issue.create_date, "%Y-%m-%d %H:%M:%S") @@ -184,27 +195,12 @@ class project_issue(base_stage, osv.osv): resource_ids = res_obj.search(cr, uid, [('user_id','=',issue.user_id.id)]) if resource_ids and len(resource_ids): resource_id = resource_ids[0] - duration = float(ans.days) - if issue.project_id and issue.project_id.resource_calendar_id: - duration = float(ans.days) * 24 - - new_dates = cal_obj.interval_min_get(cr, uid, - issue.project_id.resource_calendar_id.id, - date_create, - duration, resource=resource_id) - no_days = [] - date_until = datetime.strptime(date_until, '%Y-%m-%d %H:%M:%S') - for in_time, out_time in new_dates: - if in_time.date not in no_days: - no_days.append(in_time.date) - if out_time > date_until: - break - duration = len(no_days) + duration = float(ans.days) + float(ans.seconds)/(24*3600) if field in ['working_hours_open','working_hours_close']: res[issue.id][field] = hours - else: - res[issue.id][field] = abs(float(duration)) + elif field in ['day_open','day_close']: + res[issue.id][field] = duration return res @@ -252,7 +248,7 @@ class project_issue(base_stage, osv.osv): 'company_id': fields.many2one('res.company', 'Company'), 'description': fields.text('Private Note'), 'state': fields.related('stage_id', 'state', type="selection", store=True, - selection=_ISSUE_STATE, string="Status", readonly=True, + selection=_TASK_STATE, string="Status", readonly=True, help='The status is set to \'Draft\', when a case is created.\ If the case is in progress the status is set to \'Open\'.\ When the case is over, the status is set to \'Done\'.\ @@ -394,10 +390,18 @@ class project_issue(base_stage, osv.osv): context=context) def write(self, cr, uid, ids, vals, context=None): - #Update last action date every time the user change the stage, the state or send a new email - logged_fields = ['stage_id', 'state', 'message_ids'] - if any([field in vals for field in logged_fields]): - vals['date_action_last'] = time.strftime('%Y-%m-%d %H:%M:%S') + + #Update last action date every time the user changes the stage + if 'stage_id' in vals: + vals['date_action_last'] = time.strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT) + state = self.pool.get('project.task.type').browse(cr, uid, vals['stage_id'], context=context).state + for issue in self.browse(cr, uid, ids, context=context): + # Change from draft to not draft EXCEPT cancelled: The issue has been opened -> set the opening date + if issue.state == 'draft' and state not in ('draft', 'cancelled'): + vals['date_open'] = time.strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT) + # Change from not done to done: The issue has been closed -> set the closing date + if issue.state != 'done' and state == 'done': + vals['date_closed'] = time.strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT) return super(project_issue, self).write(cr, uid, ids, vals, context) @@ -485,6 +489,18 @@ class project_issue(base_stage, osv.osv): return [issue.project_id.message_get_reply_to()[0] if issue.project_id else False for issue in self.browse(cr, uid, ids, context=context)] + def message_get_suggested_recipients(self, cr, uid, ids, context=None): + recipients = super(project_issue, self).message_get_suggested_recipients(cr, uid, ids, context=context) + try: + for issue in self.browse(cr, uid, ids, context=context): + if issue.partner_id: + self._message_add_suggested_recipient(cr, uid, recipients, issue, partner=issue.partner_id, reason=_('Customer')) + elif issue.email_from: + self._message_add_suggested_recipient(cr, uid, recipients, issue, email=issue.email_from, reason=_('Customer Email')) + except (osv.except_osv, orm.except_orm): # no read access rights -> just ignore suggested recipients because this imply modifying followers + pass + return recipients + def message_new(self, cr, uid, msg, custom_values=None, context=None): """ Overrides mail_thread message_new that is called by the mailgateway through message_process. @@ -538,6 +554,19 @@ class project_issue(base_stage, osv.osv): return super(project_issue, self).message_update(cr, uid, ids, msg, update_vals=update_vals, context=context) + def message_post(self, cr, uid, thread_id, body='', subject=None, type='notification', subtype=None, parent_id=False, attachments=None, context=None, content_subtype='html', **kwargs): + """ Overrides mail_thread message_post so that we can set the date of last action field when + a new message is posted on the issue. + """ + if context is None: + context = {} + + res = super(project_issue, self).message_post(cr, uid, thread_id, body=body, subject=subject, type=type, subtype=subtype, parent_id=parent_id, attachments=attachments, context=context, content_subtype=content_subtype, **kwargs) + + if thread_id: + self.write(cr, uid, thread_id, {'date_action_last': time.strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT)}, context=context) + + return res class project(osv.osv): _inherit = "project.project" @@ -549,12 +578,13 @@ class project(osv.osv): res = dict.fromkeys(ids, 0) issue_ids = self.pool.get('project.issue').search(cr, uid, [('project_id', 'in', ids)]) for issue in self.pool.get('project.issue').browse(cr, uid, issue_ids, context): - res[issue.project_id.id] += 1 + if issue.state not in ('done', 'cancelled'): + res[issue.project_id.id] += 1 return res _columns = { 'project_escalation_id' : fields.many2one('project.project','Project Escalation', help='If any issue is escalated from the current Project, it will be listed under the project selected here.', states={'close':[('readonly',True)], 'cancelled':[('readonly',True)]}), - 'issue_count': fields.function(_issue_count, type='integer'), + 'issue_count': fields.function(_issue_count, type='integer', string="Unclosed Issues"), } def _check_escalation(self, cr, uid, ids, context=None): diff --git a/addons/project_issue/project_issue_data.xml b/addons/project_issue/project_issue_data.xml index 591e6c04878..2e43ca69193 100644 --- a/addons/project_issue/project_issue_data.xml +++ b/addons/project_issue/project_issue_data.xml @@ -2,21 +2,6 @@ - - - - - Maintenance - - - - - - Feature Requests - - - - diff --git a/addons/project_issue/project_issue_view.xml b/addons/project_issue/project_issue_view.xml index 77375450e9a..74c83afd304 100644 --- a/addons/project_issue/project_issue_view.xml +++ b/addons/project_issue/project_issue_view.xml @@ -41,16 +41,6 @@ - - Issue Categories - crm.case.categ - form - - [('object_id.model', '=', 'project.issue')] - - - - Project Issue Tracker Form @@ -58,17 +48,19 @@
-
@@ -129,11 +118,11 @@ - + @@ -150,17 +139,18 @@ project.issue - + - + + @@ -201,6 +191,7 @@ +
    @@ -251,6 +242,9 @@ +
    @@ -317,6 +311,9 @@
@@ -165,7 +143,7 @@ @@ -195,24 +173,24 @@ - [[ o.state=='draft' and removeParentNode('para') ]] Purchase Order Confirmation N° [[ o.name ]] - [[ o.state<>'draft' and removeParentNode('para') ]] Request for Quotation N° [[ o.name ]] + [[ o.state=='draft' and removeParentNode('para') ]] Purchase Order Confirmation N° [[ o.name ]] + [[ o.state<>'draft' and removeParentNode('para') ]] Request for Quotation N° [[ o.name ]] @@ -238,22 +216,22 @@ @@ -316,10 +294,10 @@ diff --git a/addons/purchase/report/request_quotation.rml b/addons/purchase/report/request_quotation.rml index 8e5e73ee588..b7b4776d635 100644 --- a/addons/purchase/report/request_quotation.rml +++ b/addons/purchase/report/request_quotation.rml @@ -36,40 +36,17 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + @@ -84,7 +61,7 @@ @@ -114,20 +91,20 @@ - Request for Quotation : [[order.name]] + Request for Quotation : [[order.name]] diff --git a/addons/purchase/res_config.py b/addons/purchase/res_config.py index bfe2cdf6bca..ae3a172ce3c 100644 --- a/addons/purchase/res_config.py +++ b/addons/purchase/res_config.py @@ -66,6 +66,11 @@ Example: Product: this product is deprecated, do not purchase more than 5. 'default_invoice_method': 'manual', } + def onchange_purchase_analytic_plans(self, cr, uid, ids, module_purchase_analytic_plans, context=None): + """ change group_analytic_account_for_purchases following module_purchase_analytic_plans """ + if not module_purchase_analytic_plans: + return {} + return {'value': {'group_analytic_account_for_purchases': module_purchase_analytic_plans}} @@ -82,6 +87,8 @@ class account_config_settings(osv.osv_memory): def onchange_purchase_analytic_plans(self, cr, uid, ids, module_purchase_analytic_plans, context=None): """ change group_analytic_account_for_purchases following module_purchase_analytic_plans """ + if not module_purchase_analytic_plans: + return {} return {'value': {'group_analytic_account_for_purchases': module_purchase_analytic_plans}} # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/purchase/res_config_view.xml b/addons/purchase/res_config_view.xml index 7f1cfc64f39..276dc892392 100644 --- a/addons/purchase/res_config_view.xml +++ b/addons/purchase/res_config_view.xml @@ -67,7 +67,7 @@ @@ -162,13 +141,13 @@ @@ -195,25 +174,25 @@ - [[ o.state not in ['draft','sent'] and removeParentNode('para') ]] Quotation N° [[ o.name ]] - [[ o.state in ['draft','sent'] and removeParentNode('para') ]] Order N° [[ o.name ]] + [[ o.state not in ['draft','sent'] and removeParentNode('para') ]] Quotation N° [[ o.name ]] + [[ o.state in ['draft','sent'] and removeParentNode('para') ]] Order N° [[ o.name ]] @@ -239,22 +218,22 @@ @@ -275,7 +254,7 @@ [[ formatLang(line.price_unit , digits=get_digits(dp='Product Price'))]] diff --git a/addons/sale/report/sale_report.py b/addons/sale/report/sale_report.py index a20ba01f300..070e9c4336f 100644 --- a/addons/sale/report/sale_report.py +++ b/addons/sale/report/sale_report.py @@ -88,12 +88,11 @@ class sale_report(osv.osv): s.project_id as analytic_account_id from sale_order s - left join sale_order_line l on (s.id=l.order_id) + join sale_order_line l on (s.id=l.order_id) left join product_product p on (l.product_id=p.id) left join product_template t on (p.product_tmpl_id=t.id) left join product_uom u on (u.id=l.product_uom) left join product_uom u2 on (u2.id=t.uom_id) - where l.product_id is not null group by l.product_id, l.product_uom_qty, diff --git a/addons/sale/res_config.py b/addons/sale/res_config.py index a693fd11024..f4239b0e1a2 100644 --- a/addons/sale/res_config.py +++ b/addons/sale/res_config.py @@ -141,6 +141,8 @@ class account_config_settings(osv.osv_memory): def onchange_sale_analytic_plans(self, cr, uid, ids, module_sale_analytic_plans, context=None): """ change group_analytic_account_for_sales following module_sale_analytic_plans """ + if not module_sale_analytic_plans: + return {} return {'value': {'group_analytic_account_for_sales': module_sale_analytic_plans}} # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale/res_partner.py b/addons/sale/res_partner.py index 1b37b609179..8201e147e34 100644 --- a/addons/sale/res_partner.py +++ b/addons/sale/res_partner.py @@ -41,7 +41,7 @@ class res_partner(osv.osv): default.update({'sale_order_ids': []}) - super(res_partner, self).copy(cr, uid, record_id, default, context) + return super(res_partner, self).copy(cr, uid, record_id, default, context) _columns = { 'sale_order_count': fields.function(_sale_order_count, string='# of Sales Order', type='integer'), diff --git a/addons/sale/res_partner_view.xml b/addons/sale/res_partner_view.xml index 54a9813eea9..5107f0c17af 100644 --- a/addons/sale/res_partner_view.xml +++ b/addons/sale/res_partner_view.xml @@ -63,14 +63,22 @@ sale.group_delivery_invoice_address - - False False + sale.group_delivery_invoice_address - + + + False + sale.group_delivery_invoice_address + + + False sale.group_delivery_invoice_address diff --git a/addons/sale/sale.py b/addons/sale/sale.py index 8e944691a1d..ad322c9d702 100644 --- a/addons/sale/sale.py +++ b/addons/sale/sale.py @@ -212,8 +212,7 @@ class sale_order(osv.osv): 'order_policy': fields.selection([ ('manual', 'On Demand'), ], 'Create Invoice', required=True, readonly=True, states={'draft': [('readonly', False)], 'sent': [('readonly', False)]}, - help="""This field controls how invoice and delivery operations are synchronized. - - With 'Before Delivery', a draft invoice is created, and it must be paid before delivery."""), + help="""This field controls how invoice and delivery operations are synchronized."""), 'pricelist_id': fields.many2one('product.pricelist', 'Pricelist', required=True, readonly=True, states={'draft': [('readonly', False)], 'sent': [('readonly', False)]}, help="Pricelist for current sales order."), 'currency_id': fields.related('pricelist_id', 'currency_id', type="many2one", relation="res.currency", string="Currency", readonly=True, required=True), 'project_id': fields.many2one('account.analytic.account', 'Contract / Analytic', readonly=True, states={'draft': [('readonly', False)], 'sent': [('readonly', False)]}, help="The analytic account related to a sales order."), @@ -275,7 +274,7 @@ class sale_order(osv.osv): if s['state'] in ['draft', 'cancel']: unlink_ids.append(s['id']) else: - raise osv.except_osv(_('Invalid Action!'), _('In order to delete a confirmed sales order, you must cancel it before !')) + raise osv.except_osv(_('Invalid Action!'), _('In order to delete a confirmed sales order, you must cancel it before!')) return osv.osv.unlink(self, cr, uid, unlink_ids, context=context) @@ -315,10 +314,6 @@ class sale_order(osv.osv): return {'value': {'partner_invoice_id': False, 'partner_shipping_id': False, 'payment_term': False, 'fiscal_position': False}} part = self.pool.get('res.partner').browse(cr, uid, part, context=context) - #if the chosen partner is not a company and has a parent company, use the parent to choose the delivery, the - #invoicing addresses and all the fields related to the partner. - if part.parent_id and not part.is_company: - part = part.parent_id addr = self.pool.get('res.partner').address_get(cr, uid, [part.id], ['delivery', 'invoice', 'contact']) pricelist = part.property_product_pricelist and part.property_product_pricelist.id or False payment_term = part.property_payment_term and part.property_payment_term.id or False @@ -532,6 +527,9 @@ class sale_order(osv.osv): invoice_ref += o.name + '|' self.write(cr, uid, [o.id], {'state': 'progress'}) cr.execute('insert into sale_order_invoice_rel (order_id,invoice_id) values (%s,%s)', (o.id, res)) + #remove last '|' in invoice_ref + if len(invoice_ref) >= 1: + invoice_ref = invoice_ref[:-1] invoice.write(cr, uid, [res], {'origin': invoice_ref, 'name': invoice_ref}) else: for order, il in val: @@ -689,12 +687,14 @@ class sale_order_line(osv.osv): _description = 'Sales Order Line' _columns = { 'order_id': fields.many2one('sale.order', 'Order Reference', required=True, ondelete='cascade', select=True, readonly=True, states={'draft':[('readonly',False)]}), - 'name': fields.text('Description', required=True, select=True, readonly=True, states={'draft': [('readonly', False)]}), + 'name': fields.text('Description', required=True, readonly=True, states={'draft': [('readonly', False)]}), 'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of sales order lines."), 'product_id': fields.many2one('product.product', 'Product', domain=[('sale_ok', '=', True)], change_default=True), 'invoice_lines': fields.many2many('account.invoice.line', 'sale_order_line_invoice_rel', 'order_line_id', 'invoice_id', 'Invoice Lines', readonly=True), 'invoiced': fields.function(_fnct_line_invoiced, string='Invoiced', type='boolean', - store={'account.invoice': (_order_lines_from_invoice, ['state'], 10)}), + store={ + 'account.invoice': (_order_lines_from_invoice, ['state'], 10), + 'sale.order.line': (lambda self,cr,uid,ids,ctx=None: ids, ['invoice_lines'], 10)}), 'price_unit': fields.float('Unit Price', required=True, digits_compute= dp.get_precision('Product Price'), readonly=True, states={'draft': [('readonly', False)]}), 'type': fields.selection([('make_to_stock', 'from stock'), ('make_to_order', 'on order')], 'Procurement Method', required=True, readonly=True, states={'draft': [('readonly', False)]}, help="From stock: When needed, the product is taken from the stock or we wait for replenishment.\nOn order: When needed, the product is purchased or produced."), @@ -717,7 +717,7 @@ class sale_order_line(osv.osv): 'salesman_id':fields.related('order_id', 'user_id', type='many2one', relation='res.users', store=True, string='Salesperson'), 'company_id': fields.related('order_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, readonly=True), } - _order = 'order_id desc, sequence' + _order = 'order_id desc, sequence, id' _defaults = { 'product_uom' : _get_uom_id, 'discount': 0.0, @@ -805,7 +805,7 @@ class sale_order_line(osv.osv): vals = self._prepare_order_line_invoice_line(cr, uid, line, False, context) if vals: inv_id = self.pool.get('account.invoice.line').create(cr, uid, vals, context=context) - cr.execute('insert into sale_order_line_invoice_rel (order_line_id,invoice_id) values (%s,%s)', (line.id, inv_id)) + self.write(cr, uid, [line.id], {'invoice_lines': [(4, inv_id)]}, context=context) sales.add(line.order_id.id) create_ids.append(inv_id) # Trigger workflow events @@ -862,7 +862,7 @@ class sale_order_line(osv.osv): context = context or {} lang = lang or context.get('lang',False) if not partner_id: - raise osv.except_osv(_('No Customer Defined !'), _('Before choosing a product,\n select a customer in the sales form.')) + raise osv.except_osv(_('No Customer Defined!'), _('Before choosing a product,\n select a customer in the sales form.')) warning = {} product_uom_obj = self.pool.get('product.uom') partner_obj = self.pool.get('res.partner') @@ -995,4 +995,20 @@ class mail_compose_message(osv.Model): wf_service.trg_validate(uid, 'sale.order', context['default_res_id'], 'quotation_sent', cr) return super(mail_compose_message, self).send_mail(cr, uid, ids, context=context) + +class account_invoice(osv.Model): + _inherit = 'account.invoice' + + def unlink(self, cr, uid, ids, context=None): + """ Overwrite unlink method of account invoice to send a trigger to the sale workflow upon invoice deletion """ + invoice_ids = self.search(cr, uid, [('id', 'in', ids), ('state', 'in', ['draft', 'cancel'])], context=context) + #if we can't cancel all invoices, do nothing + if len(invoice_ids) == len(ids): + #Cancel invoice(s) first before deleting them so that if any sale order is associated with them + #it will trigger the workflow to put the sale order in an 'invoice exception' state + wf_service = netsvc.LocalService("workflow") + for id in ids: + wf_service.trg_validate(uid, 'account.invoice', id, 'invoice_cancel', cr) + return super(account_invoice, self).unlink(cr, uid, ids, context=context) + # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/addons/sale/sale_data.xml b/addons/sale/sale_data.xml index a0e93cbf581..fc2287cadc0 100644 --- a/addons/sale/sale_data.xml +++ b/addons/sale/sale_data.xml @@ -46,10 +46,10 @@ - Quotation send + Quotation sent sale.order - Quotation send + Quotation sent Sales Order Confirmed diff --git a/addons/sale/sale_view.xml b/addons/sale/sale_view.xml index 18fdb739923..e365ecf6c73 100644 --- a/addons/sale/sale_view.xml +++ b/addons/sale/sale_view.xml @@ -140,9 +140,9 @@
diff --git a/addons/claim_from_delivery/i18n/ar.po b/addons/claim_from_delivery/i18n/ar.po index 57344183bda..0455911a1bd 100644 --- a/addons/claim_from_delivery/i18n/ar.po +++ b/addons/claim_from_delivery/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/bg.po b/addons/claim_from_delivery/i18n/bg.po index 5ecc969dfab..e6e36a3a337 100644 --- a/addons/claim_from_delivery/i18n/bg.po +++ b/addons/claim_from_delivery/i18n/bg.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ca.po b/addons/claim_from_delivery/i18n/ca.po index d3ebec55fdc..58462c713ca 100644 --- a/addons/claim_from_delivery/i18n/ca.po +++ b/addons/claim_from_delivery/i18n/ca.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/claim_from_delivery.pot b/addons/claim_from_delivery/i18n/claim_from_delivery.pot index 6a219f815df..3effb612dd1 100644 --- a/addons/claim_from_delivery/i18n/claim_from_delivery.pot +++ b/addons/claim_from_delivery/i18n/claim_from_delivery.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/claim_from_delivery/i18n/cs.po b/addons/claim_from_delivery/i18n/cs.po index 42b97b90967..b4e874a9d18 100644 --- a/addons/claim_from_delivery/i18n/cs.po +++ b/addons/claim_from_delivery/i18n/cs.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/da.po b/addons/claim_from_delivery/i18n/da.po index b1629bd57f7..6f8617d66df 100644 --- a/addons/claim_from_delivery/i18n/da.po +++ b/addons/claim_from_delivery/i18n/da.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/de.po b/addons/claim_from_delivery/i18n/de.po index 690539fc4a9..1746a54f16a 100644 --- a/addons/claim_from_delivery/i18n/de.po +++ b/addons/claim_from_delivery/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/en_GB.po b/addons/claim_from_delivery/i18n/en_GB.po index 5e471095ab8..83f46d6936f 100644 --- a/addons/claim_from_delivery/i18n/en_GB.po +++ b/addons/claim_from_delivery/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-07 18:39+0000\n" "Last-Translator: mrx5682 \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-08 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es.po b/addons/claim_from_delivery/i18n/es.po index 8e5f32f6a40..50af19a6905 100644 --- a/addons/claim_from_delivery/i18n/es.po +++ b/addons/claim_from_delivery/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_AR.po b/addons/claim_from_delivery/i18n/es_AR.po index 439e3561fe1..1668baf7855 100644 --- a/addons/claim_from_delivery/i18n/es_AR.po +++ b/addons/claim_from_delivery/i18n/es_AR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Argentina) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CL.po b/addons/claim_from_delivery/i18n/es_CL.po index 2d99c17aa2c..1f8c7e6e02e 100644 --- a/addons/claim_from_delivery/i18n/es_CL.po +++ b/addons/claim_from_delivery/i18n/es_CL.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Chile) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CR.po b/addons/claim_from_delivery/i18n/es_CR.po index e275a57a9f7..91eb5d4dee6 100644 --- a/addons/claim_from_delivery/i18n/es_CR.po +++ b/addons/claim_from_delivery/i18n/es_CR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_EC.po b/addons/claim_from_delivery/i18n/es_EC.po index 072c068a843..17eea8d10a2 100644 --- a/addons/claim_from_delivery/i18n/es_EC.po +++ b/addons/claim_from_delivery/i18n/es_EC.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Ecuador) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_PY.po b/addons/claim_from_delivery/i18n/es_PY.po index 6d8919ab54c..ddf0dc0b718 100644 --- a/addons/claim_from_delivery/i18n/es_PY.po +++ b/addons/claim_from_delivery/i18n/es_PY.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish (Paraguay) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fa.po b/addons/claim_from_delivery/i18n/fa.po index d59638bd154..66582257d62 100644 --- a/addons/claim_from_delivery/i18n/fa.po +++ b/addons/claim_from_delivery/i18n/fa.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fi.po b/addons/claim_from_delivery/i18n/fi.po index b339abcd0b4..d54649781de 100644 --- a/addons/claim_from_delivery/i18n/fi.po +++ b/addons/claim_from_delivery/i18n/fi.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fr.po b/addons/claim_from_delivery/i18n/fr.po index bc0eb5e60f4..a4dfe4ed3a9 100644 --- a/addons/claim_from_delivery/i18n/fr.po +++ b/addons/claim_from_delivery/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gl.po b/addons/claim_from_delivery/i18n/gl.po index 0364a0e263c..6de2fcfec44 100644 --- a/addons/claim_from_delivery/i18n/gl.po +++ b/addons/claim_from_delivery/i18n/gl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gu.po b/addons/claim_from_delivery/i18n/gu.po index 89070b8431e..da1c3341a79 100644 --- a/addons/claim_from_delivery/i18n/gu.po +++ b/addons/claim_from_delivery/i18n/gu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Gujarati \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hr.po b/addons/claim_from_delivery/i18n/hr.po index 814371bd2a9..89c2123b6f7 100644 --- a/addons/claim_from_delivery/i18n/hr.po +++ b/addons/claim_from_delivery/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hu.po b/addons/claim_from_delivery/i18n/hu.po index 3a6ba3b978f..ae29eb3cb6f 100644 --- a/addons/claim_from_delivery/i18n/hu.po +++ b/addons/claim_from_delivery/i18n/hu.po @@ -7,27 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-14 10:10+0000\n" +"Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 msgid "Claims" -msgstr "" +msgstr "Reklamációk" #. module: claim_from_delivery #: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery msgid "Delivery Order" -msgstr "" +msgstr "Kézbesítési bizonylat" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery msgid "Claim From Delivery" -msgstr "" +msgstr "Reklamáció a szállításról" diff --git a/addons/claim_from_delivery/i18n/id.po b/addons/claim_from_delivery/i18n/id.po index 9beaf930338..7c387d93f77 100644 --- a/addons/claim_from_delivery/i18n/id.po +++ b/addons/claim_from_delivery/i18n/id.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/it.po b/addons/claim_from_delivery/i18n/it.po index 6202fd8c28b..67e5cc90104 100644 --- a/addons/claim_from_delivery/i18n/it.po +++ b/addons/claim_from_delivery/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ja.po b/addons/claim_from_delivery/i18n/ja.po index f9c17483b22..47ae8c830ac 100644 --- a/addons/claim_from_delivery/i18n/ja.po +++ b/addons/claim_from_delivery/i18n/ja.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lo.po b/addons/claim_from_delivery/i18n/lo.po index aecb5ca48f0..08dcb78e239 100644 --- a/addons/claim_from_delivery/i18n/lo.po +++ b/addons/claim_from_delivery/i18n/lo.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lao \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lt.po b/addons/claim_from_delivery/i18n/lt.po index eb297c539c8..41ed36248e7 100644 --- a/addons/claim_from_delivery/i18n/lt.po +++ b/addons/claim_from_delivery/i18n/lt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Lithuanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/mk.po b/addons/claim_from_delivery/i18n/mk.po new file mode 100644 index 00000000000..3f879d17be4 --- /dev/null +++ b/addons/claim_from_delivery/i18n/mk.po @@ -0,0 +1,33 @@ +# 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-28 22:21+0000\n" +"Last-Translator: Sofce Dimitrijeva \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-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: claim_from_delivery +#: view:stock.picking.out:0 +msgid "Claims" +msgstr "Рекламации" + +#. module: claim_from_delivery +#: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery +msgid "Delivery Order" +msgstr "Испратница" + +#. module: claim_from_delivery +#: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery +msgid "Claim From Delivery" +msgstr "Рекламација од испорака" diff --git a/addons/claim_from_delivery/i18n/mn.po b/addons/claim_from_delivery/i18n/mn.po index 87a3cda96de..e5e879f1d32 100644 --- a/addons/claim_from_delivery/i18n/mn.po +++ b/addons/claim_from_delivery/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-06 09:15+0000\n" "Last-Translator: Мөнхөө \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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nb.po b/addons/claim_from_delivery/i18n/nb.po index b755b0aa240..69d1f438722 100644 --- a/addons/claim_from_delivery/i18n/nb.po +++ b/addons/claim_from_delivery/i18n/nb.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl.po b/addons/claim_from_delivery/i18n/nl.po index 572255a6170..9edae4b854a 100644 --- a/addons/claim_from_delivery/i18n/nl.po +++ b/addons/claim_from_delivery/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl_BE.po b/addons/claim_from_delivery/i18n/nl_BE.po index 1f134b37563..46b2861fa03 100644 --- a/addons/claim_from_delivery/i18n/nl_BE.po +++ b/addons/claim_from_delivery/i18n/nl_BE.po @@ -7,27 +7,27 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch (Belgium) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 msgid "Claims" -msgstr "" +msgstr "Klachten" #. module: claim_from_delivery #: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery msgid "Delivery Order" -msgstr "" +msgstr "Leveringsorder" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery msgid "Claim From Delivery" -msgstr "" +msgstr "Klachten van levering" diff --git a/addons/claim_from_delivery/i18n/oc.po b/addons/claim_from_delivery/i18n/oc.po index fc7245267ba..5d7ae20e64e 100644 --- a/addons/claim_from_delivery/i18n/oc.po +++ b/addons/claim_from_delivery/i18n/oc.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Occitan (post 1500) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pl.po b/addons/claim_from_delivery/i18n/pl.po index 8d3a28e7114..54cc6a92e97 100644 --- a/addons/claim_from_delivery/i18n/pl.po +++ b/addons/claim_from_delivery/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt.po b/addons/claim_from_delivery/i18n/pt.po index 6d6ded7f1bf..0859a9416ab 100644 --- a/addons/claim_from_delivery/i18n/pt.po +++ b/addons/claim_from_delivery/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-18 10:46+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-01-19 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt_BR.po b/addons/claim_from_delivery/i18n/pt_BR.po index 448fed02ca8..1ccddb392ee 100644 --- a/addons/claim_from_delivery/i18n/pt_BR.po +++ b/addons/claim_from_delivery/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ro.po b/addons/claim_from_delivery/i18n/ro.po index 067b201847e..1453fabaf47 100644 --- a/addons/claim_from_delivery/i18n/ro.po +++ b/addons/claim_from_delivery/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-23 19:36+0000\n" -"Last-Translator: Fekete Mihai \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-01-24 05:35+0000\n" -"X-Generator: Launchpad (build 16445)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ru.po b/addons/claim_from_delivery/i18n/ru.po index c6e2ac01665..a11b70da951 100644 --- a/addons/claim_from_delivery/i18n/ru.po +++ b/addons/claim_from_delivery/i18n/ru.po @@ -7,27 +7,27 @@ 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" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 msgid "Claims" -msgstr "" +msgstr "Рекламации" #. module: claim_from_delivery #: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery msgid "Delivery Order" -msgstr "" +msgstr "Заказ доставки" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery msgid "Claim From Delivery" -msgstr "" +msgstr "Рекламация по доставке" diff --git a/addons/claim_from_delivery/i18n/sl.po b/addons/claim_from_delivery/i18n/sl.po index ad7fe630e08..bfba9193f0f 100644 --- a/addons/claim_from_delivery/i18n/sl.po +++ b/addons/claim_from_delivery/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-05 17:10+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sq.po b/addons/claim_from_delivery/i18n/sq.po index 6a5c21b0e34..246c997a50b 100644 --- a/addons/claim_from_delivery/i18n/sq.po +++ b/addons/claim_from_delivery/i18n/sq.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr.po b/addons/claim_from_delivery/i18n/sr.po index 06cc060faf2..3843f13e86a 100644 --- a/addons/claim_from_delivery/i18n/sr.po +++ b/addons/claim_from_delivery/i18n/sr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr@latin.po b/addons/claim_from_delivery/i18n/sr@latin.po index 3ad50691fd9..4cde57ab98c 100644 --- a/addons/claim_from_delivery/i18n/sr@latin.po +++ b/addons/claim_from_delivery/i18n/sr@latin.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sv.po b/addons/claim_from_delivery/i18n/sv.po index e585a152d73..63c70022170 100644 --- a/addons/claim_from_delivery/i18n/sv.po +++ b/addons/claim_from_delivery/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ta.po b/addons/claim_from_delivery/i18n/ta.po index 6d55abe2254..4c057982eed 100644 --- a/addons/claim_from_delivery/i18n/ta.po +++ b/addons/claim_from_delivery/i18n/ta.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/tr.po b/addons/claim_from_delivery/i18n/tr.po index 9d3b7af1356..e29f3348bd4 100644 --- a/addons/claim_from_delivery/i18n/tr.po +++ b/addons/claim_from_delivery/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-06 08:28+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-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_CN.po b/addons/claim_from_delivery/i18n/zh_CN.po index 1243241ed08..fed1910a6be 100644 --- a/addons/claim_from_delivery/i18n/zh_CN.po +++ b/addons/claim_from_delivery/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_TW.po b/addons/claim_from_delivery/i18n/zh_TW.po index 0942057a3fd..b3535d03073 100644 --- a/addons/claim_from_delivery/i18n/zh_TW.po +++ b/addons/claim_from_delivery/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/contacts/i18n/ar.po b/addons/contacts/i18n/ar.po index 4c1b4aa34ba..e6f796be55d 100644 --- a/addons/contacts/i18n/ar.po +++ b/addons/contacts/i18n/ar.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/contacts.pot b/addons/contacts/i18n/contacts.pot index 7072b564e36..2c29eb3d50f 100644 --- a/addons/contacts/i18n/contacts.pot +++ b/addons/contacts/i18n/contacts.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 7.0alpha\n" +"Project-Id-Version: OpenERP Server 7.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-06-07 19:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" diff --git a/addons/contacts/i18n/cs.po b/addons/contacts/i18n/cs.po new file mode 100644 index 00000000000..338f6cd354e --- /dev/null +++ b/addons/contacts/i18n/cs.po @@ -0,0 +1,44 @@ +# English (United Kingdom) 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-06 03:16+0000\n" +"Last-Translator: Radomil Urbánek \n" +"Language-Team: English (United Kingdom) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

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

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

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

\n" +" Klepněte pro přidání kontaktu do vašeho adresáře.\n" +"

\n" +" Pomocí OpenERP můžete sledovat aktivity zákazníků,\n" +" diskuze, historii obchodních příležitostí, dokumentů, apod.\n" +"

\n" +" " + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Kontakty" diff --git a/addons/contacts/i18n/de.po b/addons/contacts/i18n/de.po index e0b407957f3..b84ddc89b25 100644 --- a/addons/contacts/i18n/de.po +++ b/addons/contacts/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/en_GB.po b/addons/contacts/i18n/en_GB.po index 3325d24f278..178e86282b4 100644 --- a/addons/contacts/i18n/en_GB.po +++ b/addons/contacts/i18n/en_GB.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-02-07 19:25+0000\n" "Last-Translator: mrx5682 \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-08 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es.po b/addons/contacts/i18n/es.po index 786a1e9b93f..1670ead3a67 100644 --- a/addons/contacts/i18n/es.po +++ b/addons/contacts/i18n/es.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es_CO.po b/addons/contacts/i18n/es_CO.po new file mode 100644 index 00000000000..f310a4fd9c1 --- /dev/null +++ b/addons/contacts/i18n/es_CO.po @@ -0,0 +1,46 @@ +# Spanish (Colombia) 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-21 21:43+0000\n" +"Last-Translator: Juan Erazo \n" +"Language-Team: Spanish (Colombia) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

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

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

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

\n" +" Pulse para añadir un contacto a su libreta de direcciones.\n" +"

\n" +" OpenERP le ayuda a seguir el rastro a todas las actividades " +"relativas a\n" +" un cliente: discusiones, histórico de oportunidades de negocio,\n" +" documentos, etc.\n" +"

\n" +" " + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Contactos" diff --git a/addons/contacts/i18n/et.po b/addons/contacts/i18n/et.po index 097e55009e0..b1137cc3117 100644 --- a/addons/contacts/i18n/et.po +++ b/addons/contacts/i18n/et.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/fr.po b/addons/contacts/i18n/fr.po index 6c06dfff019..03db9ad434f 100644 --- a/addons/contacts/i18n/fr.po +++ b/addons/contacts/i18n/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hr.po b/addons/contacts/i18n/hr.po index aa2211cc9fd..508b5dee9a9 100644 --- a/addons/contacts/i18n/hr.po +++ b/addons/contacts/i18n/hr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-14 09:45+0000\n" +"Last-Translator: Damir Tušek \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -29,6 +29,13 @@ msgid "" "

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

\n" +" OpenERP omogućavajednostavno praćenje svih aktivnosti vezanih " +"uz vaše partnere; rasprave i razgovori, povijest međusobnih poslova, " +"razmjenjene dokumente i slično...\n" +"

\n" +" " #. module: contacts #: model:ir.actions.act_window,name:contacts.action_contacts diff --git a/addons/contacts/i18n/hu.po b/addons/contacts/i18n/hu.po index 14d78c20138..e38e1797155 100644 --- a/addons/contacts/i18n/hu.po +++ b/addons/contacts/i18n/hu.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -29,6 +29,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új kapcsolat hozzáadásához a címjegyzékhez.\n" +"

\n" +" OpenERP segít az összes tevékenység nyomon követésében ami \n" +" összefüggésben áll a vevőkkel; megbeszélésekkel, üzleti " +"lehetőségek történetével,\n" +" dokumentumokkal stb.\n" +"

\n" +" " #. module: contacts #: model:ir.actions.act_window,name:contacts.action_contacts diff --git a/addons/contacts/i18n/it.po b/addons/contacts/i18n/it.po index 062b5ed6ce2..e9eff1420db 100644 --- a/addons/contacts/i18n/it.po +++ b/addons/contacts/i18n/it.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/lt.po b/addons/contacts/i18n/lt.po new file mode 100644 index 00000000000..7d827d00d54 --- /dev/null +++ b/addons/contacts/i18n/lt.po @@ -0,0 +1,45 @@ +# Lithuanian 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-24 18:23+0000\n" +"Last-Translator: Giedrius Slavinskas - inovera.lt \n" +"Language-Team: Lithuanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

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

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

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

\n" +"Spauskite, kad sukurtumėte kontaktą adresų knygoje.\n" +"

\n" +"OpenERP pagalba galima stebėti visus veiksmus susijusius su\n" +"kontaktu; bendravimas, pardavimų galimybių istorija,\n" +"dokumentai, ir t.t.\n" +"

\n" +" " + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Kontaktai" diff --git a/addons/contacts/i18n/mk.po b/addons/contacts/i18n/mk.po new file mode 100644 index 00000000000..84c0d11ac82 --- /dev/null +++ b/addons/contacts/i18n/mk.po @@ -0,0 +1,45 @@ +# 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. +# Sofce Dimitrijeva , 2013. +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-28 22:22+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" +"Language-Team: ESKON-INZENERING\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" +"Language: mk\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

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

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

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

\n" +"Кликни овде за да креирате контакт во вашиот адресар.\n" +"

\n" +"OpenERP помага за лесно следење на активностите поврзани со купувач; " +"дискусии, историја на бизнис можности, документи, итн.\n" +"

\n" +" " + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Контакти" diff --git a/addons/contacts/i18n/mn.po b/addons/contacts/i18n/mn.po index 8ffc76fb72f..5b62be98f8c 100644 --- a/addons/contacts/i18n/mn.po +++ b/addons/contacts/i18n/mn.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-08 07:13+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-03 05:33+0000\n" "Last-Translator: gobi \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-02-09 05:29+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -29,6 +29,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Хаягийн дэвтэртээ холбогчдийг нэмэхдээ дарна.\n" +"

\n" +" OpenERP нь захиалагчидтай холбогдох бүх ажлыг хөтлөх ажлыг \n" +" хялбараар гүйцэтгэхэд тусладаг; харилцаа, боломжийн түүх, \n" +" баримтууд, гм.\n" +"

\n" +" " #. module: contacts #: model:ir.actions.act_window,name:contacts.action_contacts diff --git a/addons/contacts/i18n/nl.po b/addons/contacts/i18n/nl.po index f84ecd000fb..1fdfcfdf3d5 100644 --- a/addons/contacts/i18n/nl.po +++ b/addons/contacts/i18n/nl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/nl_BE.po b/addons/contacts/i18n/nl_BE.po new file mode 100644 index 00000000000..69939254bce --- /dev/null +++ b/addons/contacts/i18n/nl_BE.po @@ -0,0 +1,46 @@ +# Dutch (Belgium) 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-15 16:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Dutch (Belgium) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

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

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

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

\n" +" Klik hier om een contactpersoon toe te voegen aan het " +"adresboek.\n" +"

\n" +" Met OpenERP kunt u eenvoudig alle activiteiten registreren met " +"betrekking tot \n" +" een klant, discussies, opportuniteiten, documenten, enz. \n" +"

\n" +" " + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "Contactpersonen" diff --git a/addons/contacts/i18n/pl.po b/addons/contacts/i18n/pl.po index 4e97e422b6d..e0fd9789d81 100644 --- a/addons/contacts/i18n/pl.po +++ b/addons/contacts/i18n/pl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt.po b/addons/contacts/i18n/pt.po index f8828c93fee..ab06e91af5d 100644 --- a/addons/contacts/i18n/pt.po +++ b/addons/contacts/i18n/pt.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt_BR.po b/addons/contacts/i18n/pt_BR.po index 8ea13b97cad..e3818a272bc 100644 --- a/addons/contacts/i18n/pt_BR.po +++ b/addons/contacts/i18n/pt_BR.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ro.po b/addons/contacts/i18n/ro.po index 52c4998ea72..7127ba9b3f6 100644 --- a/addons/contacts/i18n/ro.po +++ b/addons/contacts/i18n/ro.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-04-02 16:12+0000\n" +"Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -35,7 +35,7 @@ msgstr "" " \n" " OpenERP vă ajută să urmăriți cu ușurință toate activitățile " "legate de\n" -" un client, discutii, istoria oportunități de afaceri,\n" +" un client, discuții, istoria oportunități de afaceri,\n" " documente, etc.\n" " \n" " " diff --git a/addons/contacts/i18n/ru.po b/addons/contacts/i18n/ru.po index 9d6cd50ecbd..ae12e03f193 100644 --- a/addons/contacts/i18n/ru.po +++ b/addons/contacts/i18n/ru.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-26 08:57+0000\n" "Last-Translator: Denis Karataev \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-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sl.po b/addons/contacts/i18n/sl.po index 90c37aca279..5b4ef8ce672 100644 --- a/addons/contacts/i18n/sl.po +++ b/addons/contacts/i18n/sl.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-01 21:56+0000\n" "Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sv.po b/addons/contacts/i18n/sv.po index 64d985bd9ae..ad68bd59be9 100644 --- a/addons/contacts/i18n/sv.po +++ b/addons/contacts/i18n/sv.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-17 23:49+0000\n" "Last-Translator: Mikael Dúi Bolinder \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/th.po b/addons/contacts/i18n/th.po new file mode 100644 index 00000000000..27275cc9cb0 --- /dev/null +++ b/addons/contacts/i18n/th.po @@ -0,0 +1,37 @@ +# Thai 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: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-05-15 07:10+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Thai \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" + +#. module: contacts +#: model:ir.actions.act_window,help:contacts.action_contacts +msgid "" +"

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

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

\n" +" " +msgstr "" + +#. module: contacts +#: model:ir.actions.act_window,name:contacts.action_contacts +#: model:ir.ui.menu,name:contacts.menu_contacts +msgid "Contacts" +msgstr "" diff --git a/addons/contacts/i18n/tr.po b/addons/contacts/i18n/tr.po index a0f627b292b..9e6d3928ad3 100644 --- a/addons/contacts/i18n/tr.po +++ b/addons/contacts/i18n/tr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" -"PO-Revision-Date: 2013-02-06 22:16+0000\n" -"Last-Translator: Ediz Duman \n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" +"PO-Revision-Date: 2013-03-02 13:30+0000\n" +"Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -30,10 +30,10 @@ msgid "" " " msgstr "" "

\n" -" Adres defterinizden bir kontak üzerine tıklayın.\n" +" Adres defterinize bir kişi eklemek için tıklayın.\n" "

\n" -" OpenERP bir müşteriye ait bütün aktiviteleri takip etmenize\n" -" yardım eder; mesela fırsatları, dökümanları, vs.\n" +" OpenERP bir müşteriye ait bütün etkinlikleri izlemenize\n" +" yardım eder; görüşmeler, iş fırsatları geçmişi, belgeler, vb.\n" "

\n" " " @@ -41,4 +41,4 @@ msgstr "" #: model:ir.actions.act_window,name:contacts.action_contacts #: model:ir.ui.menu,name:contacts.menu_contacts msgid "Contacts" -msgstr "Kontaklar" +msgstr "Kişiler" diff --git a/addons/contacts/i18n/zh_CN.po b/addons/contacts/i18n/zh_CN.po index ac9af72c8e7..a027f590943 100644 --- a/addons/contacts/i18n/zh_CN.po +++ b/addons/contacts/i18n/zh_CN.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2012-12-21 23:00+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_TW.po b/addons/contacts/i18n/zh_TW.po index f8f5b8382b0..128b817db89 100644 --- a/addons/contacts/i18n/zh_TW.po +++ b/addons/contacts/i18n/zh_TW.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-21 17:05+0000\n" +"POT-Creation-Date: 2013-06-07 19:36+0000\n" "PO-Revision-Date: 2013-01-30 13:46+0000\n" "Last-Translator: Bluce \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-01-31 05:17+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-06-08 07:17+0000\n" +"X-Generator: Launchpad (build 16667)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/crm/__openerp__.py b/addons/crm/__openerp__.py index 0dd075d48e6..64bad21ede1 100644 --- a/addons/crm/__openerp__.py +++ b/addons/crm/__openerp__.py @@ -103,16 +103,16 @@ Dashboard for CRM will include: 'crm_action_rule_demo.xml', ], 'test': [ - 'test/process/communication_with_customer.yml', - 'test/process/lead2opportunity2win.yml', - 'test/process/lead2opportunity_assign_salesmen.yml', - 'test/process/merge_opportunity.yml', - 'test/process/cancel_lead.yml', - 'test/process/segmentation.yml', - 'test/process/phonecalls.yml', - 'test/ui/crm_demo.yml', - 'test/ui/duplicate_lead.yml', - 'test/ui/delete_lead.yml', + 'test/crm_lead_message.yml', + 'test/lead2opportunity2win.yml', + 'test/lead2opportunity_assign_salesmen.yml', + 'test/crm_lead_merge.yml', + 'test/crm_lead_cancel.yml', + 'test/segmentation.yml', + 'test/phonecalls.yml', + 'test/crm_lead_onchange.yml', + 'test/crm_lead_copy.yml', + 'test/crm_lead_unlink.yml', ], 'installable': True, 'application': True, diff --git a/addons/crm/crm_data.xml b/addons/crm/crm_data.xml index 3726c744b2e..613141b5818 100644 --- a/addons/crm/crm_data.xml +++ b/addons/crm/crm_data.xml @@ -80,8 +80,7 @@ basis for email recipients, name and to ease the definition of a further elaborated template. --> Opportunity - Send Emails - ${object.user_id.email or ''} - Opportunity ${object.name | h}) + ${object.name} ${object.partner_id.id} diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py index 294adc863b5..0cfc8cbedca 100644 --- a/addons/crm/crm_lead.py +++ b/addons/crm/crm_lead.py @@ -22,8 +22,10 @@ from openerp.addons.base_status.base_stage import base_stage import crm from datetime import datetime -from openerp.osv import fields, osv +from operator import itemgetter +from openerp.osv import fields, osv, orm import time +from openerp import SUPERUSER_ID from openerp import tools from openerp.tools.translate import _ from openerp.tools import html2plaintext @@ -75,12 +77,12 @@ class crm_lead(base_stage, format_address, osv.osv): _track = { 'state': { - 'crm.mt_lead_create': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'new', + 'crm.mt_lead_create': lambda self, cr, uid, obj, ctx=None: obj['state'] in ['new', 'draft'], 'crm.mt_lead_won': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'done', 'crm.mt_lead_lost': lambda self, cr, uid, obj, ctx=None: obj['state'] == 'cancel', }, 'stage_id': { - 'crm.mt_lead_stage': lambda self, cr, uid, obj, ctx=None: obj['state'] not in ['new', 'cancel', 'done'], + 'crm.mt_lead_stage': lambda self, cr, uid, obj, ctx=None: obj['state'] not in ['new', 'draft', 'cancel', 'done'], }, } @@ -94,7 +96,9 @@ class crm_lead(base_stage, format_address, osv.osv): if vals.get('type'): ctx['default_type'] = vals['type'] vals['stage_id'] = self._get_default_stage_id(cr, uid, context=ctx) - return super(crm_lead, self).create(cr, uid, vals, context=context) + # context: no_log, because subtype already handle this + create_context = dict(context, mail_create_nolog=True) + return super(crm_lead, self).create(cr, uid, vals, context=create_context) def _get_default_section_id(self, cr, uid, context=None): """ Gives default section by checking if present in the context """ @@ -259,7 +263,9 @@ class crm_lead(base_stage, format_address, osv.osv): 'channel_id': fields.many2one('crm.case.channel', 'Channel', help="Communication channel (mail, direct, phone, ...)"), 'contact_name': fields.char('Contact Name', size=64), 'partner_name': fields.char("Customer Name", size=64,help='The name of the future partner company that will be created while converting the lead into opportunity', select=1), - 'opt_out': fields.boolean('Opt-Out', oldname='optout', help="If opt-out is checked, this contact has refused to receive emails or unsubscribed to a campaign."), + 'opt_out': fields.boolean('Opt-Out', oldname='optout', + help="If opt-out is checked, this contact has refused to receive emails for mass mailing and marketing campaign. " + "Filter 'Available for Mass Mailing' allows users to filter the leads when performing mass mailing."), 'type':fields.selection([ ('lead','Lead'), ('opportunity','Opportunity'), ],'Type', help="Type is used to separate Leads and Opportunities"), 'priority': fields.selection(crm.AVAILABLE_PRIORITIES, 'Priority', select=True), 'date_closed': fields.datetime('Closed', readonly=True), @@ -353,6 +359,16 @@ class crm_lead(base_stage, format_address, osv.osv): } return {'value' : values} + def on_change_user(self, cr, uid, ids, user_id, context=None): + """ When changing the user, also set a section_id or restrict section id + to the ones user_id is member of. """ + section_id = False + if user_id: + section_ids = self.pool.get('crm.case.section').search(cr, uid, ['|', ('user_id', '=', user_id), ('member_ids', '=', user_id)], context=context) + if section_ids: + section_id = section_ids[0] + return {'value': {'section_id': section_id}} + def _check(self, cr, uid, ids=False, context=None): """ Override of the base.stage method. Function called by the scheduler to process cases for date actions @@ -587,27 +603,25 @@ class crm_lead(base_stage, format_address, osv.osv): return True def _merge_opportunity_attachments(self, cr, uid, opportunity_id, opportunities, context=None): - attachment = self.pool.get('ir.attachment') + attach_obj = self.pool.get('ir.attachment') # return attachments of opportunity def _get_attachments(opportunity_id): - attachment_ids = attachment.search(cr, uid, [('res_model', '=', self._name), ('res_id', '=', opportunity_id)], context=context) - return attachment.browse(cr, uid, attachment_ids, context=context) + attachment_ids = attach_obj.search(cr, uid, [('res_model', '=', self._name), ('res_id', '=', opportunity_id)], context=context) + return attach_obj.browse(cr, uid, attachment_ids, context=context) - count = 1 first_attachments = _get_attachments(opportunity_id) + #counter of all attachments to move. Used to make sure the name is different for all attachments + count = 1 for opportunity in opportunities: attachments = _get_attachments(opportunity.id) - for first in first_attachments: - for attachment in attachments: - if attachment.name == first.name: - values = dict( - name = "%s (%s)" % (attachment.name, count,), - res_id = opportunity_id, - ) - attachment.write(values) - count+=1 - + for attachment in attachments: + values = {'res_id': opportunity_id,} + for attachment_in_first in first_attachments: + if attachment.name == attachment_in_first.name: + name = "%s (%s)" % (attachment.name, count,), + count+=1 + attachment.write(values) return True def merge_opportunity(self, cr, uid, ids, context=None): @@ -628,12 +642,13 @@ class crm_lead(base_stage, format_address, osv.osv): opportunities = self.browse(cr, uid, ids, context=context) sequenced_opps = [] for opportunity in opportunities: + sequence = -1 if opportunity.stage_id and opportunity.stage_id.state != 'cancel': - sequenced_opps.append((opportunity.stage_id.sequence, opportunity)) - else: - sequenced_opps.append((-1, opportunity)) - sequenced_opps.sort(key=lambda tup: tup[0], reverse=True) - opportunities = [opportunity for sequence, opportunity in sequenced_opps] + sequence = opportunity.stage_id.sequence + sequenced_opps.append(((int(sequence != -1 and opportunity.type == 'opportunity'), sequence, -opportunity.id), opportunity)) + + sequenced_opps.sort(reverse=True) + opportunities = map(itemgetter(1), sequenced_opps) ids = [opportunity.id for opportunity in opportunities] highest = opportunities[0] opportunities_rest = opportunities[1:] @@ -652,15 +667,15 @@ class crm_lead(base_stage, format_address, osv.osv): opportunities.extend(opportunities_rest) self._merge_notify(cr, uid, highest, opportunities, context=context) # Check if the stage is in the stages of the sales team. If not, assign the stage with the lowest sequence - if merged_data.get('type') == 'opportunity' and merged_data.get('section_id'): - section_stages = self.pool.get('crm.case.section').read(cr, uid, merged_data['section_id'], ['stage_ids'], context=context) - if merged_data.get('stage_id') not in section_stages['stage_ids']: - stages_sequences = self.pool.get('crm.case.stage').search(cr, uid, [('id','in',section_stages['stage_ids'])], order='sequence', limit=1, context=context) - merged_data['stage_id'] = stages_sequences and stages_sequences[0] or False + if merged_data.get('section_id'): + section_stage_ids = self.pool.get('crm.case.stage').search(cr, uid, [('section_ids', 'in', merged_data['section_id']), ('type', '=', merged_data.get('type'))], order='sequence', context=context) + if merged_data.get('stage_id') not in section_stage_ids: + merged_data['stage_id'] = section_stage_ids and section_stage_ids[0] or False # Write merged data into first opportunity self.write(cr, uid, [highest.id], merged_data, context=context) - # Delete tail opportunities - self.unlink(cr, uid, [x.id for x in tail_opportunities], context=context) + # Delete tail opportunities + # We use the SUPERUSER to avoid access rights issues because as the user had the rights to see the records it should be safe to do so + self.unlink(cr, SUPERUSER_ID, [x.id for x in tail_opportunities], context=context) return highest.id @@ -713,7 +728,7 @@ class crm_lead(base_stage, format_address, osv.osv): 'parent_id': parent_id, 'phone': lead.phone, 'mobile': lead.mobile, - 'email': lead.email_from and tools.email_split(lead.email_from)[0], + 'email': tools.email_split(lead.email_from) and tools.email_split(lead.email_from)[0] or False, 'fax': lead.fax, 'title': lead.title and lead.title.id or False, 'function': lead.function, @@ -932,7 +947,7 @@ class crm_lead(base_stage, format_address, osv.osv): try: compose_form_id = ir_model_data.get_object_reference(cr, uid, 'mail', 'email_compose_message_wizard_form')[1] except ValueError: - compose_form_id = False + compose_form_id = False if context is None: context = {} ctx = context.copy() @@ -961,15 +976,27 @@ class crm_lead(base_stage, format_address, osv.osv): def message_get_reply_to(self, cr, uid, ids, context=None): """ Override to get the reply_to of the parent project. """ return [lead.section_id.message_get_reply_to()[0] if lead.section_id else False - for lead in self.browse(cr, uid, ids, context=context)] + for lead in self.browse(cr, SUPERUSER_ID, ids, context=context)] + + def message_get_suggested_recipients(self, cr, uid, ids, context=None): + recipients = super(crm_lead, self).message_get_suggested_recipients(cr, uid, ids, context=context) + try: + for lead in self.browse(cr, uid, ids, context=context): + if lead.partner_id: + self._message_add_suggested_recipient(cr, uid, recipients, lead, partner=lead.partner_id, reason=_('Customer')) + elif lead.email_from: + self._message_add_suggested_recipient(cr, uid, recipients, lead, email=lead.email_from, reason=_('Customer Email')) + except (osv.except_osv, orm.except_orm): # no read access rights -> just ignore suggested recipients because this imply modifying followers + pass + return recipients def message_new(self, cr, uid, msg, custom_values=None, context=None): """ Overrides mail_thread message_new that is called by the mailgateway through message_process. This override updates the document according to the email. """ - if custom_values is None: custom_values = {} - + if custom_values is None: + custom_values = {} desc = html2plaintext(msg.get('body')) if msg.get('body') else '' defaults = { 'name': msg.get('subject') or _("No Subject"), @@ -1017,9 +1044,20 @@ class crm_lead(base_stage, format_address, osv.osv): def schedule_phonecall_send_note(self, cr, uid, ids, phonecall_id, action, context=None): phonecall = self.pool.get('crm.phonecall').browse(cr, uid, [phonecall_id], context=context)[0] - if action == 'log': prefix = 'Logged' - else: prefix = 'Scheduled' - message = _("%s a call for the %s.") % (prefix, phonecall.date) + if action == 'log': + prefix = 'Logged' + else: + prefix = 'Scheduled' + suffix = ' %s' % phonecall.description + message = _("%s a call for %s.%s") % (prefix, phonecall.date, suffix) + return self.message_post(cr, uid, ids, body=message, context=context) + + def log_meeting(self, cr, uid, ids, meeting_subject, meeting_date, duration, context=None): + if not duration: + duration = _('unknown') + else: + duration = str(duration) + message = _("Meeting scheduled at '%s'
Subject: %s
Duration: %s hour(s)") % (meeting_date, meeting_subject, duration) return self.message_post(cr, uid, ids, body=message, context=context) def onchange_state(self, cr, uid, ids, state_id, context=None): diff --git a/addons/crm/crm_lead_data.xml b/addons/crm/crm_lead_data.xml index 724ec491efe..1c4fde258b9 100644 --- a/addons/crm/crm_lead_data.xml +++ b/addons/crm/crm_lead_data.xml @@ -7,68 +7,68 @@ New draft - - + + both
Opportunity open - - + + lead - - Qualification - - open - - - opportunity - - - Proposition - - open - - - opportunity - - - Negotiation - - open - - - opportunity - - - Won - - done - - - - opportunity - Dead cancel - - + + lead + + Qualification + + open + + + opportunity + + + Proposition + + open + + + opportunity + + + Negotiation + + open + + + opportunity + + + Won + + done + + + + opportunity + Lost cancel - - + + opportunity diff --git a/addons/crm/crm_lead_menu.xml b/addons/crm/crm_lead_menu.xml index 8c38ed41a1c..13bef31399b 100644 --- a/addons/crm/crm_lead_menu.xml +++ b/addons/crm/crm_lead_menu.xml @@ -9,7 +9,12 @@ ['|', ('type','=','lead'), ('type','=',False)] - {'default_type':'lead', 'stage_type':'lead'} + { + 'default_type':'lead', + 'stage_type':'lead', + 'needaction_menu_ref': 'crm.menu_crm_opportunities', + } +

Click to create an unqualified lead. diff --git a/addons/crm/crm_lead_view.xml b/addons/crm/crm_lead_view.xml index 1a013751692..be153167473 100644 --- a/addons/crm/crm_lead_view.xml +++ b/addons/crm/crm_lead_view.xml @@ -2,7 +2,6 @@ - @@ -98,19 +97,20 @@ states="draft,open,pending" help="Convert to Opportunity" class="oe_highlight"/>

- [[ get_employer_line(o, p).rate or '']] + [[ get_employer_line(o, p) and get_employer_line(o, p).rate or '']] - [[ get_employer_line(o,p).total or '' ]] + [[ get_employer_line(o,p) and get_employer_line(o,p).total or '' ]]
- Product + Product - Quantity + Quantity - Source Location + Source Location - Destination Location + Destination Location
- Source Document + Source Document - Product + Product - Quantity + Quantity
- Scheduled Date + Scheduled Date - Printing date + Printing date - Partner Ref + Partner Ref - SO Number + SO Number
- Sequence + Sequence - Name [[ o.workcenter_lines ==[] and removeParentNode('blockTable')]] + Name [[ o.workcenter_lines ==[] and removeParentNode('blockTable')]] - WorkCenter + WorkCenter - No. Of Cycles + No. Of Cycles - No. Of Hours + No. Of Hours
- Product + Product - Quantity + Quantity - Source Location + Source Location - Destination Location + Destination Location
- Description + Description - Taxes + Taxes - Date Req. + Date Req. - Qty + Qty - Unit Price + Unit Price - Net Price + Net Price
- Shipping address : + Shipping address : [[ (o.dest_address_id and o.dest_address_id.name) or (o.warehouse_id and o.warehouse_id.name) or '']] [[ (o.dest_address_id and display_address(o.dest_address_id)) or (o.warehouse_id and display_address(o.warehouse_id.partner_id)) or '']]
- Our Order Reference + Our Order Reference - Your Order Reference + Your Order Reference - Order Date + Order Date - Validated By + Validated By
- Description + Description - Taxes + Taxes - Date Req. + Date Req. - Qty + Qty - Unit Price + Unit Price - Net Price + Net Price
- Total : + Total : - [[ formatLang(o.amount_total, digits=get_digits(dp='Account') , currency_obj=o.pricelist_id.currency_id) ]] + [[ formatLang(o.amount_total, digits=get_digits(dp='Account') , currency_obj=o.pricelist_id.currency_id) ]]
- Expected Delivery address: + Expected Delivery address: [[ (order.dest_address_id and order.dest_address_id.name) or (order.warehouse_id and order.warehouse_id.name) or '']] [[ order.dest_address_id and display_address(order.dest_address_id) ]]
- Description + Description - Expected Date + Expected Date - Qty + Qty
- Description + Description - Tax + Tax - Quantity + Quantity - Unit Price + Unit Price - Disc.(%) + Disc.(%) - Price + Price
- Shipping address : + Shipping address : [[ (o.partner_shipping_id and o.partner_id.title and o.partner_shipping_id.title.name) or '' ]] [[ (o.partner_shipping_id and o.partner_shipping_id.name) or '' ]] [[ o.partner_shipping_id and display_address(o.partner_shipping_id) ]] - Invoice address : + Invoice address : [[ (o.partner_invoice_id and o.partner_invoice_id.title and o.partner_invoice_id.title.name) or '' ]] [[ (o.partner_invoice_id and o.partner_invoice_id.name) or '' ]] [[ o.partner_invoice_id and display_address(o.partner_invoice_id) ]]
- Your Reference + Your Reference - [[ o.state in ['draft','sent'] and removeParentNode('para') ]] Date Ordered - [[ o.state not in ['draft','sent'] and removeParentNode('para') ]] Quotation Date + [[ o.state in ['draft','sent'] and removeParentNode('para') ]] Date Ordered + [[ o.state not in ['draft','sent'] and removeParentNode('para') ]] Quotation Date - Salesperson + Salesperson - Payment Term + Payment Term
- Description + Description - Tax + Tax - Quantity + Quantity - Unit Price + Unit Price - Disc.(%) + [[not show_discount(user.id) and removeParentNode('para') ]]Disc.(%) - Price + Price
- [[ formatLang(line.discount, digits=get_digits(dp='Discount'))]] + [[show_discount(user.id) and formatLang(line.discount, digits=get_digits(dp='Discount')) or '']] [[ formatLang(line.price_subtotal, digits=get_digits(dp='Account'), currency_obj=o.pricelist_id.currency_id) ]] @@ -317,10 +296,10 @@ - Total : + Total : - [[ formatLang(o.amount_total, dp='Account', currency_obj=o.pricelist_id.currency_id) ]] + [[ formatLang(o.amount_total, dp='Account', currency_obj=o.pricelist_id.currency_id) ]]
- [[ move_lines.state ]] + Waiting Availability[[ move_lines.state == 'confirmed' and ' ' or removeParentNode('para') ]] + Done[[ move_lines.state == 'done' and ' ' or removeParentNode('para') ]] + Available[[ move_lines.state == 'assigned' and ' ' or removeParentNode('para') ]] [[ (move_lines.location_id and move_lines.location_id.name) or '' ]] diff --git a/addons/stock/report/product_stock.py b/addons/stock/report/product_stock.py index 9ccda54b693..e3a4c8c9435 100644 --- a/addons/stock/report/product_stock.py +++ b/addons/stock/report/product_stock.py @@ -30,6 +30,7 @@ from openerp.report.render import render import stock_graph from openerp import pooler import StringIO +import unicodedata class external_pdf(render): def __init__(self, pdf): @@ -106,7 +107,12 @@ class report_stock(report_int): io = StringIO.StringIO() gt = stock_graph.stock_graph(io) for prod_id in products: - gt.add(prod_id, names.get(prod_id, 'Unknown'), products[prod_id]) + prod_name = names.get(prod_id,'Unknown') + if isinstance(prod_name, str): + prod_name = prod_name.decode('utf-8') + prod_name = unicodedata.normalize('NFKD',prod_name) + prod_name = prod_name.encode('ascii','replace') + gt.add(prod_id, prod_name, products[prod_id]) gt.draw() gt.close() self.obj = external_pdf(io.getvalue()) diff --git a/addons/stock/report/report_stock_move.py b/addons/stock/report/report_stock_move.py index 39591021735..7956699c113 100644 --- a/addons/stock/report/report_stock_move.py +++ b/addons/stock/report/report_stock_move.py @@ -193,6 +193,7 @@ CREATE OR REPLACE view report_stock_inventory AS ( LEFT JOIN product_uom pu2 ON (m.product_uom=pu2.id) LEFT JOIN product_uom u ON (m.product_uom=u.id) LEFT JOIN stock_location l ON (m.location_id=l.id) + WHERE m.state != 'cancel' GROUP BY m.id, m.product_id, m.product_uom, pt.categ_id, m.partner_id, m.location_id, m.location_dest_id, m.prodlot_id, m.date, m.state, l.usage, l.scrap_location, m.company_id, pt.uom_id, to_char(m.date, 'YYYY'), to_char(m.date, 'MM') @@ -216,6 +217,7 @@ CREATE OR REPLACE view report_stock_inventory AS ( LEFT JOIN product_uom pu2 ON (m.product_uom=pu2.id) LEFT JOIN product_uom u ON (m.product_uom=u.id) LEFT JOIN stock_location l ON (m.location_dest_id=l.id) + WHERE m.state != 'cancel' GROUP BY m.id, m.product_id, m.product_uom, pt.categ_id, m.partner_id, m.location_id, m.location_dest_id, m.prodlot_id, m.date, m.state, l.usage, l.scrap_location, m.company_id, pt.uom_id, to_char(m.date, 'YYYY'), to_char(m.date, 'MM') diff --git a/addons/stock/report/report_stock_move_view.xml b/addons/stock/report/report_stock_move_view.xml index 4f3e256389c..fcf99f6e51e 100644 --- a/addons/stock/report/report_stock_move_view.xml +++ b/addons/stock/report/report_stock_move_view.xml @@ -149,7 +149,7 @@ - + diff --git a/addons/stock/stock.py b/addons/stock/stock.py index 7198c89e286..8b564a5e024 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -19,7 +19,6 @@ # ############################################################################## -from lxml import etree from datetime import datetime from dateutil.relativedelta import relativedelta import time @@ -30,7 +29,7 @@ from openerp.osv import fields, osv from openerp.tools.translate import _ from openerp import netsvc from openerp import tools -from openerp.tools import float_compare +from openerp.tools import float_compare, DEFAULT_SERVER_DATETIME_FORMAT import openerp.addons.decimal_precision as dp import logging _logger = logging.getLogger(__name__) @@ -548,6 +547,7 @@ class stock_picking(osv.osv): _name = "stock.picking" _inherit = ['mail.thread'] _description = "Picking List" + _order = "id desc" def _set_maximum_date(self, cr, uid, ids, name, value, arg, context=None): """ Calculates planned date if it is greater than 'value'. @@ -652,7 +652,7 @@ class stock_picking(osv.osv): ), 'min_date': fields.function(get_min_max_date, fnct_inv=_set_minimum_date, multi="min_max_date", store=True, type='datetime', string='Scheduled Time', select=1, help="Scheduled time for the shipment to be processed"), - 'date': fields.datetime('Time', help="Creation time, usually the time of the order.", select=True, states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}), + 'date': fields.datetime('Creation Date', help="Creation date, usually the time of the order.", select=True, states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}), 'date_done': fields.datetime('Date of Transfer', help="Date of Completion", states={'done':[('readonly', True)], 'cancel':[('readonly',True)]}), 'max_date': fields.function(get_min_max_date, fnct_inv=_set_maximum_date, multi="min_max_date", store=True, type='datetime', string='Max. Expected Date', select=2), @@ -704,29 +704,29 @@ class stock_picking(osv.osv): default = {} default = default.copy() picking_obj = self.browse(cr, uid, id, context=context) - move_obj=self.pool.get('stock.move') - if ('name' not in default) or (picking_obj.name=='/'): - seq_obj_name = 'stock.picking.' + picking_obj.type + move_obj = self.pool.get('stock.move') + if ('name' not in default) or (picking_obj.name == '/'): + seq_obj_name = 'stock.picking.' + picking_obj.type default['name'] = self.pool.get('ir.sequence').get(cr, uid, seq_obj_name) default['origin'] = '' default['backorder_id'] = False if 'invoice_state' not in default and picking_obj.invoice_state == 'invoiced': default['invoice_state'] = '2binvoiced' - res=super(stock_picking, self).copy(cr, uid, id, default, context) + res = super(stock_picking, self).copy(cr, uid, id, default, context) if res: picking_obj = self.browse(cr, uid, res, context=context) for move in picking_obj.move_lines: - move_obj.write(cr, uid, [move.id], {'tracking_id': False,'prodlot_id':False, 'move_history_ids2': [(6, 0, [])], 'move_history_ids': [(6, 0, [])]}) + move_obj.write(cr, uid, [move.id], {'tracking_id': False, 'prodlot_id': False, 'move_history_ids2': [(6, 0, [])], 'move_history_ids': [(6, 0, [])]}) return res - + def fields_view_get(self, cr, uid, view_id=None, view_type=False, context=None, toolbar=False, submenu=False): if view_type == 'form' and not view_id: mod_obj = self.pool.get('ir.model.data') if self._name == "stock.picking.in": - model,view_id = mod_obj.get_object_reference(cr, uid, 'stock', 'view_picking_in_form') + model, view_id = mod_obj.get_object_reference(cr, uid, 'stock', 'view_picking_in_form') if self._name == "stock.picking.out": - model,view_id = mod_obj.get_object_reference(cr, uid, 'stock', 'view_picking_out_form') - return super(stock_picking,self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=submenu) + model, view_id = mod_obj.get_object_reference(cr, uid, 'stock', 'view_picking_out_form') + return super(stock_picking, self).fields_view_get(cr, uid, view_id=view_id, view_type=view_type, context=context, toolbar=toolbar, submenu=submenu) def onchange_partner_in(self, cr, uid, ids, partner_id=None, context=None): return {} @@ -1117,7 +1117,7 @@ class stock_picking(osv.osv): if isinstance(partner, int): partner = partner_obj.browse(cr, uid, [partner], context=context)[0] if not partner: - raise osv.except_osv(_('Error, no partner !'), + raise osv.except_osv(_('Error, no partner!'), _('Please put a partner on the picking list if you want to generate invoice.')) if not inv_type: @@ -1646,7 +1646,7 @@ class stock_move(osv.osv): "* Waiting Availability: This state is reached when the procurement resolution is not straight forward. It may need the scheduler to run, a component to me manufactured...\n"\ "* Available: When products are reserved, it is set to \'Available\'.\n"\ "* Done: When the shipment is processed, the state is \'Done\'."), - 'price_unit': fields.float('Unit Price', digits_compute= dp.get_precision('Account'), help="Technical field used to record the product cost set by the user during a picking confirmation (when average price costing method is used)"), + 'price_unit': fields.float('Unit Price', digits_compute= dp.get_precision('Product Price'), help="Technical field used to record the product cost set by the user during a picking confirmation (when average price costing method is used)"), 'price_currency_id': fields.many2one('res.currency', 'Currency for average price', help="Technical field used to record the currency chosen by the user during a picking confirmation (when average price costing method is used)"), 'company_id': fields.many2one('res.company', 'Company', required=True, select=True), 'backorder_id': fields.related('picking_id','backorder_id',type='many2one', relation="stock.picking", string="Back Order of", select=True), @@ -1773,7 +1773,7 @@ class stock_move(osv.osv): for move in self.browse(cr, uid, ids, context=context): if move.state == 'done': if frozen_fields.intersection(vals): - raise osv.except_osv(_('Operation forbidden !'), + raise osv.except_osv(_('Operation Forbidden!'), _('Quantities, Units of Measure, Products and Locations cannot be modified on stock moves that have already been processed (except by the Administrator).')) return super(stock_move, self).write(cr, uid, ids, vals, context=context) @@ -2201,7 +2201,7 @@ class stock_move(osv.osv): if move.picking_id: pickings.add(move.picking_id.id) if move.move_dest_id and move.move_dest_id.state == 'waiting': - self.write(cr, uid, [move.move_dest_id.id], {'state': 'assigned'}) + self.write(cr, uid, [move.move_dest_id.id], {'state': 'confirmed'}) if context.get('call_unlink',False) and move.move_dest_id.picking_id: wf_service = netsvc.LocalService("workflow") wf_service.trg_write(uid, 'stock.picking', move.move_dest_id.picking_id.id, cr) @@ -2335,7 +2335,6 @@ class stock_move(osv.osv): 'line_id': move_lines, 'ref': move.picking_id and move.picking_id.name}) - def action_done(self, cr, uid, ids, context=None): """ Makes the move done and if all moves are done, it will finish the picking. @return: @@ -2381,7 +2380,7 @@ class stock_move(osv.osv): if todo: self.action_confirm(cr, uid, todo, context=context) - self.write(cr, uid, move_ids, {'state': 'done', 'date': time.strftime('%Y-%m-%d %H:%M:%S')}, context=context) + self.write(cr, uid, move_ids, {'state': 'done', 'date': time.strftime(DEFAULT_SERVER_DATETIME_FORMAT)}, context=context) for id in move_ids: wf_service.trg_trigger(uid, 'stock.move', id, cr) @@ -2396,7 +2395,7 @@ class stock_move(osv.osv): processing of the given stock move. """ # prepare default values considering that the destination accounts have the reference_currency_id as their main currency - partner_id = (move.picking_id.partner_id and move.picking_id.partner_id.id and move.picking_id.partner_id.id) or False + partner_id = (move.picking_id.partner_id and self.pool.get('res.partner')._find_accounting_partner(move.picking_id.partner_id).id) or False debit_line_vals = { 'name': move.name, 'product_id': move.product_id and move.product_id.id or False, @@ -2431,7 +2430,7 @@ class stock_move(osv.osv): # fix credit line: credit_line_vals['credit'] = cur_obj.compute(cr, uid, reference_currency_id, src_main_currency_id, reference_amount, context=context) if (not src_acct.currency_id) or src_acct.currency_id.id == reference_currency_id: - credit_line_vals.update(currency_id=reference_currency_id, amount_currency=reference_amount) + credit_line_vals.update(currency_id=reference_currency_id, amount_currency=-reference_amount) if reference_currency_id != dest_main_currency_id: # fix debit line: debit_line_vals['debit'] = cur_obj.compute(cr, uid, reference_currency_id, dest_main_currency_id, reference_amount, context=context) @@ -2445,9 +2444,8 @@ class stock_move(osv.osv): context = {} ctx = context.copy() for move in self.browse(cr, uid, ids, context=context): - if move.state != 'draft' and not ctx.get('call_unlink',False): - raise osv.except_osv(_('User Error!'), - _('You can only delete draft moves.')) + if move.state != 'draft' and not ctx.get('call_unlink', False): + raise osv.except_osv(_('User Error!'), _('You can only delete draft moves.')) return super(stock_move, self).unlink( cr, uid, ids, context=ctx) @@ -2475,13 +2473,20 @@ class stock_move(osv.osv): raise osv.except_osv(_('Warning!'), _('Please provide a positive quantity to scrap.')) res = [] for move in self.browse(cr, uid, ids, context=context): + source_location = move.location_id + if move.state == 'done': + source_location = move.location_dest_id + if source_location.usage != 'internal': + #restrict to scrap from a virtual location because it's meaningless and it may introduce errors in stock ('creating' new products from nowhere) + raise osv.except_osv(_('Error!'), _('Forbidden operation: it is not allowed to scrap products from a virtual location.')) move_qty = move.product_qty uos_qty = quantity / move_qty * move.product_uos_qty default_val = { + 'location_id': source_location.id, 'product_qty': quantity, 'product_uos_qty': uos_qty, 'state': move.state, - 'scrapped' : True, + 'scrapped': True, 'location_dest_id': location_id, 'tracking_id': move.tracking_id.id, 'prodlot_id': move.prodlot_id.id, @@ -2945,6 +2950,12 @@ class stock_picking_in(osv.osv): _table = "stock_picking" _description = "Incoming Shipments" + def search(self, cr, user, args, offset=0, limit=None, order=None, context=None, count=False): + return self.pool.get('stock.picking').search(cr, user, args, offset, limit, order, context, count) + + def read(self, cr, uid, ids, fields=None, context=None, load='_classic_read'): + return self.pool.get('stock.picking').read(cr, uid, ids, fields=fields, context=context, load=load) + def check_access_rights(self, cr, uid, operation, raise_exception=True): #override in order to redirect the check of acces rights on the stock.picking object return self.pool.get('stock.picking').check_access_rights(cr, uid, operation, raise_exception=raise_exception) @@ -2990,6 +3001,12 @@ class stock_picking_out(osv.osv): _table = "stock_picking" _description = "Delivery Orders" + def search(self, cr, user, args, offset=0, limit=None, order=None, context=None, count=False): + return self.pool.get('stock.picking').search(cr, user, args, offset, limit, order, context, count) + + def read(self, cr, uid, ids, fields=None, context=None, load='_classic_read'): + return self.pool.get('stock.picking').read(cr, uid, ids, fields=fields, context=context, load=load) + def check_access_rights(self, cr, uid, operation, raise_exception=True): #override in order to redirect the check of acces rights on the stock.picking object return self.pool.get('stock.picking').check_access_rights(cr, uid, operation, raise_exception=raise_exception) diff --git a/addons/stock/stock_view.xml b/addons/stock/stock_view.xml index a559aad9aac..3c3967e2e2e 100644 --- a/addons/stock/stock_view.xml +++ b/addons/stock/stock_view.xml @@ -448,7 +448,7 @@ stock.move move_history_ids - + @@ -471,7 +471,7 @@ stock.move move_history_ids2 - + @@ -754,7 +754,7 @@